/* HEADER BASE */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
  }
  
  .header-container {
    max-width: 1320px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* LOGO */
  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-wrap img {
    /* width: 100%;
    height: 50px; */
    width: 140px;
    height: 65px;
  }
  
  .logo-wrap span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #0b3d2e;
  }
  
  /* NAV */
  .main-nav {
    display: flex;
    gap: 34px;
  }
  
  .main-nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0b3d2e;
    transition: color 0.2s ease;
  }
  
  .main-nav a:hover {
    color: #1faa59;
  }
  
  /* ACTIONS */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .search-icon {
    width: 36px;
    height: 36px;
    border: 1.5px solid #0b3d2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: #0b3d2e;
  }
  
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
  }
  
  /* MOBILE */
  @media (max-width: 992px) {
  
    .main-nav {
      position: absolute;
      top: 76px;
      left: 0;
      right: 0;
      background: #ffffff;
      flex-direction: column;
      gap: 0;
      display: none;
      border-top: 1px solid #eee;
    }
  
    .main-nav a {
      padding: 16px 24px;
      border-bottom: 1px solid #f1f1f1;
    }
  
    .main-nav.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  /* SEARCH BOX */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  width: 0;
  opacity: 0;
  padding: 8px 12px;
  border: 1.5px solid #0b3d2e;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

/* When Active */
.search-box.active input {
  width: 180px;
  opacity: 1;
}

.search-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid #0b3d2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: #0b3d2e;
  background: #fff;
}

/* ================= BOOTSTRAP NAV FIX ================= */

/* Ensure custom nav is not overridden */
header .main-nav {
  display: flex;
}

/* Submenu base */
header .submenu {
  all: unset;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  display: none;
  z-index: 9999;
}

header .submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

@media (min-width: 993px) {
  header .nav-item:hover .submenu,
  header .submenu:hover {
    display: block;
  }
}


/* Submenu links */
header .submenu a {
  display: block;
  padding: 12px 18px;
  font-size: 16px;
  color: #0b3d2e;
  text-decoration: none;
}

header .submenu a:hover {
  background: #eef5f0;
}

/* Desktop hover */
@media (min-width: 993px) {

  header .nav-item {
    position: relative;
  }

  header .nav-item:hover .submenu,
  header .submenu:hover {
    display: block;
  }
}


/* ================= MOBILE FIX ================= */
@media (max-width: 992px) {

  header .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    display: none !important; /* force hide */
    z-index: 9999;
  }

  header .main-nav.active {
    display: flex !important; /* force show */
  }

  header .nav-item {
    width: 100%;
    padding: 25px;
  }

  header .submenu {
    position: static;
    box-shadow: none;
  }

  header .nav-item.active .submenu {
    display: block;
  }

  header .main-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f1f1;
  }
}

.nav-link{
  padding: 0px !important;
}
  /* HEADER BASE End */

  .hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
  }
  
  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.15));
  }
  
  .hero-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #fff;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  
  .hero-content p{
    margin-bottom:3rem;
  }
  .hero-btn {
    background: #19e6b3;
    color: #063b2e;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* COUNTER */
  .carousel-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 16px;
    z-index: 5;
  }
  
  .indicator-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.6);
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .hero-content {
      left: 0;
      padding: 0 20px;
      text-align: center;
      width: 100%;
    }
  
    .hero-content h1 {
      font-size: 40px;
    }
  
    .carousel-indicator {
      bottom: 20px;
      font-size: 14px;
    }
  
    .indicator-line {
      width: 40px;
    }
  }
  
 /* sect 2 */
 /* SECTION COMMON */
/* .services-section img, .impact-section img{
  padding: 5% !important;
 } */
 .impact-grid{
  gap: 100px !important;
 }
.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1faa59;
  display: block;
  margin-bottom: 10px;
}

/* ABOUT SECTION */
.about-section {
  background: #ffffff;
  padding: 100px 0;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: 16px;
  /* margin-left:3rem; */
}

/* BADGES */
.badge {
  position: absolute;
  right: 0px;
  background: #19e6b3;
  color: #212529 !important;
  padding: 1.2rem 1rem !important;
  border-radius: 1em !important;
  width: 120px !important;
  font-size: 1em !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

.badge strong {
  font-size: 20px;
  display: block;
}

.badge span {
  font-size: 14px;
  font-weight: 500;
}

.badge-top {
  right: 21%;
  top: 58%;
}

.badge-bottom {
  right: 21%;
  top: 85%;
}

/* ABOUT TEXT */
.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0b3d2e;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #334;
  text-align: justify;
}

/* SERVICES SECTION */
.services-section {
  background: #eef5f0;
  padding: 100px 0;
}

.services-container {
  max-width: 1200px;
  margin:30px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.services-image img {
  width: auto;
  border-radius: 16px;
  max-width:750px;
}

.services-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0b3d2e;
}

.services-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #334;
  padding-right: 5%;
  text-align: justify;
}

/* MOBILE */
@media (max-width: 768px) {

  .about-container,
  .services-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .badge {
    right: 10px;
  }

  .about-section,
  .services-section {
    padding: 60px 20px;
  }
}

/* IMPACT SECTION */
.impact-section {
  background: #ffffff;
  padding: 100px 0 0 0;
}

.impact-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.impact-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.impact-header h2 {
  font-size: 34px;
  color: #0b3d2e;
  margin-bottom: 16px;
}

.impact-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #334;
}

/* GRID */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}

/* CARD */
.impact-card {
  width: 100%;
  /* max-width: 480px; */
}

.impact-card img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}


.impact-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 14px 0px;
  color: #111;
}

/* FOOTER */
.impact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding-top: 12px; */
  border-bottom: 2px solid #49b67a;
  padding-bottom: 25px;
  font-size: 13px;
  color: #3c6e5a;
}

.impact-footer .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* HOVER */
.impact-card:hover .arrow {
  transform: translateX(5px);
}

/* MOBILE */
@media (max-width: 768px) {
  .impact-section {
    padding: 60px 20px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impact-header h2 {
    font-size: 28px;
  }
}

/* PHILOSOPHY */
.philosophy-wrapper {
  background: #ffffff;
  margin: 100px 0px;
}

.philosophy-card {
  max-width: 1200px;
  margin: auto;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  padding: 70px 80px;
  position: relative;
  overflow: hidden;
}

/* overlay */
.philosophy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 20, 0.3);
}

.philosophy-content {
  position: relative;
  max-width: 720px;
  color: #ffffff;
}

.philosophy-content h2 {
  font-size: 32px;
  margin: 12px 0 16px;
}

.philosophy-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* mobile */
@media (max-width: 768px) {
  .philosophy-card {
    padding: 50px 24px;
    margin: 0 20px;
  }

  .philosophy-content h2 {
    font-size: 26px;
  }
}


/* footer */
/* FOOTER BASE */
.site-footer {
  background: #0a2f20;
  color: #cce5d6;
}

/* NEWSLETTER (TOP PART OF FOOTER) */
.footer-newsletter {
  background: #0b3d2e;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h3 {
  color: #ffffff;
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 14px;
  color: #cce5d6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 18px;
  border-radius: 30px;
  border: none;
  outline: none;
  min-width: 260px;
}

.newsletter-form button {
  background: #19e6b3;
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* FOOTER MAIN */
.footer-main {
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 4fr repeat(2, 1fr);
  gap: 40px;
}

.footer-col h4,
.footer-col h5 {
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  font-size: 13px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.footer-icon a{
width: 32px;
height: 32px;
}
.footer-icon a img{
  width: 28px;
height: 28px;
}

/* MOBILE */
@media (max-width: 768px) {
  .services-image img{
    width: 100%;
  }
  .impact-section, .about-section, .services-section {
    padding: 30px 5px;
  }
  .newsletter-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
  .carbon-wrapper, .solutions-wrapper, .approach-wrapper{
    padding: 100px 10px !important;
  }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  .partner-intro, .final-grid, .partner-why,.partner-cards, .why-partner-grid{
    grid-template-columns: 1fr !important;
  }
  .partnership-wrapper, .final-section{
    padding: 100px 10px !important;
  }
  .why-partner-section{
    padding: 0px 10px 80px !important;
  }
  .contact-wrapper{
    grid-template-columns: 1fr !important;
  }
  .contact-wrapper{
    padding: 10px 10px !important;
  }
}


