/* Navbar */
/* ---------------- Base Navbar ---------------- */
.navbar {
  background: transparent;
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Navbar brand */
.navbar-brand img {
  height: 60px;
  width: auto;
  border: none;
}

/* Navbar links */
.navbar-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.navbar-nav .nav-link {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #5e8cc6;
}

/* Navbar toggler icon */
.navbar-toggler {
  border: none;
  z-index: 20;
}

/* Hamburger icon default */
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ---------------- Mobile Adjustments ---------------- */
@media (max-width: 991px) {
  .navbar {
    padding: 15px 25px;
  }

  /* Collapse menu styles */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    padding: 150px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 15;
  }

  /* Show menu when active */
  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-nav {
    flex-direction: column;
    margin-left: 0;
    gap: 20px;
    text-align: right;
  }

  .navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 700;
  }

  /* Change toggler icon when menu open */
  .navbar-toggler.close-icon .navbar-toggler-icon {
    background-image: url("./assets/index/close-icon.png"); /* your close icon */
  }

  /* Optional dark overlay for the rest of the page */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 280px); /* exclude menu width */
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    z-index: 10;
  }

  /* Blur the rest of the page content */
  body.menu-open .page-content {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
    overflow: hidden;
  }

  /* Disable scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}
/* Navbar Toggler Icons */
.navbar-toggler-icon {
  display: none; /* hide default Bootstrap hamburger */
}

.navbar-toggler i {
  font-size: 28px;
}

/* Overlay blur effect for page content */
.page-content.blurred {
  filter: blur(5px);
  pointer-events: none; /* prevent interaction while menu is open */
  transition: filter 0.3s ease;
}
.navbar-toggler {
  border: none; /* remove border */
  outline: none; /* remove outline on click/focus */
  box-shadow: none; /* remove any shadow */
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Hero Section */
/* .hero-section {
  position: relative;
  background: url("../assets/index/Header Pic.png") no-repeat center
    center/cover;
  height: max-content;
  display: flex;
  align-items: center;
  color: #000;
  padding-bottom: 80px;
}

.hero-section .container {
  margin-top: 90px;
}

.hero-content {
  max-width: 570px;
  margin-top: 100px;
  font-weight: 500;
  font-size: 25px;
  line-height: 150%;
  font-family: "Quicksand", medium;
}

.hero-title {
  width: 100% !important;
  font-size: 54px;
  font-weight: 600;
  line-height: 125%;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 18px;
  margin-top: 100px;
}

.hero-title em {
  font-weight: 400;
  font-family: "Courgette", sans-serif;
}

.hero-subtext2 {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 33px;
  line-height: 150%;
  font-style: normal;
  margin-bottom: 4%;
} */

/* CTA Button */
/* .hero-cta {
  background: #5e8cc6;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 30px;
  font-size: 24px;
  line-height: 120%;
  font-family: "Quicksand";
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #4a78b0;
  transform: translateY(-2px);
}

.hero-cta i {
  margin-left: 10px;
  font-size: 1.2rem;
  background: #6fb0ff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
} */

/* --- Responsive --- */

/* Medium Screens (Tablets) */
/* @media (max-width: 991px) {
  .hero-title {
    font-size: 42px;
    line-height: 130%;
    margin-top: 60px;
  }

  .hero-content {
    font-size: 20px;
  }

  .hero-cta {
    padding: 12px 28px;
    font-size: 20px;
  }

  .hero-cta i {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
} */
/* @media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 60px 20px;
    display: flex;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 50px;
  }

  .hero-title {
    font-size: 36px !important;
  }

  .hero-title em {
    font-size: 36px;
  }

  .hero-content {
    font-size: 20px;
    line-height: 1.5;
    width: 60% !important;
  }

  .hero-subtext {
    font-size: 20px;
    margin-top: 15px;
  }

  .hero-cta {
    padding: 12px 28px;
    margin-top: 20px;
  }

  .hero-cta i {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    padding: 0.5% 2%;
  }
} */

/* Small Screens (Mobiles) */
/* @media (max-width: 576px) {
  .hero-section {
    padding: 60px 20px 80px;
    background-position: top;
  }

  .hero-content {
    margin-top: 60px;
    text-align: left;
  }

  .hero-title {
    font-size: 32px;
    line-height: 130%;
    margin-top: 50px;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 12px 12px;
    border-radius: 40px;
  }

  .hero-cta i {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
} */
/* @media (max-width: 425px) {
  .hero-title {
    font-size: 25px !important;
  }

  .hero-title em {
    font-size: 25px;
  }

  .hero-content {
    font-size: 20px;
    line-height: 1.5;
    width: 70% !important;
  }
  .hero-subtext {
    font-size: 14px;
  }

  .hero-cta {
    font-size: 14px !important;
    width: 100%;
  }
} */
/* @media (min-width: 420px) and (max-width: 500px) {
  .hero-section {
    .container {
      margin-top: 0px;
    }
  }
} */


/* mission and vision */

.mission-and-vision {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 50px;
}

/* Title */
.mv-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 20px;
}

.mv-title1 {
  font-size: 55px;
  font-family: "Quicksand";
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  z-index: 100;
}

.mv-title1 span {
  font-size: 55px;
  font-weight: 400;
  font-family: "Courgette";
  color: var(--color-turquoise);
}

/* Decorative images */
.mv-title-right-img {
  position: absolute;
  left: 92%;
  top: 50%;
  transform: translateY(-50%);
}
.mv-title-left-img {
  position: absolute;
  right: 87%;
  top: 50%;
  transform: translateY(-50%);
}

/* Cards container */
.mv-content {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap; /* allows wrapping on small screens */
  justify-content: space-between;
  gap: 30px; /* space between cards */
}

/* Individual card */
.mv-content-1 {
  flex: 1 1 45%; /* takes up ~45% width, allows wrap */
  max-width: 620px;
  background-color: var(--color-shamrock);
  display: flex;
  flex-direction: column;
  border-radius: 48px;
  z-index: 100;
  transition: transform 0.3s ease;
}

/* Second card color */
.mv-content-1:nth-child(2) {
  background-color: var(--color-viking);
}

/* Card image */
.mv-content-1-top {
  overflow: hidden;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
}

.mv-content-1-top-img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.mv-content-1:hover .mv-content-1-top-img {
  transform: scale(1.08);
}

/* Card text */
.mv-content-1-bottom {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mv-content-1-bottom-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 150%;
  font-family: "Quicksand";
  margin-bottom: 15px;
}

.mv-content-1-bottom-content {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  font-family: "Quicksand";
}

/* Hover lift effect */
.mv-content-1:hover {
  transform: translateY(-5px);
}

/* --- Responsive --- */
@media (max-width: 1300px) {
  .mv-content-1 {
    flex: 1 1 48%;
  }
}
@media (min-width: 1300px) and (max-width: 1399px) {
  .mv-content {
    justify-content: center;
    gap: 40px; /* adds space between cards */
    flex-wrap: wrap; /* allows wrapping if needed */
  }

  .mv-content-1 {
    width: 560px; /* slightly smaller to fit nicely */
  }
}
@media (max-width: 1024px) {
  .mv-title-left-img {
    right: 87%;
    width: 140px;
  }
  .mv-title-right-img {
    left: 87%;
  }
  .mv-content {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 60px;
  }

  .mv-content-1 {
    width: 90%;
    max-width: 600px;
  }

  .mv-content-1-top-img {
    width: 100%;
    height: auto;
  }

  .mv-content-1-bottom-title {
    font-size: 30px;
  }
  .mv-content-1-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mv-content-1-bottom-content {
    font-size: 15px;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .mv-content-1 {
    flex: 1 1 100%; /* stack cards vertically */
  }

  /* .mv-title-right-img,
  .mv-title-left-img {
    display: none; 
  } */

  .mv-title1 {
    font-size: 40px;
  }

  .mv-content-1-bottom-title {
    font-size: 28px;
  }

  .mv-content-1-bottom-content {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  /* our mission vision  */
  .mv-title1 {
    font-size: 36px; /* smaller main title */
    line-height: 1.2;
  }

  .mv-title1 span {
    font-size: 36px;
  }

  /* Adjust the side images */
  .mv-title-right-img,
  .mv-title-left-img {
    width: 100px;
    height: auto;
    left: auto;
    right: auto;
    top: 20;
    position: absolute;
  }

  .mv-title-right-img {
    right: 0%;
  }

  .mv-title-left-img {
    left: 0%;
  }

  .mv-content {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }

  .mv-content-1 {
    width: 100%;
    max-width: 620px;
  }

  .mv-content-1-bottom-title {
    font-size: 24px;
  }

  .mv-content-1-bottom-content {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .mv-title1 {
    font-size: 32px;
  }

  .mv-content-1-bottom-title {
    font-size: 24px;
  }

  .mv-content-1-bottom-content {
    font-size: 13px;
  }
}
@media (max-width: 425px) {

  .mv-title1 {
    font-size: 24px; /* smaller main title */
    line-height: 1.2;
  }

  .mv-title1 span {
    font-size: 24px;
  }
  .mv-title-right-img,
  .mv-title-left-img {
    width: 70px;
  }

  .mv-content-1-bottom-title {
    font-size: 18px;
  }
  .mv-content-1-bottom-content {
    font-size: 14px;
  }
}
@media (min-width: 420px) and (max-width: 500px) {
  .mv-title-left-img,
  .mv-title-right-img {
    top: 80px !important;
    width: 80px;
  }
}
@media (max-width: 375px) {
  .mv-title-left-img,
  .mv-title-right-img {
    width: 60px;
    top: 60px;
  }
}

/* our programs start */

.our-programs {
  position: relative;
  margin-bottom: 60px;
}

.our-programs .container {
  position: relative;
}

/* --- Title Section --- */
.our-programs-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  position: relative;
}

.our-programs-title1 {
  font-size: 55px;
  font-family: "Quicksand";
  font-weight: 700;
  line-height: 120%;
  z-index: 500;
}

.our-programs-title1 span {
  font-size: 55px;
  font-weight: 400;
  font-family: "Courgette";
  color: var(--color-shamrock);
}

.our-programs-title-img1 {
  width: 100%;
  display: block;
  position: absolute;
  top: 20%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.our-programs-title-img2 {
  position: absolute;
  left: 87%;
}

/* --- Programs Grid --- */
.our-programs-content {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: stretch; /* ✅ Ensures equal card height */
}

.our-program-content-1 {
  flex: 1 1 calc(25% - 25px);
  max-width: 310px;
  border-radius: 10px;
  z-index: 10;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column; /* stacks image + text */
}

.our-program-content-1:hover {
  transform: translateY(-5px);
}

/* --- Top Image Section --- */
.our-program-content-top {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.our-program-content-top-img {
  width: 100%;
  transition: transform 0.5s ease;
}

/* Zoom effect on hover */
.our-program-content-1:hover .our-program-content-top-img {
  transform: scale(1.08);
}

/* --- Bottom Content --- */
.our-program-content-bottom {
  padding: 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-shamrock);
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  flex-grow: 1; /* ✅ makes height even */
  display: flex;
  flex-direction: column;
/*   justify-content: space-between;  */
}

.our-program-content-title1 {
  font-size: 19px;
  font-weight: 700;
  line-height: 150%;
  font-family: "Quicksand";
  margin-bottom: 5px;
}

.our-program-content-title2 {
  font-size: 13px;
  font-weight: 700;
  line-height: 150%;
  font-family: "Quicksand";
  margin-bottom: 15px;
  min-height: 78px;
}

/* --- Button --- */
.our-program-content-btn {
  width: max-content;
  padding: 16px 24px;
  border-radius: 30px;
  background-color: var(--color-shamrock);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  font-family: "Quicksand";
  text-decoration: none;
  color: #000000;
  display: inline-block;
  transition: background-color 0.4s ease, transform 0.3s ease;
}

/* Lift + fade on hover */
.our-program-content-btn:hover {
  transform: translateY(-3px);
}

/* --- Alternate Colors --- */
.our-program-content-1:nth-child(2) .our-program-content-bottom {
  border-color: var(--color-sulu);
}
.our-program-content-1:nth-child(2) .our-program-content-btn {
  background-color: var(--color-sulu);
}
.our-program-content-1:nth-child(2) .our-program-content-btn:hover {
  background-color: var(--color-sulu);
}

.our-program-content-1:nth-child(3) .our-program-content-bottom {
  border-color: var(--color-turquoise);
}
.our-program-content-1:nth-child(3) .our-program-content-btn {
  background-color: var(--color-turquoise);
}
.our-program-content-1:nth-child(3) .our-program-content-btn:hover {
  background-color: #3bbfc2;
}

.our-program-content-1:nth-child(4) .our-program-content-bottom {
  border-color: #57ace5;
}
.our-program-content-1:nth-child(4) .our-program-content-btn {
  background-color: #57ace5;
}
.our-program-content-1:nth-child(4) .our-program-content-btn:hover {
  background-color: #499cd6;
}

/* --- Responsive --- */

@media (max-width:1400px){
  .our-programs-title-img1{
    top: 8%;
  }
}
@media (max-width: 1024px) {
  /* our programs start */

  .our-programs-title-img1 {
    top: 40px;
  }
  .our-programs-content {
    justify-content: center;
    gap: 50px;
  }
  .our-program-content-1 {
    width: 45%; /* 2 per row */
    max-width: 400px;
  }
  .our-program-content-title2 {
    min-height: 118px;
  }
  .our-program-content-1:nth-child(3) .our-program-content-title2 {
    min-height: 147px;
  }
}
@media (max-width: 992px) {
  .our-programs-title-img2 {
    width: 140px;
    left: 85%;
  }
}

@media (max-width: 768px) {
  .our-programs-title1 {
    font-size: 36px;
  }
  .our-programs-title1 span {
    font-size: 36px;
  }
  .our-program-content-1 {
    max-width: 100%;
  }
    .our-programs-title1 {
    font-size: 36px;
  }
  .our-programs-title1 span {
    font-size: 36px;
  }
  .our-programs-title-img1 {
    top: 50px;
  }
  .our-programs-title-img2 {
    width: 110px;
  }

  .our-programs-content {
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
  }

  .our-program-content-1 {
    width: 100%;
    margin-bottom: 0;
  }

  /* Adjust card content fonts */
  .our-program-content-title1 {
    font-size: 16px;
  }
  .our-program-content-title2 {
    font-size: 14px;
    min-height: auto !important;
    /* max-height: 110px !important; */
  }
  .our-program-content-btn {
    font-size: 14px;
    padding: 12px;
  }
}
@media (max-width: 425px) {
  .navbar {
    padding: 20px 20px;
  }
  .our-programs-title1 {
    font-size: 24px;
  }
  .our-programs-title1 span {
    font-size: 24px;
  }
  .our-programs-title-img1 {
    top: -90px;
  }
  .our-programs-title-img2 {
    width: 70px;
    left: 85%;
  }
}
@media (max-width: 375px) {
  .our-programs-title-img2 {
    left: 80%;
  }
}
@media (min-width:500px) and (max-width:575px){
    .our-programs-title-img2 {
    width: 80px;
    left: 80%;
  }
}

@media (min-width: 420px) and (max-width: 500px) {

  .our-programs-title-img2 {
    width: 80px;
    left: 80%;
  }
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .our-programs-content {
    justify-content: center;
    gap: 25px;
  }

  .our-program-content-1 {
    flex: 1 1 calc(25% - 25px); /* four per row */
    max-width: 310px; /* keeps all same width */
  }

  .our-program-content-title2 {
    min-height: 90px; /* keeps text heights balanced */
  }

  .our-programs-title-img1 {
    top: 7%;
  }

  .our-programs-title-img2 {
    width: 150px;
    left: 88%;
  }
}

/* our impact */

/* --- Our Impact Section --- */
/* ---------------- Our Impact Section ---------------- */
.our-impact {
  margin-bottom: 150px;
}

.our-impact-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.our-impact-title1 {
  font-size: 55px;
  font-family: "Quicksand";
  font-weight: 700;
  line-height: 120%;
  z-index: 500;
}

.our-impact-title1 span {
  font-size: 55px;
  font-weight: 400;
  font-family: "Courgette";
  color: var(--color-sulu);
}

.our-impact-title2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  font-family: "Quicksand";
  margin-top: 15px;
}

.our-impact-title-img {
  position: absolute;
  left: 40%; /* start from center */
  transform: translateX(-100%) translateX(-50px); /* move image left by 50px from title */
  top: 0%; /* vertically center relative to title */
  transform-origin: left center;
  z-index: 0;
}

/* Grid container */
.our-impact-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* auto-fit cards */
  justify-items: center; /* center each card */
  gap: 30px; /* controls both horizontal and vertical spacing */
  width: 100%;
}

/* Each Card */
.our-impact-content-main {
  position: relative;
  width: 100%;
  max-width: 375px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-impact-content-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image inside card */
.our-impact-content-1 {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.our-impact-content-1-img1 {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.our-impact-content-main:hover .our-impact-content-1-img1 {
  transform: scale(1.08);
}

/* Bottom Info Box */
.our-impact-content-bottom {
  position: absolute;
  width: 225px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-turquoise);
  min-height: 130px;
  left: 50%;
  transform: translateX(-50%);
  top: 140px;
}

.our-impact-content-bottom-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 120%;
  font-family: "Quicksand";
  margin-top: 50px;
  margin-bottom: 10px;
}

.our-impact-content-bottom-title2 {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  font-family: "Quicksand";
  width: 60%;
  text-align: center;
}

/* Icon Circle */
.our-impact-content-icon {
  width: 60px;
  height: 60px;
  background-color: #57ace5;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Color overrides for each card */
.our-impact-content-main:nth-child(2) .our-impact-content-bottom {
  background-color: var(--color-sulu);
}
.our-impact-content-main:nth-child(2) .our-impact-content-icon {
  background-color: var(--color-shamrock);
}
.our-impact-content-main:nth-child(3) .our-impact-content-bottom {
  background-color: var(--color-shamrock);
}
.our-impact-content-main:nth-child(3) .our-impact-content-icon {
  background-color: var(--color-sulu);
}

/* ---------------- Responsive Adjustments ---------------- */
@media (max-width: 1200px) {
  .our-impact-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; /* slightly smaller gap on smaller screens */
  }
}

@media (max-width: 992px) {
  .our-impact-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    row-gap: 110px !important;
  }
  .our-impact-title-img {
    left: 30%;
  }

}

@media (max-width: 768px) {
  .our-impact-title1 {
    font-size: 36px;
  }
  .our-impact-title1 span {
    font-size: 36px;
  }
  .our-impact-title2 {
    font-size: 22px;
  }
  .our-impact-content-bottom {
    width: 180px;
    min-height: 110px;
    top: 120px;
  }
  .our-impact-content-bottom-title {
    font-size: 20px;
    margin-top: 40px;
  }
  .our-impact-content-bottom-title2 {
    font-size: 11px;
    width: 70%;
  }
  .our-impact-content-icon {
    width: 50px;
    height: 50px;
    top: 90px;
  }
    /* our impact */
  .our-impact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px !important; /* space between cards */
  }

  .our-impact-content-main {
    position: relative;
    width: 90%;
    max-width: 450px; /* prevents stretching on large tablets */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Image scales with screen */
  .our-impact-content-1 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Title text adjustments */
  .our-impact-title1 {
    font-size: 36px;
  }
  .our-impact-title1 span {
    font-size: 36px;
  }
  .our-impact-title2 {
    font-size: 20px;
    text-align: center;
  }

  /* Position the stat box at center */
  .our-impact-content-bottom {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background-color: var(--color-turquoise);
    border-radius: 10px;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .our-impact-content-bottom-title {
    font-size: 20px;
    margin: 10px 0;
  }

  .our-impact-content-bottom-title2 {
    font-size: 12px;
    width: 80%;
    text-align: center;
  }

  /* Center the icon */
  .our-impact-content-icon {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .our-impact-content-icon img {
    width: 60%;
    height: auto;
  }

  /* Space between stacked items */
  .our-impact-content-main:not(:last-child) {
    margin-bottom: 100px;
  }

  /* Adjust title decoration image */
  .our-impact-title-img {
    position: absolute;
    width: 70px;
    right: 5%;
    top: 10px;
  }
}
@media (max-width:425px){
    .our-impact-title1 {
    font-size: 24px;
  }
  .our-impact-title1 span {
    font-size: 24px;
  }
  .our-impact-title2 {
    font-size: 18px;
    text-align: center;
  }
  .our-impact-title-img {
    left: 30px;
    top: 0px;
  }
}


/* achiever section */

.achiever-section {
  background: #f9fcff;
  padding: 60px 20px;
  /* font-family: 'Inter', system-ui, sans-serif; */
  margin-bottom: 60px;
}

/* ---- Container ---- */
.achiever-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* ---- Text ---- */
.achiever-text {
  flex: 1 1 50%;
  min-width: 280px;
}

.achiever-text .headline {
  font-size: 45px;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 150%;
  font-family: "Quicksand";
}

/* ---- Donate Button ---- */
.donate-btn {
  display: inline-block;
  padding: 2px 40px;
  background: var(--color-viking);
  color: black;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  font-size: 40px;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.donate-btn:hover {
  background: #1faad7;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.heart {
  margin-left: 6px;
}

/* ---- Image ---- */
.achiever-image {
  flex: 1 1 42%;
  min-width: 280px;
}

.achiever-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  transition: transform 0.5s ease;
}

.achiever-image:hover img {
  transform: scale(1.08);
}

/* ---- Responsive: Tablets ---- */
@media (max-width: 1024px) {
  .achiever-text .headline {
    font-size: 36px;
  }
  .donate-btn {
    font-size: 32px;
    padding: 2px 36px;
  }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
  .achiever-container {
    flex-direction: column;
    text-align: center;
  }
  .achiever-text,
  .achiever-image {
    flex: 1 1 100%;
  }
  .achiever-text .headline {
    font-size: 28px;
  }
  .donate-btn {
    font-size: 24px;
    padding: 2px 30px;
  }
  .achiever-image img {
    border-radius: 12px;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/* Footer section css ends */

/* responsive */

@media (max-width: 1024px) {
  .navbar {
    padding: 40px 40px;
  }
  /* story achiever */

  .achiever-text .headline {
    font-size: 35px;
  }
}
@media (max-width: 992px) {
  .achiever-text {
    .headline {
      font-size: 24px;
    }
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 30px;
  }

  /* achiever section */

  .achiever-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .achiever-text h2 {
    font-size: 40px;
  }

  .achiever-text .headline {
    font-size: 28px;
    line-height: 140%;
  }

  .donate-btn {
    font-size: 24px;
    padding: 10px 32px;
  }

  .heart {
    font-size: 22px;
  }
}

@media (max-width: 425px) {
  .navbar {
    padding: 20px 20px;
  }
  .headline {
    font-size: 24px !important;
  }
  .donate-btn {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .navbar {
    padding: 20px 20px;
  }
}