.hero-fullbleed {
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* The background image fills the whole section */
.hero-fullbleed__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

/* Soft gradient from left so text stays readable */
.hero-fullbleed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.72) 38%,
        rgba(255, 255, 255, 0.10) 65%,
        rgba(255, 255, 255, 0.0) 100%
    );
    z-index: 1;
}

/* Text content sits above overlay */
.hero-fullbleed__content {
    position: relative;
    z-index: 2;
    padding: 100px 8% 80px;
    max-width: 600px;
}

.hero-fullbleed__content h1 {
    font-family: "Julius Sans One", sans-serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    text-align: left;
    color: #111;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.hero-fullbleed__content p {
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: #333;
    text-align: left;
    max-width: 420px;
    margin: 0 0 36px 0;
    line-height: 1.75;
}

.hero-fullbleed__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-fullbleed__buttons .hbtn-primary {
    background-color: #2a7d2e;
    color: #fff;
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.hero-fullbleed__buttons .hbtn-primary:hover {
    background-color: #1f5e22;
    transform: translateY(-1px);
}

.hero-fullbleed__buttons .hbtn-outline {
    background-color: transparent;
    color: #111;
    padding: 11px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #111;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    display: inline-block;
}

.hero-fullbleed__buttons .hbtn-outline:hover {
    background-color: #111;
    color: #fff;
    transform: translateY(-1px);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 900px) {
    .hero-fullbleed {
        min-height: 70vh;
    }
    .hero-fullbleed::after {
        background: linear-gradient(
            to right,
            rgba(255,255,255,0.92) 0%,
            rgba(255,255,255,0.75) 50%,
            rgba(255,255,255,0.15) 100%
        );
    }
}

@media (max-width: 768px) {
    .hero-fullbleed {
        min-height: 100svh;
        align-items: flex-end;
    }

    .hero-fullbleed::after {
        background: linear-gradient(
            to top,
            rgba(255,255,255,0.97) 0%,
            rgba(255,255,255,0.90) 45%,
            rgba(255,255,255,0.30) 70%,
            rgba(255,255,255,0.0) 100%
        );
    }

    .hero-fullbleed__content {
        padding: 0 24px 50px;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
    }

    .hero-fullbleed__content h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-fullbleed__content p {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-fullbleed__buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-fullbleed__buttons .hbtn-primary,
    .hero-fullbleed__buttons .hbtn-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .hero-fullbleed {
        min-height: 100svh;
    }
}


/* ===================== MISSION SPLIT ===================== */
.mission-split {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #fff;
}

.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;
}

.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;
  }

  .mission-split__text {
    flex: 0 0 auto;
    width: 100%;
    padding: 40px 24px;
    box-sizing: border-box;
  }

  .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;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #3cbe71;
  overflow-x: hidden;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  max-width: 100%;
  padding: 10px 15px;

  box-sizing: border-box;
  min-width: 0; /* IMPORTANT */
}
.logo h1 {
  font-size: 18px;
  white-space: nowrap;
}
  .logo-link {
  text-decoration: none;
  color: inherit; /* keeps your original text color */
}

.logo-link h1 {
  margin: 0; /* prevents spacing issues */
}

nav ul {
  display: flex;
  flex-wrap: wrap;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
/* header {
position: fixed; 
top: 0;                
left: 0;
width: 100%;     
background-color: #3cbe71;
z-index: 1000;         
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
overflow-x: hidden;

}  */

/* main {
margin-top: 200px;
} */

/* header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;            
    max-width: 100%;

} */

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo image and text */
}
.logo img{
  height: 100px;   /* control size */
  width: auto;    /* keep proportions */
  object-fit: contain;
}
.logo h1{
  font-family: "Julius Sans One", sans-serif;
  font-weight: 700;
  text-align:;
  font-size: 20px;
  color: white;
}

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;
  }
  .card, .card1 {
    width: 100%;
  }
}


/* 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;
}

.button1 {
  background-color:blue;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 16px;
  
}
.button {
  background-color:white;
  color: black;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border: 1px solid black;
  border-radius: 16px;
}

.button1:hover, .button:hover {
  background-color: #3cb371;
}

.btn-container{
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically (optional) */
  gap: 15px; 
}

/* .hero-img{
  margin-top: 100px;
  text-align: center;
  padding: 50px;
}

.hero-img img{
    width: 83%;
    height: auto;
  border-radius: 20px;
} */
.hero-img img {
  width: 100%;     /* fills container */
  height: auto;    /* keeps aspect ratio */
  display: block;  /* removes extra space below image */
  border-radius:20px ;

}


.hero-img {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  
}
@media (max-width: 768px) {
  .hero-img img {
    height: 200px; /* smaller for phones */
  }
}


.hero-section {
  padding: 60px 10%;
  background-color: #fff;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* responsive for small screens */
}


.hero-image {
  flex: 1 1 45%;
    width: 100%;
  /* height: 250px;        same feel as others */
  overflow: hidden;
  border-radius: 12px;
}
.hero-content {
  flex: 1 1 50%;
}




.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 420px;
}
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;   /* stack image + text */
    text-align: center;
  }

  .hero-image,
  .hero-content {
    flex: 1 1 100%;           /* full width */
  }

  .hero-image img {
    max-height: 250px;        /* reduce height on phone */
  }

  .hero-buttons {
    justify-content: center;  /* center buttons */
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 40px 20px; /* reduce side padding */
  }

  .hero-content h1 {
    font-size: 24px; /* prevent oversized text */
  }

  .hero-content p {
    font-size: 14px;
  }
}



.subheading {
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-align: left;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: left;
}

.description {
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: left;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display:block
}

.hero-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  display: block;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2a7d2e; /* green check */
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
}

.btn.primary {
  background-color: #2a7d2e;
  color: #fff;
}

.btn.secondary {
  color: #2a7d2e;
  border: 1px solid #2a7d2e;
}

.skills h1{
  font-family: "Julius Sans One", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 50px;
}

.cards-section {
  padding: 40px 10%;
  background-color: #f9f9f9;
}

.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Ensures responsive stacking on smaller screens */
}

.card1 {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 55%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: transform 0.3s ease;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 20%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover, .card1:hover {
  transform: translateY(-10px); /* Hover effect */
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 10px;
  width: 60%;
}
.card1-content {
  padding: 10px;
  width: 60%;
}

.card1-content h3 {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-top: 100px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.card1h3{
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-top: 100px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}
.card-content h3 {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-top: 50px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.card-content h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-size: 30px;
}
.card1-content h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-size: 30px;
}

.card-content 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 p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.btn.primary {
  background-color: #2a7d2e;
  color: #fff;
}

@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}

/* impact*/

.impact-section {

  padding: 40px 10%;
  background-color: #f9f9f9;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* 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;
}
.impact-card1 {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  display: flex;
  width:100%;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* 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;
}

/*PARTNERS*/

.partners-carousel h3{
  font-family: "Julius Sans One", sans-serif;
  font-weight: 300;
  text-align:center;
  font-size: 20px;
  color: rgb(0, 0, 0);
  margin-top: 5%;
}
.partners-carousel {
  background: #fff;
  padding: 40px 0;
  text-align: center;
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.1);
}

/*Progress*/

.progress-section{
  padding: 40px 10%;
}


.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: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

/* 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;
}

.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;
}

.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 */
}

.measure-grid {
  flex: 1; /* takes equal space as progress */
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@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%;
}

/*Change*/
.change-section {
  padding: 40px 10%;
  background-color: #f9f9f9;
}

.cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Ensures responsive stacking on smaller screens */
}

.change-card1 {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-height:500px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: transform 0.3s ease;
}

.change-card1:hover {
  transform: translateY(-10px); /* Hover effect */
}

.change-card1-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.change-card1-image{
  width: 50%;
  height: 100%;
}

.change-card1-content {
  padding: 50px;
  margin-top: 5%;
  width: 50%;
}

.change-card1-content h2 {
  font-family: "Julius Sans One", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  text-align: left;
  font-size: 30px;
}

.change-card1-content p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: left;
}

/* 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;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 30px 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-left, 
  .footer-links {
    max-width: 100%;
  }

  .footer-img img {
    width: 100%;
    max-width: none;
  }
  .footer-left img{
        width: 100%;
    max-width: none;
  }

  .footer-bottom {
    font-size: 12px;
  }
}



/* GLOBAL TEXT RESPONSIVENESS */
@media (max-width: 768px) {
  h1 {
    font-size: 45px !important;
  }

  p {
    font-size: 18px !important;
  }

  main {
    margin-top: 150px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px !important;
    line-height: 1.2;
  }

  p {
    font-size: 16px !important;
  }

  main {
    margin-top: 0;
  }
}

/*HERO SECTION*/
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1,
  .hero-content p,
  .hero-list,
  .hero-buttons {
    text-align: center !important;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    max-height: 260px;
  }
}



/* 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 */
      height: auto;        /* allow content to expand */
  overflow: hidden;    /* prevent weird overflow */
  border-radius: 12px;
  }

  .card1-image,
  .card-image {
    width: 100%;
    height: 220px;            /* uniform height */

  height: 100%;
  object-fit: cover;   /* prevents distortion + fills space */
  display: block;
  }

  .card-content {
    width: 100%;
    text-align: center;
    padding: 20px;
  }
  .card1-content {
  padding: 20px;       /* this adds space on the left */
}

  .card1-content h2,
.card-content h2 {
  font-size: 20px;
  line-height: 1.3;
}

  
  .card1h3 {
    margin-top: 20px; /* mobile fix */
    margin: 0;
  }

.card1-content p,
.card-content p {
  font-size: 14px;
}

  /* 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-card1 {
    flex-direction: column;
  }

  .impact-card1 img {
    height: 250px;
  }
}


/*progress section*/
@media (max-width: 900px) {
  .measure-card-alignment {
    flex-direction: column;
    gap: 20px;
  }

  .measure-grid {
    grid-template-columns: 1fr;
  }

  .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: 100%;
  }

  .change-card1-content {
    width: 100%;
    margin-top: 20px;
    padding: 5px;
    text-align: left;
  }

    .change-card1-content h2{
  font-size: 15px;
  line-height: 1.3;
}
.change-card1-content p{
  font-size: 10px;
}

  .change-card1-content .hero-buttons {
    justify-content: center;
  }
}


/*footer*/
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }

  footer ul {
    width: 100%;
  }
}





