style 
body{
  font-family:'Poppins',sans-serif;
  background:#f6fbf7;
  padding-top: 90px; /* ✅ FIXED NAVBAR HEIGHT */
}

.intro-info{
  max-width: 540px;
  margin-top: 20px;   /* ✅ PUSH TEXT DOWN SLIGHTLY */
}


/* Brand Text Styling */
.brand-text-wrapper{
  line-height: 1;
  text-align: center;
}

.brand-main{
  font-family: 'Kaushan Script', cursive;
  font-size: 34px;
  color: #1b5e20;
}

.brand-sub{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #2e7d32;
  margin-top: 12px;
}

/* Logo size */
.navbar-brand img{
  height: 50px;
}


.navbar{
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.navbar-brand img{
  height:50px;
}

.card{
  border:none;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.gallery img{
  border-radius:16px;
}

/* ==========================
   MOBILE HEADER SIZE FIX
========================== */
@media (max-width: 768px){

  /* Reduce navbar height */
  .navbar{
    padding-top: 8px;
    padding-bottom: 8px;
  }

  /* Logo image smaller */
  .navbar-brand img{
    height: 50px;      /* adjust if needed (32–40px ideal) */
    width: auto;
  }

  /* Brand text smaller */
  .brand-text-wrapper .brand-main{
    font-size: 25px;
    line-height: 1;
  }

  .brand-text-wrapper .brand-sub{
    font-size: 10px;
    letter-spacing: 1px;
  }

  /* Reduce space between logo + text */
  .navbar-brand{
    gap: 8px;
  }

  /* Hamburger button smaller */
  .navbar-toggler{
    padding: 4px 8px;
  }
}


/* ==========================
   HERO SECTION
========================== */

.hero-section{
  position: relative;
  padding: 160px 0 120px;
  background:
    linear-gradient(
      180deg,
      #1b5e20 100%,
      #2e7d32 35%,
      #66bb6a 75%,
      #e8f5e9 100%
    );
  overflow: hidden;
}

/* soft wave highlight (top) */
.hero-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      140% 70% at 50% 0%,
      rgba(255,255,255,0.25) 0%,
      rgba(255,255,255,0) 70%
    );
  pointer-events: none;
}

/* Paper grain texture */
.hero-section::marker{
  display: none;
}

.hero-section::selection{
  background: transparent;
}

.hero-section{
  background-blend-mode: overlay;
}

.hero-section::after,
.hero-section::before{
  z-index: 0;
}

.hero-section .hero-container{
  z-index: 2;
}


.hero-grain{
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.03),
      rgba(0,0,0,0.03) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.75;
  pointer-events: none;
}


/* curved bottom like original site */
.hero-section::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 140px;
  background:
    radial-gradient(
      120% 100% at 50% 100%,
      #ffffff 60%,
      transparent 61%
    );
}

/* Animated wave overlay */
.hero-wave{
  position: absolute;
  left: -50%;
  bottom: 0;
  width: 200%;
  height: 180px;
  background:
    radial-gradient(
      120% 100% at 50% 100%,
      rgba(255,255,255,0.85) 60%,
      transparent 61%
    );
  animation: waveMove 3s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Wave animation */
@keyframes waveMove{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(10%);
  }
}



/* layout container */
.hero-container{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  padding: 0 60px;

  display: flex;
  align-items: center;        /* ✅ vertical centering FIX */
  justify-content: space-between;
  gap: 40px;
}

/* ==========================
   HERO TEXT
========================== */

.hero-text{
  max-width: 540px;
}

.hero-title{
  line-height: 1.1;
}

.hero-normal{
  font-size: 45px;
  font-weight: 600;
  color: #ffffff;
}

.hero-highlight{
  font-family: 'Kaushan Script', cursive;
  font-size: 60px;
  font-weight: 400;
  color: #c8e6c9;
  display: block;
  margin: 8px 0 0;    /* ⬅ NO bottom margin */
}



.hero-subtext{
  display: block;
  font-size: 28px;
  font-weight: 500;
  color: #e8f5e9;
  letter-spacing: 0.5px;
  margin-top: -20px;   /* ⬅ THIS IS THE KEY FIX */
}



/* ==========================
   HERO IMAGE
========================== */

.hero-image{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img{
  max-width: 500px;        /* ✅ image size fixed */
  width: 100%;
  height: auto;
}

/* ==========================
   BUTTON
========================== */

.btn-green{
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #fff !important;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(149, 243, 152, 0.35);
  transition: all 0.3s ease;
}

.btn-green:hover{
  background: #0a5910;
  transform: translateY(-2px);
}

.hero-tagline{
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #2e7d32;
  text-transform: uppercase;
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){
  .hero-container{
    flex-direction: column;
    text-align: center;
  }

  .hero-image{
    margin-top: 15px;
  }

  .hero-title{
  line-height: 1.15;
  }

  .hero-normal{ font-size: 32px; }
  .hero-highlight{ font-size: 44px; }
  .hero-subtext{ font-size: 18px; }
}



/* ==========================
   ABOUT US SECTION
========================== */

#about .section-title{
  margin-bottom: 50px;   /* increase gap */
}


.about-section{
  padding: 100px 0;
  background:
    linear-gradient(
      180deg,
      #f1f8f4 0%,
      #ffffff 100%
    );
  display: flex;
  justify-content: center;
}

.about-section .container{
  max-width: 1100px;
}


.about-card{
  margin: 0 auto;              /* ✅ centers card */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;

  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}


.about-image img{
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
}

.about-content{
  flex: 1;
}

.about-content p{
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* subtle hover polish */
.about-card:hover{
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* ==========================
   ABOUT US SLIDER
========================== */

.about-section{
  padding: 100px 0;
  background: linear-gradient(180deg, #f1f8f4, #ffffff);
}

.about-card{
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* slider box */
.about-slider{
  position: relative;
  width: 450px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

/* images */
.about-slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.5s ease;
}

.about-slide.active{
  opacity: 1;
  transform: scale(1);
}

.about-content{
  flex: 1;
}

.about-content p1{
  font-weight: bold;
  font-size: 25px;
  line-height: 1.2;
  color: #444;
  margin-bottom: 16px;
}

.about-content p{
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){
  .about-card{
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .about-slider{
    width: 100%;
    height: 180px;
  }

  .about-slide{
    height: auto;
    max-height: 320px;
    object-fit: contain; /* 🔑 NO CROPPING */
    background: #f5f5f5;
  }
}

/* ==========================
   CUSTOMIZATION OPTIONS
========================== */

.customization-section{
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #e8f5e9,
    #ffffff
  );
  position: relative;
}

.customization-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(46,125,50,0.12) 1px,
      transparent 1px
    );
  background-size: 22px 22px;
  opacity: 0.2;
  pointer-events: none;
}


.customization-section .container{
  max-width: 1200px;
}


.customization-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center; /* ✅ centers cards */
  justify-items: center;
  margin-top: 50px;
}


/* card */
.custom-card{
  position: relative;
  width: 100%;
  max-width: 340px;
  min-height: 280px;

  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: #ffffff;

  padding: 36px 28px;
  text-align: center;

  border-radius: 10px 70px 20px 70px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  overflow: hidden;
}

.custom-card::before{
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.15),
    transparent 60%
  );
  pointer-events: none;
}


.custom-card:hover{
  transform: translateY(-12px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.35);
}

/* icon */
.custom-card img{
  height: 64px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}


/* title */
.custom-card h4{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}


/* text */
.custom-card p{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/*Mobile*/

@media (max-width: 992px){
  .customization-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .customization-grid{
    grid-template-columns: 1fr;
  }
}

/* ==========================
   MANUFACTURING PROCESS
========================== */

.process-section{
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #f1f8f4 0%,
    #ffffff 100%
  );
}

.process-section .container{
  max-width: 1200px;
}

/* steps layout */
.process-steps{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 70px;
  position: relative;
}

/* connecting line */
.process-steps::before{
  content: "";
  position: absolute;
  top: 36px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: #c8e6c9;
  z-index: 0;
}

/* single step */
.process-step{
  position: relative;
  width: 20%;
  text-align: center;
  z-index: 1;
}

/* circle number */
.step-circle{
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(46,125,50,0.35);
}

/* title */
.process-step h4{
  font-size: 18px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 10px;
}

/* text */
.process-step p{
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* ==========================
   MOBILE VIEW
========================== */

@media (max-width: 992px){
  .process-steps{
    flex-direction: column;
    gap: 50px;
  }

  .process-steps::before{
    display: none;
  }

  .process-step{
    width: 100%;
  }
}


/* ==========================
   WHY CHOOSE US
========================== */

/* ==========================
   WHY CHOOSE US – BACKGROUND
========================== */

#why-us{
  padding: 90px 0;
  position: relative;

  /* Light green paper-like background */
  background: linear-gradient(
    180deg,
    #f1f8f4 0%,
    #ffffff 100%
  );
}

/* subtle dotted texture (paper feel) */
#why-us::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(46,125,50,0.12) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
}

/* keep content above texture */
#why-us .container{
  position: relative;
  z-index: 1;
  text-align: center;
}


/* Section heading */
#why-us .section-header{
  text-align: center;
  margin-bottom: 40px;
}

#why-us .section-header h3{
  font-size: 32px;
  font-weight: 700;
  color: #1b5e20;
}

/* CARDS */
#why-us .card{
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  border: none;
  border-radius: 70px 10px 70px 20px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  
}

#why-us .card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* Icon container */
/* Center icons perfectly inside Why Choose Us cards */
#why-us .card .container{
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  height: 120px;            /* unified height */
}

/* Normalize image sizes */
#why-us .card img{
  max-height: 180px;
  width: auto;
  margin: 0;
}


/* Card title */
#why-us .card-title{
  font-size: 20px;
  font-weight: 700;
  margin-top: 12px;
  color: #ffffff;
}

/* Card text */
#why-us .card-text{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

/* ==========================
   COUNTERS (ORIGINAL BEHAVIOR)
========================== */

#why-us .counters{
  margin-top: 50px;
}

#why-us .counters span{
  font-size: 44px;
  font-weight: 700;
  color: #2e7d32;   /* green, but animation unchanged */
  display: block;
}

#why-us .counters p{
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px){
  #why-us{
    padding: 60px 0;
  }

  #why-us .section-header h3{
    font-size: 26px;
  }

  #why-us .counters span{
    font-size: 36px;
  }
}

/* ==========================
   GALLERY
========================== */

#gallery .section-title{
  margin-bottom: 40px;
}

.gallery-filters{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-btn{
  padding: 8px 18px;
  background: #e8f5e9;
  border: none;
  color: #2e7d32;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover{
  background: #2e7d32;
  color: #fff;
}

.gallery-grid{
  columns: 3;
  column-gap: 28px;
}


/* HIDDEN ITEMS */
.gallery-item{
  display: none;
  position: relative;   /* 🔑 REQUIRED */
  break-inside: avoid;
  margin-bottom: 28px;
  border-radius: 20px;
  overflow: hidden;
  background: #e8f5e9;
}



/* VISIBLE ITEMS */
.gallery-item.show{
  display: inline-block;   /* 🔑 REQUIRED FOR COLUMNS */
  width: 100%;
}

/* Smooth animation */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(12px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item img{
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}


/* ==========================
   HOME PAGE GALLERY BACKGROUND
========================== */

.home-gallery{
  padding-top: 40px;   /* 🔑 THIS controls gap */
  padding-bottom: 100px;
  /* soft green background */
  background: linear-gradient(
    180deg,
    #e8f5e9 0%,
    #f1f8f4 50%,
    #ffffff 100%
  );

  position: relative;
}

/* subtle paper texture */
.home-gallery::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(46,125,50,0.12) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  opacity: 0.2;
  pointer-events: none;
}

/* keep content above texture */
.home-gallery .container{
  position: relative;
  z-index: 1;
}


/* ==========================
   GALLERY HOVER OVERLAY
========================== */

.gallery-overlay{
  position: absolute;
  inset: 0;
  background: rgba(27,94,32,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: auto;
}

.gallery-item:hover .gallery-overlay{
  opacity: 1;
}

.overlay-content{
  text-align: center;
  color: #fff;
}

.overlay-content h5{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.overlay-content span{
  font-size: 14px;
  opacity: 0.9;
}

.view-btn{
  margin-top: 14px;
  background: #ffffff;
  color: #1b5e20;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
  pointer-events: auto;   /* 🔑 CRITICAL */
  z-index: 2;
}

.view-btn:hover{
  background: #c8e6c9;
}



/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 992px){
  .gallery-grid{ columns: 2; }
}
@media (max-width: 576px){
  .gallery-grid{ columns: 1; }
}

@media (max-width: 768px){

  /* Overlay stays hidden initially */
  .gallery-overlay{
    opacity: 0;
    visibility: hidden;
  }

  /* Show overlay only when user taps */
  .gallery-item.show-overlay .gallery-overlay{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
  }
}

/* ==========================
   LIGHTBOX
========================== */

/* Overlay */
#lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Wrapper */
.lightbox-inner{
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

/* Image */
#lightbox-img{
  max-width: 90vw;
  max-height: 85vh;
  transition: transform 0.15s ease;
  cursor: zoom-in;
  border-radius: 6px;
}

/* TEXT BELOW IMAGE */
.lightbox-meta{
  margin-top: 10px;
  color: #ddd;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Image title (LEFT) */
#lightbox-title{
  font-weight: 600;
}

/* Counter (RIGHT) */
#lightbox-counter{
  opacity: 0.7;
  font-size: 13px;
}


/* Navigation */
.nav-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ccc;
  font-size: 40px;
  cursor: pointer;
}

.nav-btn.prev{ left: -50px; }
.nav-btn.next{ right: -50px; }


/* Close */
.close-btn{
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
}

/* Navigation */
.nav-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.prev{ left: 40px; }
.next{ right: 40px; }

.overlay-content span{
  display: block; 
  margin-bottom: 12px;
}


/*mobile*/
@media (max-width: 768px) {
  .nav-btn {
    opacity: 1 !important;
    pointer-events: auto;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .nav-btn.prev {
    left: -20px;
  }

  .nav-btn.next {
    right: -20px;
  }
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials-section{
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #e8f5e9 0%,
    #f6fbf7 60%,
    #ffffff 100%
  );
  position: relative;
}

/* wrapper */
.testimonials-wrapper{
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

/* card */
.testimonial-card{
  display: none;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  text-align: center;
  animation: fadeSlide 0.6s ease;
}

.testimonial-card.active{
  display: block;
}

/* text */
.testimonial-text{
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
  font-style: italic;
}

/* client */
.client-name{
  font-size: 18px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 4px;
}

.client-role{
  font-size: 14px;
  color: #2e7d32;
  letter-spacing: 0.5px;
}

/* dots */
.testimonial-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots .dot{
  width: 10px;
  height: 10px;
  background: #c8e6c9;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.testimonial-dots .dot.active{
  background: #2e7d32;
  transform: scale(1.2);
}

/* animation */
@keyframes fadeSlide{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width: 768px){
  .testimonial-card{
    padding: 32px 24px;
  }
}


/* ==========================
   GOOGLE REVIEWS (NO API)
========================== */

.google-rating{
  text-align: center;
  margin: 20px auto 50px;
}

.google-inline{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.google-inline img{
  height: 26px;
}

.stars{
  font-size: 24px;
  color: #fbbc05; /* Google star yellow */
  letter-spacing: 3px;
}

.rating-text{
  font-size: 14px;
  color: #2e7d32;
  margin: 6px 0;
}

.google-link{
  font-size: 13px;
  color: #1b5e20;
  text-decoration: underline;
  font-weight: 500;
}

.google-link:hover{
  color: #2e7d32;
}


/* ==========================
   OUR CUSTOMERS
========================== */

.customers-section{
  padding: 80px 0;
  background: #f1ffec;
  overflow: hidden;
}


.customers-section h3{
  font-size: 32px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 40px;
}

/* Slider */
.customers-slider{
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Track */
.customers-track{
  display: flex;
  width: fit-content;
  animation: scroll-left 50s linear infinite;
}

/* Pause on hover */
.customers-slider:hover .customers-track{
  animation-play-state: paused;
}

.customers-card{
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 0;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}


.customers-slider::before,
.customers-slider::after{
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Left fade */
.customers-slider::before{
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0) 100%
  );
}

/* Right fade */
.customers-slider::after{
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0) 100%
  );
}


/* Each logo box */
.customer-item{
  flex: 0 0 auto;
  width: 220px;          /* 🔑 reduced */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;  
  position: relative;   /* 🔑 tighter spacing */
  z-index: 1;
}

/* Logo image */
.customer-item img{
  height: 130px;
  width: auto;
  max-width: 160px;
  object-fit: contain;

  opacity: 1;         /* 🔑 always dark */
  transition: transform 0.3s ease;
}


.customer-item img:hover{
  transform: scale(1.03);
}

/* Animation */
@keyframes scroll-left{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px){
  .customer-item{
    width: auto;        /* smaller card */
    height: 60px;
    margin: 0 6px;       /* 🔑 GAP REDUCED */
  }

  .customer-item img{
    max-height: 60px;    /* uniform logo size */
  }
}


/* ==========================
   CONTACT SECTION
========================== */

.contact-section{
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #f1f8f4 0%,
    #e8f5e9 100%
  );
}

.contact-section .section-title{
  margin-bottom: 50px;   /* ⬅ increase/decrease as needed */
}


.contact-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(46,125,50,0.12) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  opacity: 1;
  pointer-events: none;
}

.contact-section{
  position: relative;
}

.contact-section .container{
  max-width: 1200px;
}


.contact-wrapper{
  margin-top: 40px;
  display: flex;                /* 🔑 REQUIRED */
  align-items: center;          /* vertical centering */
  justify-content: center;      /* horizontal centering */
}


/* GOOGLE MAP */
.contact-map iframe{
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* CONTACT FORM */
.contact-form{
  padding-left: 15px;
  padding-right: 15px;
}

.contact-info p{
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.contact-form .form-control{
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #ddd;
}

.contact-form .form-control:focus{
  box-shadow: none;
  border-color: #2e7d32;
}

/* MOBILE */
/* MOBILE CENTERING FIX */
@media (max-width: 768px){
  .contact-section{
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 992px){
  .contact-wrapper{
    flex-direction: column;
    align-items: center;
  }

.contact-form{
    background: #ffffff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08)
}
.contact-map iframe{
    min-height: 300px;
    margin-bottom: 30px;
  }
}



/* ==========================
   GOLD ACCENT FOOTER
========================== */

.site-footer{
  background: linear-gradient(
    180deg,
    #123b2a,
    #1b5e20
  );
  color: #f4f1ec;
  padding: 80px 0 30px;
  position: relative;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}

/* Gold paper grain */
.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(212,175,55,0.18) 1px,
      transparent 1px
    );
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
}

/* Layout */
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* Titles */
.site-footer h4{
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #d4af37; /* GOLD */
  letter-spacing: 0.5px;
}

/* Text */
.site-footer p{
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #f2efe9;
}

/* Links */
.site-footer a{
  color: #f6e3a1;
  text-decoration: none;
}

.site-footer a:hover{
  color: #ffffff;
  text-decoration: underline;
}

/* Owner name */
.footer-owner{
  margin-bottom: 14px;
  font-size: 16px;
}

/* ==========================
   SOCIAL ICONS (GOLD RING)
========================== */

.footer-social h4{
  margin-bottom: 16px;
}

.social-icons{
  display: flex;
  gap: 18px;
}

.footer-description{
  margin-top: 20px;
}


/* Icon base */
.social{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #ffffff;
  border: 2px solid #d4af37; /* GOLD RING */
  background: rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

/* Hover effect */
.social:hover{
  background: #d4af37;
  color: #123b2a;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ==========================
   FOOTER BOTTOM
========================== */

.footer-bottom{
  text-align: center;
  margin-top: 45px;
  padding-top: 18px;
  font-size: 13px;
  color: #e7ddbb;
  border-top: 1px solid rgba(212,175,55,0.35);
  position: relative;
  z-index: 1;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* ==========================
   SHRINK HEADER ON SCROLL
========================== */

.navbar{
  transition: all 0.3s ease;
}

/* Shrunk state */
.navbar.shrink{
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
}

/* Logo shrink */
.navbar.shrink .navbar-brand img{
  height: 34px;
}

/* Brand text shrink */
.navbar.shrink .brand-text-wrapper .brand-main{
  font-size: 22px;
}

.navbar.shrink .brand-text-wrapper .brand-sub{
  font-size: 8px;
}

/* ==========================
   SCROLL TO TOP BUTTON
========================== */

#scrollTopBtn{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show button */
#scrollTopBtn.show{
  opacity: 1;
  visibility: visible;
}

/* Hover / Tap */
#scrollTopBtn:hover{
  transform: translateY(-3px);
}

/* Mobile adjustment */
@media (max-width: 768px){
  #scrollTopBtn{
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

.alert-success{
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border: none;
  color: #1b5e20;
  font-weight: 600;
  border-radius: 14px;
  padding: 14px 18px;
}

/* =============================================================================
   GALLERY PAGE SECTION
============================================================================= */

/* ==========================
   GALLERY HERO (ENHANCED)
========================== */

.gallery-hero{
  position: relative;
  padding: 140px 0 120px;
  background:
    linear-gradient(
      135deg,
      #134e1f 0%,
      #1b5e20 40%,
      #2e7d32 100%
    );
  overflow: hidden;
}

/* subtle texture */
.gallery-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      rgba(255,255,255,0.1) 1px,
      transparent 2px
    );
  background-size: 14px 14px;
  opacity: 1;
}

/* soft dark overlay */
.gallery-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.05)
    );
}

/* content */
.gallery-hero-content{
  position: relative;
  z-index: 2;
}


/* HERO TITLE */
.gallery-hero h1{
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* SUBTITLE */
.gallery-subtitle{
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 22px;
  line-height: 1.6;
}


/* BADGE (NOW SUPPORTING ELEMENT) */
.gallery-badge{
  display: inline-block;
  padding: 6px 18px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1b5e20;
  background: linear-gradient(90deg, #f7e27a, #d4af37);
  border-radius: 30px;
  font-weight: 600;
}

/* bottom wave */
.gallery-hero-wave{
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #f1f8f4;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;

  /* depth */
  box-shadow: 0 -12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.gallery-hero-wave::before{
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(rgba(0,0,0,0.18) 0.8px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.12) 1px, transparent 1px),
    linear-gradient(
      115deg,
      rgba(255,255,255,0.35) 0%,
      rgba(255,255,255,0.05) 35%,
      rgba(0,0,0,0.04) 60%,
      rgba(255,255,255,0.25) 100%
    );

  background-size:
    16px 16px,
    32px 32px,
    100% 100%;

  background-position:
    0 0,
    8px 8px,
    center;

  opacity: 0.55;   /* 🔑 THIS MAKES IT VISIBLE */
  pointer-events: none;
}

.gallery-hero-wave::after{
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 6px 10px rgba(255,255,255,0.45),
    inset 0 -6px 10px rgba(0,0,0,0.08);
  pointer-events: none;
}

/* ==========================
   GALLERY PAGE NAVBAR ALIGNMENT
========================== */

/* ==========================
   NAVBAR ALIGNMENT
========================== */

.navbar .navbar-nav{
  align-items: center;
}

.navbar .nav-link{
  font-weight: 600;
  padding: 8px 14px;
}

/* Active */
.navbar .nav-link.active{
  color: #2e7d32;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 991px){

  .navbar-collapse{
    text-align: center;
  }

  .navbar-nav{
    margin-top: 12px;
  }

  .navbar-nav .nav-item{
    width: 100%;
  }

  .navbar-nav .nav-link{
    display: inline-block;
    padding: 10px 0;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

#contact {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    #contact {
        scroll-margin-top: 130px;
    }
}
