/* Fonts */

h1,h2,h3,h4,h5,h6 {
  font-family:'Montserrat',sans-serif;
}
p,span,li {
  font-family: 'Montserrat',sans-serif;
}
.font-label {
  font-size:clamp(0.875rem, 1vw, 1.25rem);
}
.text-h2{
  font-size:clamp(2rem, 2vw, 5rem);
  font-weight: 700;
  max-width: 500px;
}
@media (max-width: 768px) {
    .text-h2{
        font-size: 1.2rem;
        line-height: 1.15;
        max-width: 100%;
    }
}
.font-body-md{
  font-size:clamp(1rem, 1.3vw, 3rem);
}
.title,.rating-title{
  align-items: center;
  font-size:clamp(2rem, 2vw, 5rem);
  font-weight: 600;
}
/* ================= BASE ================= */
body {
  background-color: #f7f7ff;
}
/* Section reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #00a651;
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 9999;
}
.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .desktop-menu {
    position: absolute;
    left: 30%;
    transform: none;
  }
}

.nav-link {
  position: relative;
  font-family: 'Montserrat',sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: white !important;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover {
  opacity: 1;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
button:focus,
button:focus-visible,
a:focus,
a:focus-visible {
  outline: none;
  box-shadow: none;
}
/* ================= HERO ================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  object-fit: cover;
  transition: opacity 1.2s ease, transform 6s ease;
  transform: scale(1.08);
  will-change: transform, opacity;
}
@keyframes streakMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.hero-subtitle{
    font-size: clamp(.875rem,2vw,1.25rem);
    letter-spacing:.3em;
    color:rgba(255,255,255,.9);
    text-shadow:0 4px 10px rgba(0,0,0,.5);
    font-weight:800;
}

@keyframes cinematicHero {
  0% {
    transform: scale(1.1) translate(0, 0);
    filter: blur(15px);
  }
  20% {
    filter: blur(0px);
  }
  100% {
    transform: scale(1) translate(-2%, 1%);
    filter: blur(0px);
  }
}

.mobile-break {
  display: inline;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;   /* 🔥 forces new line on mobile */
    margin-top: 4px;
  }
  .section-col{
        padding:0;
  }
}
.hero-text-container.animate-out .hero-title{
    animation:titleExit 1.2s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-text-container.animate-out .hero-subtitle{
    animation:subtitleExit 1.2s cubic-bezier(.16,1,.3,1) .15s forwards;
}

@keyframes titleExit{
    0%{
        opacity:1;
        transform:translateY(0) scale(1);
        filter:blur(0);
    }
    100%{
        opacity:0;
        transform:translateY(-80px) scale(.95);
        filter:blur(10px);
    }
}
@keyframes subtitleExit{
    0%{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
    }
    100%{
        opacity:0;
        transform:translateY(-50px);
        filter:blur(6px);
    }
}
/* scroll to below */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  opacity: 0;
  mix-blend-mode: difference;
  animation: fadeInScroll 1.5s ease 1.5s forwards;
}
.scroll-text {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.9;
}
/* Mouse shape */
.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  position: relative;
}
/* Moving dot */
.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

/* Animations */
@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}
@keyframes fadeInScroll {
  to {
    opacity: 1;
  }
}
/* section gap */
.text-gap {
  height: 80px;
  background-color: white;
}
/* //About Us and Yacht */
.section {
  padding: 80px 0;
  background: #ffffff;
}
.section-reverse {
  padding: 80px 0;
  background: #fafafa;
}
.container{
    width:100%;
    padding-inline:3rem;
    box-sizing:border-box;
}
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;   /* small controlled spacing */
}
.section-col,
.section-image {
  flex: 1;       /* both take equal space */
}
@media (max-width: 768px) {
  .container{
        padding-inline:1rem;
  }
  .section-row {
    flex-direction: column;
    gap: 20px;
  }
  /* ensure image comes first */
  .section-image {
    order: -1;
    padding: 0;
  }
  .navbar{
    padding-left: 2px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  .section-row {
    flex-direction: row;
  }
  .section-reverse .section-row {
    flex-direction: row-reverse;
  }
  .section-image {
    height: auto;
  }
}
.section-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-image:hover .section-img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
/* Products featured */
.products-carousel {
  padding: 80px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title {
  margin-bottom: 50px;
  letter-spacing: 1px;
}
.carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
}
.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}
.product-card {
  min-width: 320px;
  height: 380px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to top,
  rgba(0, 166, 81, 0.85) 0%,
  rgba(0, 166, 81, 0.55) 35%,
  rgba(0, 166, 81, 0.20) 70%,
  transparent 100%
);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}
.product-card:hover::before {
  opacity: 1;
}
.product-img-wrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 0;
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover img {
  transform: scale(1.15) translateY(-10px);
}
.product-info {
  padding: 20px;
  text-align: center;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
  bottom: 0;
  width: 100%;
}
.product-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  transition: color 0.3s ease;
  margin-bottom: 10px;
}
.product-card:hover .product-info {
  transform: translateY(-60px);
}
.product-card:hover .product-name {
  color: #fff;
}
.card-btn-wrap {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  z-index: 2;
}
.product-card:hover .card-btn-wrap {
  opacity: 1;
  transform: translateY(0);
}
.card-btn {
  background: #fff;
  color: #00a651;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card-btn:hover {
  transform: scale(1.05);
}
.dots-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
}
/* dots */
.dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}
.dot.active {
  background: #00a651;
}
/* arrows inside dots */
.dot-nav {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: #00a651;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.dot-nav:hover {
  transform: scale(1.1);
}
/* ================= MARQUEE ================= */
.marquee-section {
  padding: 80px 0;
  background: #f8f8f8;
  text-align: center;
}
.title {
  margin-bottom: 30px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
}
.rating-title {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
}
/* Container */
.marquee-container,
.testimonials-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.testimonials-container {
  margin-top: 20px;
}
/* Track (ONLY this moves) */
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: scroll 30s linear infinite;
}
/* Pause on hover */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
/* Animation */
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
/* 1. The Outer Box */
.brand-card {
  width: 240px;
  height: 180px;
  background: #ffffff;
  transform-origin: center center;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}
/* Float Animation */
@keyframes pulseBrand {
  0% {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  100% {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 166, 81, 0.1);
  }
}

.brand-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  margin: auto;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
/* ================= TESTIMONIAL ================= */
.rating-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-top: 5px;
  margin-bottom: 5px;
}
.stars {
  color: #fbbc04;
  /* Google yellow */
  font-size: 16px;
  letter-spacing: 2px;
}
.rating-text {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}
.testimonial-card {
  width: 400px;
  padding: 2rem;
  background: white;
  border-radius: 1.5rem;
  border: 1px solid #f4f4f5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.3s ease;
}
/* section-contact */
.info-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.info-section {
  background-color: #F0ede5;
  color: #000;
  padding: 80px 60px;
}
/* Column */
.info-col {
  display: flex;
  flex-direction: column;
}
/* Text */
.info-text {
  color: #000;
  line-height: 1.7;
  margin-bottom: 25px;
}
/* Section Titles */
.info-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
/* Lists */
.info-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-col ul li {
  margin: 12px 0;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Glow + movement hover */
.info-col ul li:hover {
  color: #00a651;
}
/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-item:last-child {
  border-bottom: none;
}
.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #000;
}
.contact-item strong {
  font-size: 16px;
  color: #000;
}
/* Social icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
/* Green icon base */
.icon {
  background-color: #00a651;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Glow hover for icons */
.icon:hover {
  transform: scale(1.15);
}
/* Responsive */
@media (max-width: 992px) {
  .info-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .info-container {
    grid-template-columns: 1fr;
  }
}
.bottom-logo{
    display: block;
    width: 180px;      /* adjust as needed */
}
/* ================= BUTTON ================= */
.button-group {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.btn-learnmore{
  background-color: transparent;
  color: #00a651;
  padding: 8px 15px;
  border: 2px solid #00a651;
  border-radius: 5px;
  cursor: pointer;
}
.btn-learnmore:hover{
  background-color: #00a651;
  color: white;
}
/* footer */
.simple-footer {
  background-color: #00a651;
  color: #ffffff;
  text-align: center;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 450;
  letter-spacing: 0.5px;
}

/* Responsive Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
/* Standardized Language Toggle Switch */
.lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 104px;
  height: 32px;
  background: #ffffff;
  border: 1.5px solid #00a651;
  border-radius: 9999px;
  padding: 2px;
  box-sizing: border-box;
  direction: ltr !important;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 166, 81, 0.12);
}

.lang-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 48px;
  height: 25px;
  background: linear-gradient(135deg, #00b85c, #008f45);
  border-radius: 9999px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.lang-toggle.lang-en .lang-slider {
  transform: translateX(0);
}

.lang-toggle.lang-ar .lang-slider {
  transform: translateX(48px);
}

.lang-btn {
  position: relative;
  width: 48px;
  height: 25px;
  border: none;
  background: transparent;
  color: #00a651;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  border-radius: 9999px;
}

.lang-btn.active {
  color: #ffffff;
}

.lang-btn:hover:not(.active) {
  background-color: #f0fbf5;
  color: #008f45;
  opacity: 1;
}

.lang-btn:focus, .lang-btn:focus-visible {
  outline: none;
  box-shadow: none;
}