/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
  z-index: -3;

  opacity: 0;
  transform: scale(1.1);
  /* filter: blur(10px); */
  animation: videoZoomIn 2.5s ease-out forwards;
}

/* Fade-in + Zoom-in video */
@keyframes videoZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

/* Sparkles Layer */
/* canvas#sparkles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
} */

/* ===== HERO CONTENT ===== */
.hero-content h1 {
  font-size: 3.9rem;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  border-right: 3px solid #fff;
  overflow: hidden;
  animation: typing 4.5s steps(30) 1s forwards, blink 0.8s step-end infinite alternate;
}

.hero-content p {
  font-size: 1.5rem;
  opacity: 0;
  margin-top: 2px;
  animation: fadeIn 2s ease 4.5s forwards;
}

/* Text animations */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.unmute-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;     /* left side */
  background: none; 
  color:#adacacf8;   /* white text for visibility on video */
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  transition: 0.3s ease;
}

.unmute-btn i {
  font-size: 20px;
}

.unmute-btn:hover {
  opacity: 0.7;   /* subtle hover effect */
}

.unmute-btn.hide {
  opacity: 0;
  pointer-events: none;
}



/* ============================
   MOBILE — SMALL VIDEO HEIGHT
   LIKE YOUTUBE
   ============================ */
@media (max-width: 768px) {
  .hero {
    height: 45vh;  /* small like YT video */
  }

  .hero-video-wrapper {
    height: 45vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}




/* ===== ABOUT SECTION ===== */
  body {
    margin: 0;
    font-family: "Raleway", sans-serif;
     font-optical-sizing: auto; 
    background: #ffffff;
    color: #000;
  }

  .about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    background: #fff;
    overflow: hidden;
    flex-wrap: wrap;
  }

  .about-text {
    flex: 1;
    padding-right: 40px;
    padding-left: 160px; /* align under W */
    animation: fadeInLeft 1.5s ease-out;
  }

  .about-text h1 {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color:#7b8b5e;

  }

  .about-text p {
    font-size: 22px;
    color: #000;
    line-height: 1.7;
    font-weight: 500;
  }

  .about-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }

  .about-images img:first-child {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1.3s ease-out forwards, floatUp 6s ease-in-out infinite;
  }

  .about-images img:last-child {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    bottom: -80px;
    left: 2px;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 1.6s ease-out forwards, floatDown 7s ease-in-out infinite;
    animation-delay: 0.3s;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }

  /* ===== RESPONSIVE STYLES ===== */

  @media (max-width: 1200px) {
    .about-text {
      padding-left: 100px;
    }
    .about-text h1 {
      font-size: 40px;
    }
  }

  @media (max-width: 992px) {
    .about-section {
      flex-direction: column;
      text-align: center;
      padding: 80px 6%;
    }

    .about-text {
      padding: 0;
      margin-bottom: 40px;
    }

    .about-text h1 {
      font-size: 38px;
    }

    .about-text p {
      font-size: 18px;
      line-height: 1.6;
    }

    .about-images img:first-child {
      width: 280px;
      height: 280px;
    }

    .about-images img:last-child {
      width: 160px;
      height: 160px;
      bottom: -50px;
      left: calc(50% - 80px);
    }
  }

  @media (max-width: 576px) {
    .about-section {
      padding: 60px 5%;
    }

    .about-text h1 {
      font-size: 30px;
      line-height: 1.3;
    }

    .about-text p {
      font-size: 16px;
    }

    .about-images img:first-child {
      width: 220px;
      height: 220px;
    }

    .about-images img:last-child {
      width: 120px;
      height: 120px;
      bottom: -40px;
      left: calc(50% - 60px);
    }
  }

.about-images img {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease-out; /* Slow animation */
}

.about-images img.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* CARD WRAPPER */
.spotlight-box {
  position: relative;
  overflow: hidden;
  height: 380px;
  border-radius: 10px;
  background: #becf9e;
}

/* IMAGE */
.hvrbox-layer_bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

/* ZOOM EFFECT */
.hvrbox:hover .hvrbox-layer_bottom {
  transform: scale(1.15);
}

/* HIDDEN LAYER */
.hvrbox-layer_top {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  padding: 25px;
  color: #fff;
  transition: top .45s ease;
  text-align: left;
}

/* SLIDE UP ON HOVER */
.hvrbox:hover .hvrbox-layer_top {
  top: 0;
}

/* TITLE */
.spot-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.spot-text {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* SWEEP BUTTON */
.hvr-sweep-to-right {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #000;
  z-index: 1;
  transition: color .3s ease;
}

.hvr-sweep-to-right::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #7b8b5e;  /* green tone */
  z-index: -1;
  transition: left .35s ease;
}

.hvr-sweep-to-right:hover {
  color: #fff;
}

.hvr-sweep-to-right:hover::before {
  left: 0;
}

/* ===== SPOTLIGHT CARD ===== */
/* .spotlight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 25px;
  padding: 20px 15px;
  height: 360px;
  width: 100%;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.spotlight-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.text-content {
  max-width: 70%;
}

.spotlight-card h5 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.spotlight-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 210px;
  width: auto;
  transition: transform 0.4s ease;
}

.spotlight-card:hover .product-img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .text-content { max-width: 90%; }
  .product-img { position: relative; height: 300px; margin-top: 15px; }
  .spotlight-card { text-align: center; align-items: center; height: auto; }
} */
/* ===== ABOUT HERO SECTION ===== */

/* Background Image */
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay for Readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Container (Text Alignment) */
.about-hero-section .container {
  position: relative;
  z-index: 2;
  padding: 90px 8%;
  margin-left: 170px; /* ✅ shifts entire text block under “W” of logo */
}

/* Text Animations */
.about-hero-section h1,
.about-hero-section h6,
.about-hero-section p {
  animation: fadeUp 1.5s ease-out forwards;
}

/* Button Hover */
.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
}

/* ===== Animation Keyframes ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .about-hero-section {
    text-align: center;
    justify-content: center;
  }

  .about-hero-section .container {
    padding: 80px 5%;
    margin-left: 0; /* center on mobile */
    max-width: 100%;
  }

  .about-hero-section h1 {
    font-size: 2.2rem;
  }

  .about-hero-section p {
    font-size: 1rem;
  }
}
.btn-modern {
  padding: 12px 40px;
  border-radius: 50px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6e804d
 ,#7b8b5e);
  transform: translateX(-100%);
  transition: 0.5s;
  z-index: -1;
}

.btn-modern:hover::before {
  transform: translateX(0);
}

.btn-modern:hover {
  color: #000;
}
/* SECTION */
.why-choose-us {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  height: 1100px;
}

/* BACKGROUND IMAGE */
.why-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1);
  transition: transform 1.2s ease, filter 0.8s ease;
  filter: brightness(0.65);
}

/* BACKGROUND HOVER ANIMATION */
.why-choose-us:hover .why-bg-img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

/* CONTENT LAYER */
.content-layer {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* HEADINGS */
.subtitle {
  font-size: 3.9rem;
  font-weight: 500;
}

.title-light {
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* FEATURE CARD */
.feature-box {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  color: #8da859;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  margin-top: 5rem;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(184,115,51,0.4);
}

.feature-box i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .subtitle {
    font-size: 2.4rem;
  }

  .title-light {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .subtitle {
    font-size: 2rem;
  }

  .title-light {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }

  /* Reduce hover effect for mobile */
  .why-choose-us:hover .why-bg-img {
    transform: scale(1.03);
  }
}

@media (max-width: 576px) {
  .subtitle {
    font-size: 1.8rem;
  }

  .title-light {
    font-size: 1.1rem;
  }

  .feature-box {
    padding: 1.5rem;
  }

  .feature-box i {
    font-size: 2.5rem;
  }
}

/* Custom round cursor */
.custom-cursor {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
}



/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.whatsapp-float i {
  font-size: 22px;
  margin-right: 8px;
}

.whatsapp-float:hover {
  background: #88ffb5;
  transform: translateY(-4px);
}

/* content hide */
@media (max-width: 768px) {
  .hero-content {
    display: none;
  }
}
/* why choose us  */
/* ========================= */
/* 📱 MOBILE FIXES – NO CLASH */
/* ========================= */

@media (max-width: 992px) {
  .why-choose-us {
    height: auto;           /* remove fixed height */
    min-height: 100vh;      /* keep section tall enough */
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 50px 0;
  }

  .features-grid {
    gap: 1.5rem;
  }

  .feature-box {
    margin-top: 2rem;       /* reduce huge spacing */
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .why-choose-us {
    padding: 40px 0;
  }

  .feature-box {
    margin-top: 1.5rem;
    border-radius: 16px;
  }

  .feature-box h4 {
    font-size: 1.1rem;
  }

  .feature-box p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
/* why choose us img */
/* ========================= */
/* 📱 MOBILE BG IMAGE FIX */
/* ========================= */

@media (max-width: 768px) {

  .why-bg-img {
    object-fit: cover;        /* ensures full image coverage */
    object-position: center;  /* keeps image centered */
    filter: brightness(0.85); /* make image more visible */
    transform: scale(1);      /* remove excessive zoom */
  }

  .why-choose-us {
    height: auto;
    min-height: 100vh;        /* ensures bg is visible */
  }
}

@media (max-width: 576px) {

  .why-bg-img {
    filter: brightness(0.9);  /* extra clarity for small phones */
  }
}
/* ========================= */
/* 📱 SUBTITLE RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .subtitle {
    font-size: 3.9rem;
  }
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .subtitle {
    font-size: 3rem;
    line-height: 1.3;
  }
}

@media (max-width: 400px) {
  .subtitle {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .subtitle {
    margin-bottom: 12px;
  }
}

/* about */
/* ===== ABOUT HERO RESPONSIVE HEADING ===== */

.about-hero-section h1 {
  font-size: 3rem;
  line-height: 1.2;
}

/* Tablets */
@media (max-width: 992px) {
  .about-hero-section h1 {
    font-size: 1.8rem;
    line-height: 1.25;
  }
}

/* Mobile */
/* Mobile */
@media (max-width: 576px) {
  .about-hero-section h6 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .about-hero-section h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700; /* reduced from fw-bold */
  }

  .about-hero-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}