.hero { position: relative; width: 100%; min-height: 92vh; overflow: hidden; display: flex; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__content { position: relative; z-index: 2; }



.v2 { align-items: flex-end; }
.v2::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.1) 100%); z-index: 1; }
.v2 .hero__content { padding: 0 8% 70px; width: 100%;margin: 0%; }


.v2 h1 { 
  font-size: clamp(3.5rem,8vw,8rem); 
  font-weight: 400; 
  line-height: 0.95; 
  color: #fff; 
  margin-bottom: 18px; 
  letter-spacing: 0.02em; 
  font-family: "Julius Sans One", sans-serif;
    text-align: left;

}


.v2 p { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 480px; margin-bottom: 32px; line-height: 1.7;text-align: left; }
.v2 .btns { display: flex; gap: 14px; flex-wrap: wrap; }
.v2 .b1 { background: #3cbe71; color: #fff; padding: 13px 30px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; }
.v2 .b2 { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; padding: 12px 28px; border-radius: 4px; text-decoration: none; font-weight: 400; font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; }

html, body {
  margin: 0;
  padding: 0;
}


@media (max-width: 768px) {
  .v2 { align-items: flex-end; }
  
  .v2 .hero__content {
    padding: 0 24px 50px;
    width: 100%;
    box-sizing: border-box;
  }

  .v2 h1 {
    font-size: clamp(2.8rem, 11vw, 4rem);
  }

  .v2 p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .v2 .btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .v2 .b1,
  .v2 .b2 {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .v5-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .v5-stat { border-right: 1px solid rgba(255,255,255,0.15); }
  .v5-stat:nth-child(2n) { border-right: none; }
}




.mission-split {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #fff;
    max-width: 100%;      /* ← add */
  overflow: hidden;
}

.mission-split__image {
  flex: 0 0 50%;
  overflow: hidden;
}

.mission-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-split__text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
  background: #fff;
    max-width: 50%; 
     box-sizing: border-box;
}

.mission-split__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  text-align: left;
}

.mission-split__line {
  width: 100%;
  max-width: 260px;
  height: 3px;
  background: #2a7d2e;
  margin-bottom: 28px;
}

.mission-split__text p {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: #444;
  line-height: 1.85;
  text-align: left;
  max-width: 520px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .mission-split {
    flex-direction: column;
  }

  .mission-split__image {
    flex: 0 0 auto;
    width: 100%;
    height: 280px;
    max-width: 100%;
  }

  .mission-split__text {
    flex: 0 0 auto;
    width: 100%;
    padding: 40px 24px;
    box-sizing: border-box;
    max-width: 100%;
  }

  .mission-split__text h2 {
    font-size: 1.8rem;
  }

  .mission-split__line {
    max-width: 180px;
  }

  .mission-split__text p {
    max-width: 100%;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .mission-split__image {
    height: 220px;
  }

  .mission-split__text {
    padding: 30px 20px;
  }
}









body{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
  }
  
  header {
  position: fixed;       /* Fix it to the viewport */
  top: 0;                /* Stick to the top */
  left: 0;
  width: 100%;           /* Full width */
  background-color: #3cbe71; /* Add background so it doesn’t overlap content */
  z-index: 1000;         /* Keep it above other elements */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: nice subtle shadow */
  }
  
  main {
  margin-top: 0;
  }
  
  header .container {
    display: flex;
    justify-content: space-between; /* logo left, nav right */
    align-items: center;            /* vertically center both */
  }
  
  /* Logo styling */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo image and text */
  }
  .logo h1{
    font-family: "Julius Sans One", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
  }
    .logo-link {
  text-decoration: none;
  color: inherit; /* keeps your original text color */
}

.logo-link h1 {
  margin: 0; /* prevents spacing issues */
}
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  ul li a {
    display: block;
    color: rgb(0, 0, 0);
    padding: 14px 16px;
    text-decoration: none;
  }
  
  ul li a:hover {
    background-color:white;
  }
  
  @media (max-width: 768px) {
    header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav ul {
      flex-direction: column;
      gap: 15px;
      margin-top: 10px;
    }
}

/* Hide hamburger on large screens */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  /* Small screens */
  @media (max-width: 768px) {
    /* Show hamburger */
    .hamburger {
      display: block;
    }
  
    /* Hide nav by default */
    nav {
      width: 100%;
      display: none;
    }
  
    /* When active (JS toggles class) */
    nav.active {
      display: block;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      width: 100%;
    }
  
    nav ul li a {
      padding: 10px;
      background: #ffffff50;
      color: white;
    }
  
    nav ul li a:hover {
      background: white;
      color: black;
    }
  
    header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  h1{
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 90px;
  }
  
  p{
    text-align: center;
    font-size: 25px;
  }

  /* .purpose {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
} */

  .purpose-text h4{
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-align: center;
  }

  .purpose-hand{
      display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  }

  
  
  .purpose h2{
    font-family: "Julius Sans One", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
  }


/*Progress*/

.progress-section{
  padding: 40px 10%;
}

.progress{
  width: 100%;
}

.progress h1{
  font-family: "Julius Sans One", sans-serif;
  font-weight: 300;
  text-align:left;
  font-size: 2rem;
  color: rgb(0, 0, 0);
  margin-top: 0%;
}
.progress p{
  color: rgb(0, 0, 0);
  font-size: 1rem;
  /* margin-bottom: 10%; */
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}


/*Measure*/

.measure-grid {
  display: grid;
  grid-template-columns: 1fr;           /* 1 column */
  grid-template-rows: repeat(4, auto);  /* 4 rows */
  gap: 1px;
  margin-top: 60px;
  

}
/* Card styling */
.measure-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  
}


/* Add breathing room inside text */
.measure-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.measure-card p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}

.measure-card a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 600;
}


.measure-card a:hover {
  text-decoration: underline;
}

/* Hover effects */
.measure-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


/* Responsiveness */
@media (max-width: 900px) {
  .progress-section {
    padding: 40px 30px;
  }
  .measure-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  .progress-section {
    padding: 30px 20px;
  }
  .measure-grid {
    grid-template-columns: 1fr;
  }
}

.card1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card2 {
  padding: 10px;
  width: 100%;
  margin-left: 50px;
}
/* .card1, .card2, .card3, .card4 {
  padding: 10px;
} */

.card1, .card2, .card3, .card4, h3 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-size: 30px;
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card1, .card2, .card3, .card4, h3 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-size: 30px;
}

.card1, .card2, .card3, .card4 p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}

.measure-card-content{
  padding: 10px;
}

.measure-card-content h2{
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-align: left;
}

.measure-card-alignment {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /* keeps them top-aligned */
  gap: 1px; /* space between progress and measure-grid */
  width: 100%;
  flex-wrap: wrap; /* makes it responsive */
}

.progress {
  flex: 1; /* takes available space */
  min-width: 300px; /* prevents squishing on small screens */
}



@media (max-width: 768px) {
  .measure-card-alignment,.measure-grid {
    flex-direction: column;
  }
}

.progress {
flex: 0 0 38%;
}

.measure-grid {
flex: 0 0 60%;
}

.measure-subheading{
color: rgb(0, 0, 0);
font-weight: 600;
font-size: 0.9rem;
text-align: left;
margin-top: 20%;
}


  .result-text h2{
    font-family: "Julius Sans One", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
  }

  .result-text h4{
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-align: center;
  }


  /* impact*/

.impact-section {

  padding: 40px 10%;
  background-color: #f9f9f9;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* grid-template-rows: auto auto; */
  gap: 30px;
}

/* Card positioning */
.card3 {
  grid-row: span 2; /* Spans vertically */
}

.card4 {
  grid-column: span 2; /* Spans horizontally */
}

/* Card styling */
.impact-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.card2{
  width: 90%;
}


/* Add breathing room inside text */
.impact-card h3 {
  margin-bottom: 10px;
}

.impact-card p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}

.impact-card a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 600;
}
.impact-card1 a {
  color: #0078d4;
  text-decoration: none;
  font-weight: 600;
  font: 0.5em sans-serif;
}

.impact-card a:hover {
  text-decoration: underline;
}

/* Hover effects */
.impact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.impact-card1:hover {
  transform: translateY(-3px); /* Hover effect */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Responsiveness */
@media (max-width: 900px) {
  .impact-section {
    padding: 40px 30px;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .impact-section {
    padding: 30px 20px;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.card1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card1-content {
  padding: 10px;
  width: 70%;
}
/* .card1, .card2, .card3, .card4 {
  padding: 10px;
} */

.card1, .card2, .card3, .card4, h3 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-size: 30px;
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card1, .card2, .card3, .card4, h3 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-size: 30px;
}

.card1, .card2, .card3, .card4 p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}

.card1-content h3 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  /* margin-top: 0%;
  margin-bottom: 5%; */
}

.impact-subheading{
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 2%;
  font-size: 0.9rem;
  text-align: left;
  margin-top: 25%;
}
.impact-card-content{
  padding: 10px;
}

/* footer*/
footer {
  background-color: #d9d9d9;
  padding: 40px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* ===== Left Section ===== */
.footer-left {
  flex: 1 1 300px;
  max-width: 350px;
}

.footer-left h2 {
  font-family: 'Cursive';
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 5px 0;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}

.footer-left a {
  color: #333;
  text-decoration: none;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.footer-img img {
  margin-top: 20px;
  width: 100%;
  max-width: 250px;
  border-radius: 5px;
}

/* ===== Right Section ===== */
.footer-links {
  display: flex;               
  align-items: flex-start;    
  justify-content: flex-start; 
  gap: 60px;                   
}


.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;         
}

.fl1 li a{
  display: block;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}




/* ===== Bottom Bar ===== */
.footer-bottom {
  background-color: #d9d9d9;
  border-top: 1px solid #bcbcbc;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

.footer-bottom a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

/* GLOBAL TEXT RESPONSIVENESS */
@media (max-width: 768px) {
  h1 {
    font-size: 45px !important;
  }

  p {
    font-size: 18px !important;
  }


@media (max-width: 480px) {
  h1 {
    font-size: 32px !important;
    line-height: 1.2;
  }

  p {
    font-size: 16px !important;
  }

}

/* DESKTOP (unchanged) — 3 columns */
.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; /* keep original 3-column layout */
}

/* TABLET & MOBILE — stack vertically */
@media (max-width: 900px) {
  .cards-container {
    flex-direction: column;   /* stack all cards */
    flex-wrap: nowrap;
  }

  .card1,
  .card {
    width: 100%;              /* full width */
    flex-direction: column;   /* put image above text */
  }

  .card1-image,
  .card-image {
    width: 100%;
    height: 220px;            /* uniform height */
  }

  .card1-content,
  .card-content {
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  /* Align buttons center */
  .card1-content .btn,
  .card-content .btn {
    display: inline-block;
    margin: 0 auto;
  }
}

/* EXTRA SMALL SCREENS */
@media (max-width: 480px) {
  .card1-image,
  .card-image {
    height: 180px;
  }
}

/*impact grid*/

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .card3,
  .card4 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .impact-card {
    flex-direction: column;
  }

    .impact-card {
    margin: 0;
  }


  .impact-card img {
    height: 250px;
  }
}


/*progress section*/
@media (max-width: 900px) {
  .measure-card-alignment {
    flex-direction: column;
    gap: 10px;
  }

  .measure-grid {
    grid-template-columns: 1fr;
    padding: 5px;
    margin: 0%;
  }
  .measure-card{
    margin: 0;
  }

  .progress {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .measure-grid {
    grid-template-columns: 1fr;
  }
}

/*change section*/
@media (max-width: 900px) {
  .change-card1 {
    flex-direction: column;
    height: auto;
  }
  

  .change-card1-image {
    width: 100%;
    height: 250px;
  }

  .change-card1-content {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .change-card1-content .hero-buttons {
    justify-content: center;
  }
}
}

