 :root {
      --green-dark: #1a5632;
      --green-medium: #3b8d5a;
      --green-light: #8dc63f;
      --text-dark: #222;
      --text-light: #666;
      --bg-light: #f9f9f9;
    }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  color: #fff; 
}

.navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 4px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: 0.3s ease;
      z-index: 1000;
    }

    .navbar.transparent {
      background: transparent;
      color: #000000;
    }

    .navbar.sticky {
      background: #fff;
      color: #000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar .logo img {
      height: 65px;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    .navbar ul li a {
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      color:#162b49;
      transition: 0.3s;
    }

    .navbar ul li a:hover {
      color: #1d9d58; /* green hover */
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    /* Responsive */
    @media(max-width: 768px) {
      .navbar {
        padding: 12px 15px;
      }

      .navbar ul {
        position: absolute;
        top: 100%;
        left: 0%;
        background: #fff;
        flex-direction: column;
        gap: 15px;
        padding: 12px 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
        width: 100%;
      }

      .navbar ul.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
        z-index: 1100;
      }

      .navbar.transparent ul li a {
        color: #000;
      }
    }

/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background-size: cover;
  background-position: center;
}
.slide .content {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}
.slide h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.slide p {
  font-size: 18px;
}

/* Backgrounds for slides */
.bg1 {
  background-image: url("../images/banner1.jpg");
}
.bg2 {
  background-image: url("../images/heater-banner.jpg");
}
.bg3 {
  background-image: url("../images/banner2.jpg");
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}
.arrow.prev {
  left: 15px;
}
.arrow.next {
  right: 15px;
}
.arrow svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  opacity: 1;
  width: 20px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 10px 10px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 60px;
    right: -100%;
    flex-direction: column;
    background: #000;
    padding: 20px;
    gap: 15px;
    transition: 0.3s;
    width: 200px;
  }
  .nav.active {
    left: 0;
  }
}

/* ===== Products List (unique classes: ps-prodlist-*) ===== */
.ps-prodlist {
  background: #ffffff;
  color: #162b49; /* deep navy like the reference */
  padding: 50px 0px;
  padding-bottom: 20px;
}
.ps-prodlist__inner {
  width: min(1240px, 92%);
  margin-inline: auto;
}

.ps-prodlist__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.ps-prodlist__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #233650;
  font-size: clamp(22px, 3.2vw, 48px);
  line-height: 1.15;
  padding-bottom: 10px;
  border-bottom: 2px solid #6d6a6a;  /* line ban jayegi */
}

/* Yellow CTA button (right side) */
.ps-prodlist__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #2C7B5B; 
  color: #0c2442; 
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 22px);
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ps-prodlist__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.ps-prodlist__btn-icon {
  width: 22px;
  height: 22px;
  fill: #0c2442;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.ps-prodlist__btn:hover .ps-prodlist__btn-icon {
  transform: translateX(4px);
}

/* List grid */
.ps-prodlist__list {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 15px 30px;
}
.ps-prodlist__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(15px, 1.6vw, 22px);
  /* line-height: 1.5; */
  font-weight: 500;
  color: #223d63;
}
.ps-prodlist__list li::before {
  content: "»";
  font-size: 1.2em;
  line-height: 1;
  color: #193358;
  opacity: 0.9;
  transform: translateY(1px);
}
.ps-prodlist__list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.ps-prodlist__list a:hover {
  /* border-bottom-color: #477f12; */
  color: #477f12;
}

/* Responsive columns */
@media (max-width: 1200px) {
  .ps-prodlist__list {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}
@media (max-width: 900px) {
  .ps-prodlist__top {
    grid-template-columns: 1fr;
  }
  .ps-prodlist__btn {
    justify-self: start;
  }
  .ps-prodlist__list {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 14px 28px;
    padding-left: 30px;
  }
}
@media (max-width: 540px) {
  .ps-prodlist__list {
    grid-template-columns: 1fr;
    gap: 12px 18px;
    padding-left: 30px;
  }
  .ps-prodlist__btn {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* =================== Counter section =================== */
.counter-section {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.counter-section .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-box {
  flex: 1 1 250px;
  max-width: 300px;
}

.counter-box h2 {
  font-size: 64px;
  font-weight: bold;
  color: #8CC63E;
  margin-bottom: 10px;
  
}

.counter-box p {
  font-size: 18px;
  color: #2C7B5B;
}



/* =============== about section =============== */
.about-heading-section {
      padding: 30px 45px;
      background-color: white;
      color: #000;
      padding-bottom: 0%;
    }

    .about-heading-section h2 {
      font-size: clamp(22px, 3.2vw, 48px);
      font-weight: 700;
      color:  #233650;
      margin-bottom: 10px;
      text-align: left;
      /* margin-bottom: 10px; */
      padding-bottom: 10px;
      border-bottom: 2px solid #6d6a6a;  /* line ban jayegi */
    }

    .about-heading-section hr {
      width: 100%;
      border: none;
      height: 1px;
      background: #ccc;
      margin-bottom: 30px;
    }

    .about-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      padding-bottom: 20px;
    }

    .about-bottom p {
      font-size: 22px;
      color: #444;
      flex: 1;
      min-width: 220px;
    }

    .about-btn {
      display: inline-block;
      background: #2C7B5B;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 6px;
      text-decoration: none;
      transition: 0.3s ease;
      white-space: nowrap;
    }

    .about-btn:hover {
      background: #589F43;
    }

    .about-btn::after {
      content: " →";
      font-weight: bold;
    }

    /* Responsive */
    @media(max-width: 768px) {
      /* .about-heading-section h2 {
        font-size: 36px;
      } */
      .about-bottom {
        flex-direction: column;
        text-align: center;
      }
      .about-bottom p {
        font-size: 18px;
      }
    }

    @media(max-width: 480px) {
      .about-heading-section h2 {
        font-size: 28px;
      }
      .about-bottom p {
        font-size: 16px;
      }

      
    }

 .about-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 60px 5%;
      flex-wrap: wrap;
      background-color: white;
      color: #000;
      padding-top: 30px;
    }

    
    /* LEFT SIDE (Carousel) */
.carousel-container {
  flex: 1;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  width: 100%; /* 3 images => 300% */
  transition: transform 1s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
}






    /* RIGHT SIDE (Content) */
    .about-content {
      flex: 1;
      max-width: 600px;
    }

    .about-content h2 {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .about-content p {
      color: #444;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 16px;
    }

    /* Progress Bars */
    .progress-container {
      margin-top: 20px;
    }

    .progress-item {
      margin-bottom: 5px;
    }

    .progress-item p {
      font-weight: bold;
      margin-bottom: 0px;
      color: #333;
    }

    .progress-bar {
      position: relative;
      height: 13px; /* bigger height */
      width: 100%;
      background: #e6e6e6;
      border-radius: 10px;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: #2C7B5B;
      border-radius: 10px 0 0 10px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 8px;
      color: #ffffff;
      font-size: 10px;
      font-weight: bold;
    }

    /* Responsive */
    @media(max-width: 992px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .about-content h2 {
        font-size: 36px;
      }
      .about-content p {
        font-size: 15px;
        text-align: left;
      }
    }

    @media(max-width: 576px) {
      .about-content h2 {
        font-size: 28px;
      }
      .progress-fill {
        font-size: 11px;
      }
    }

    /* ====================== service section ====================== */
.services-section {
  padding: 30px 45px;
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(22px, 3.2vw, 48px);  font-weight: 700;
  color:  #233650;
  text-align: left;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6d6a6a;  /* line ban jayegi */
}

.section-subtitle {
  font-size: 1rem;
  text-align: left;
  color: #666;
  margin-bottom: 40px;
}
.subtitle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 40px; */
  flex-wrap: wrap;
}
.subtitle-row p {
  font-size: 22px;
  color: #444;
  flex: 1;
  min-width: 220px;
  margin-top: 10px;
}

/* .section-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
  flex: 1;
} */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.service-card i {
  font-size: 3rem;
  color: #000000;     /* #223556 */
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #008060;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #008060, #00b894);
  color: #fff;
}

.service-card:hover h3,
.service-card:hover p
 {
  color: #fff;
}

.service-card:hover i {
  color: #fff;
}


/* =================== image slider section ================ */
.solar-multi-slider-section {
  padding: 40px 0;
  background: #f9f9f9;
}

.solar-multi-slider-container {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.solar-multi-slider {
  display: flex;
  gap: 20px;
  animation: solarMultiAnim 20s linear infinite;
}

.solar-multi-slide {
  flex: 0 0 25%; /* 4 images per row on desktop */
}

.solar-multi-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Tablet */
@media (max-width: 992px) {
  .solar-multi-slide {
    flex: 0 0 50%; /* 2 per row */
  }
}

/* Mobile */
@media (max-width: 576px) {
  .solar-multi-slide {
    flex: 0 0 100%; /* 1 per row */
  }
}

/* Auto sliding animation */
@keyframes solarMultiAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* loop half, so images repeat smoothly */
}



/* ======================= Customer section ==================== */
    .customers-section {
      padding: 30px 45px;
      text-align: center;
      background: #fff;
      overflow: hidden; /* important for slider */
    }

    .customers-section h2 {
      font-size: clamp(22px, 3.2vw, 48px);
      font-weight: 700;
      color:#233650;
      margin-bottom: 10px;
    }

    .customers-section p.subtitle {
      color: #666;
      margin-bottom: 40px;
      font-size: 1rem;
    }

    /* Slider container */
    .customers-slider {
      display: flex;
      gap: 40px;
      animation: slide 20s linear infinite;
      width: max-content;
    }

     .customer-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      background: var(--bg-light);
      padding: 15px 20px;
      border-radius: 12px;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .customer-item:hover {
      transform: translateY(-5px);
      box-shadow: 0px 8px 15px rgba(0,0,0,0.1);
    }

    .customer-logo {
      width: 100px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .customer-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(0%);
      transition: filter 0.3s ease;
    }

    .customer-item:hover img {
      filter: grayscale(100%);
    }

    .customer-name {
      margin-top: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--green-medium);
    }

    /* Auto slide animation */
    @keyframes slide {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    /* Responsive */
    @media (max-width: 480px) {
      .customers-section h2 {
        font-size: 1.5rem;
      }
      .customer-item {
        min-width: 120px;
        padding: 10px 15px;
      }
      .customer-logo {
        width: 80px;
        height: 50px;
      }
    }


/* ================= Customer likes Section ================= */
.customer-likes{
  padding: 30px 45px;
  color: #000;
}
.customer-likes .section-title {
position: relative;
font-size: clamp(22px, 3.2vw, 48px);
font-weight: 700;
color:  #233650;
margin-bottom: 40px;
}
.customer-likes .section-title span {
color: #05668d;
font-weight: 600;
}
.likes-grid {
position: relative;
display: grid;
grid-template-columns: repeat(5,1fr);
gap: 40px 20px;
text-align: center;
}
.like-box {
background: transparent;
padding: 10px;
}
.like-box i {
font-size: 40px;
color: #2C7B5B;
margin-bottom: 15px;
}
.like-box h3 {
font-size: 18px;
font-weight: 600;
margin-bottom: 5px;
}
.like-box p {
font-size: 14px;
color: #333;
}


/* Responsive */
@media(max-width: 1024px){
.likes-grid {
grid-template-columns: repeat(3,1fr);
}
}
@media(max-width: 768px){
.likes-grid {
grid-template-columns: repeat(2,1fr);
}
}
@media(max-width: 480px){
.likes-grid {
grid-template-columns: 1fr;
}
}



/* ================ Testimonial Section ================ */
 .testimonial-section {
      padding: 30px 45px;
      background: #fff;
      text-align: center;
      color: #000;
    }

    .testimonial-section h2 {
      font-size: clamp(22px, 3.2vw, 48px);
      font-weight: 700;
      color:  #233650;
      text-align: left;
      margin-bottom: 10px;
      padding: 10px 0px;
      border-bottom: 2px solid #6d6a6a;  /* line ban jayegi */
    }

    .testimonial-section p.subtitle {
      color: var(--text-light);
      font-size: 1rem;
      margin-bottom: 40px;
    }

    /* ====== Slider ====== */
    .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    .testimonial-wrapper {
      display: flex;
      transition: transform 0.6s ease;
    }

    .testimonial-card {
      min-width: 100%;
      box-sizing: border-box;
      padding: 30px;
      background: var(--bg-light);
      border-radius: 15px;
      /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .testimonial-card p {
      font-size: 1.1rem;
      color: var(--text-dark);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .testimonial-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #8dc63f;
    }

    .testimonial-author {
      font-weight: bold;
      color: var(--green-medium);
    }

    .testimonial-role {
      font-size: 0.9rem;
      color: var(--text-light);
    }

    /* ====== Dots ====== */
    .testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 12px;
}

.testimonial-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8dc63f;   /* default light grey */
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dots span.active {
  background: #1a5632;  /* active dot visible in dark green */
  transform: scale(1.3);
}


    /* ====== Responsive ====== */
    @media (max-width: 768px) {
      .testimonial-card p {
        font-size: 1rem;
      }
    }



    /* ====================Have Project Section ==================== */
    .cta-section {
  background: #b3b3b3; /* grey bg (same as img) */
  padding: 100px 20px;
  text-align: center;
}

.cta-section .cta-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #333;
}

.cta-btn span {
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.cta-btn:hover span {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 15px;
  }

  .cta-section .cta-content h2 {
    font-size: 2rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .cta-section .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}



/* ========================== Footer Section ======================= */
    footer {
      background-color: #06305a; /* Theme color */
      color: #fff;
      padding: 50px 20px 20px;
      overflow-x: hidden;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;  /* ✅ responsive ke liye allow wrapping */
      gap: 30px;
      /* max-width: 1300px; */
      margin: auto;
    }

    /* First column fix width */
    .footer-column.logo-col {
      flex: 0 0 220px;   /* ✅ fixed width */
      
    }
    

    /* Baaki columns equal distribute */
    .footer-column {
      flex: 1 1 0;
      min-width: 140px;   /* ✅ responsive control */
      word-wrap: break-word;
      overflow-wrap: anywhere;
    }

    /* Logo + text */
    .footer-column img {
      max-width: 160px;
      margin-bottom: 15px;
    }

    .footer-column p {
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 20px;
      color: #d9d9d9;
    }

    /* Social icons */
    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-links a {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 50%;
      color: #0b2a4a;
      text-decoration: none;
      font-size: 16px;
      transition: 0.3s;
    }

    .social-links a:hover {
      background: #8dc63f;
      color: #fff;
    }

    /* Column headings */
    .footer-column h4 {
      font-size: 18px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    /* Lists */
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #d9d9d9;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-column ul li a:hover {
      color: #8dc63f;
    }

    /* Contact info */
    .contact-info li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 12px;
      color: #d9d9d9;
      font-size: 16px;
    }

    .contact-info li i {
      font-style: normal;
      margin-right: 10px;
      color: #d9d9d9;
      font-size: 18px;
      min-width: 22px;
    }
    .contact-info li a {
      word-wrap: break-word;    /* purane browsers ke liye */
      overflow-wrap: anywhere;  /* modern browsers ke liye */
      display: inline-block;
      max-width: 100%;          /* parent ke andar hi rahe */
      white-space: normal;      /* break allow kare */
    }

    /* Bottom */
    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 30px;
      padding-top: 15px;
      font-size: 15px;
      color: #ccc;
    }
    .footer-bottom a {
      color: #8dc63f;
      text-decoration: none;
    }
    .footer-bottom a:hover {
      color: #3b8d5a;
      text-decoration: none;
    }
    .footer-column.quick-links {
      flex: 0 0 120px; /* fixed chhoti width */
      /* padding-left: 10px; */
    }


    /* Responsive */
    @media(max-width: 900px){
      .footer-container {
        flex-wrap: wrap; /* ✅ columns niche aa jayenge */
      }
      .footer-column.logo-col {
        flex: 1 1 100%;  /* ✅ logo col full width upar aa jayega */
        text-align: left;
      }
      .social-links {
        justify-content: left;
      }
    }

    @media (max-width: 1024px) {
      .footer-container {
        gap: 15px;  /* ✅ kam gap taki columns ek sath fit ho */
      }
      .footer-column {
        min-width: 120px;  /* ✅ aur chhota kar diya iPad ke liye */
      }
    }





    /* =========================================================================== */
                                    /* Contact Page */
    /* =========================================================================== */

    /* Hero Section */
.contact-hero {
  position: relative;
  height: 300px;
  background: url("../images/banner11.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.contact-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.contact-hero h1 {
  position: relative;
  font-size: 42px;
  font-weight: bold;
  z-index: 1;
  padding-top: 65px;
}

/* Contact Info Section */
.contact-info-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}

.contact-card {
  flex: 1 1 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 36px;
  color: #06305a;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #06305a;
}

.contact-card p {
  font-size: 16px;
  color: #333;
  line-height: 24px;
}

.contact-card a {
  color: #06305a;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: #8dc63f;
}

/* Map Section */
.map-section iframe {
  width: 100%;
  border: none;
  height: 500px;
  padding: 50px 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 32px;
  }
  .contact-card {
    flex: 1 1 100%;
  }
}



/* ==================================================================== */
                        /* Product Page */
/* ==================================================================== */
/* Services Grid */
.srv-section {
  padding: 60px 20px;
  background: #f5f5f5;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}
.srv-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.srv-card:hover {
  transform: translateY(-5px);
}
.srv-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.srv-card h3 {
  margin: 15px 0 10px;
  font-size: 22px;
  color: #06305a;
}
.srv-card p {
  padding: 0 15px 20px;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .srv-hero h1 {
    font-size: 32px;
  }
}



/* ==================================================================== */
                        /* Service Page */
/* ==================================================================== */

    .services-list-section {
      padding: 10px 70px;
      background: #fff;
    }

    .services-list-section h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 30px;
      color: #0a3d62;
    }

    .services-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 900px;
      margin: auto;
    }

    .services-list ul {
      list-style: none;
      padding: 0;
    }

    .services-list li {
      margin: 12px 0;
      font-size: 18px;
      color: #0a3d62;
      font-weight: 500;
      display: flex;
      align-items: center;
    }

    .services-list li a {
      text-decoration: none;
      color: #0a3d62;
    }

     .services-list li a:hover {
      text-decoration: none;
      color: #8dc63f;
    }

    .services-list li::before {
      content: "»";
      color: #0a3d62;
      /* font-weight: bold; */
      margin-right: 10px;
    }

    /* Responsive heading */
    @media (max-width: 768px) {
     .services-list li {
      font-size: 15px;
    }
    }


    .altservice-section {
      width: 90%;
      max-width: 1200px;
      margin: 50px auto;
    }

    .altservice-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      padding: 30px;
      margin-bottom: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .altservice-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .altservice-content {
      flex: 1;
      padding: 20px;
    }

    .altservice-content a {
      text-decoration: none;
    }

    .altservice-content a h2:hover {
      text-decoration: none;
      color: #1a5632;
    }

    .altservice-content h2 {
      font-size: 22px;
      margin-bottom: 10px;
      color:  #008060;
    }

    .altservice-content p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    .altservice-img {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .altservice-img img {
      max-width: 350px;
      border-radius: 10px;
    }

    /* Alternate Layout */
    .altservice-box:nth-child(even) {
      flex-direction: row-reverse;
    }

    /* Responsive */
     @media (max-width: 400px) {
      .altservice-content p {
        font-size: 15px;
        
      }
     }
    @media (max-width: 768px) {
      .altservice-box {
        flex-direction: column;
        text-align: center;
      }
      .altservice-box:nth-child(even) {
        flex-direction: column;
      }
      .altservice-img {
        margin-bottom: 20px;
      }
      .altservice-img img {
      max-width: 275px;
      border-radius: 10px;
    }
    }

     @media (min-width: 1024px) {
      .altservice-img img {
      max-width: 450px;
      border-radius: 10px;
    }
     }



/* ==================================================================== */
                        /* About Page */
/* ==================================================================== */

    .gg-about-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
      flex-wrap: wrap;
    }

    .gg-about-image {
      flex: 1 1 200px;
      text-align: center;
    }

    .gg-about-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      animation: gg-zoomIn 2s ease forwards;
    }

    @keyframes gg-zoomIn {
      0% {
        opacity: 0;
        transform: scale(0.8);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .gg-about-content {
      flex: 1 1 300px;
    }

    .gg-about-content h2 {
      font-size: 32px;
      color: #0a3d62;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #6d6a6a;  /* line ban jayegi */
    }

    .gg-about-content p {
      font-size: 17px;
      color: #333;
      text-align: justify;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .gg-about-wrapper {
        flex-direction: column;
        text-align: center;
      }

      .gg-about-content h2 {
        font-size: 26px;
      }

      .gg-about-content p {
        font-size: 15px;
      }
    }


    /* =============== Success Stories Section =============== */
  .success-section {
    text-align: center;
    padding: 40px 20px;
    color: #000;
    }


  .success-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    }


  .stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    }


  .story {
    text-align: center;
    }


  .story img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    }


  .story h3 {
    font-size: 20px;
    margin: 8px 0;
    }


  .story p {
    margin: 6px 0;
    font-size: 16px;
    }


  .highlight {
    font-weight: bold;
    color: #d32f2f;
    }


  .roi {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    }



    /* ============= Value Section ============ */
    .gg-values-section {
      padding: 30px 45px;
      text-align: center;
      background: linear-gradient(135deg, #e3f2fd, #e8f5e9);
    }

    .gg-values-section h2 {
      font-size: 36px;
      margin-bottom: 15px;
      color: #0a3d62;
      border-bottom: 2px solid #6d6a6a;
    }

    .gg-values-section p {
      font-size: 18px;
      color: #555;
      max-width: 700px;
      /* margin: 0 auto 50px; */
      /* margin-bottom: 40px; */
    }

    .gg-values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 40px;
    }

    .gg-value-card {
      background: #fff;
      padding: 40px 25px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gg-value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .gg-value-icon {
      font-size: 45px;
      color: #2e7d32;
      margin-bottom: 20px;
    }

    .gg-value-card h3 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #0a3d62;
    }

    .gg-value-card p {
      font-size: 16px;
      color: #444;
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .gg-values-section h2 {
        font-size: 28px;
      }
      .gg-values-section p {
        font-size: 15px;
      }
    }



    /* ================ Mission Section ============== */
   .gg-mission-vision {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.gg-mission-card,
.gg-vision-card {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gg-mission-card:hover,
.gg-vision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.gg-mission-vision-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}

.gg-mission-card h3,
.gg-vision-card h3 {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.gg-mission-card p,
.gg-vision-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .gg-mission-vision {
    flex-direction: column;
  }
  .gg-mission-card,
  .gg-vision-card {
    flex: 1 1 100%;
  }
  .gg-mission-card p,
  .gg-vision-card p {
    font-size: 15px;
  }
}



/* ========== Gallery Section ========== */
.gallery-section {
  padding: 20px 30px;
  text-align: center;
}

.gallery-section h2 {
  font-size: clamp(24px, 3vw, 42px);
  margin-bottom: 30px;
  color: var(--green-dark);
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  transition: transform 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

/* Zoom Controls (overlay on image) */
.controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 1100;
}

.controls button {
  background: rgba(255,255,255,0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover {
  background: rgba(255,255,255,0.4);
}

.controls svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Lightbox on top of header */
.lightbox {
  z-index: 9999; /* was 1000 */
}

/* keep close/controls above image */
.lightbox .close,
.controls,
.gl-nav-arrow { z-index: 10000; }

/* Navigation Arrows (unique class) */
.gl-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.gl-nav-arrow:hover { background: rgba(255,255,255,0.4); }
.gl-nav-arrow svg { width: 24px; height: 24px; fill: #fff; }

#glPrev { left: 30px; }
#glNext { right: 30px; }

@media (max-width: 480px) {
  .gl-nav-arrow { width: 40px; height: 40px; }
}

/* ==================== other businesses section ================= */
    .goles-other-businesses {
      padding: 30px 45px;
      font-family: Arial, sans-serif;
      align-items: center;

    }

    .goles-other-businesses h2 {
      text-align: center;
      font-size: 28px;
      margin-bottom: 40px;
      color: #222;
    }

    .goles-business-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .goles-business-card {
      background: #fff;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .goles-business-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .goles-business-logo {
      width: 100px;
      height: 100px;
      margin-bottom: 5px;
      object-fit: contain;
    }

    .goles-business-name {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #111;
    }

    .goles-business-tagline {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .goles-business-actions {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .goles-business-actions a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 8px 14px;
      border: 1px solid #3b8d5a;
      border-radius: 20px;
      font-size: 14px;
      text-decoration: none;
      color: #3b8d5a;
      transition: all 0.3s ease;
    }

    .goles-business-actions a:hover {
      background: #3b8d5a;
      color: #fff;
    }

    /* Responsive Breakpoints */
    @media (max-width: 992px) {
      .goles-business-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .goles-business-grid {
        grid-template-columns: 1fr;
      }
    }




    /* ========================= Whatsapp Icon ========================= */
    /* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}