
body a{
    color: #212121;
}


  .heading-h2 {
    color: #212121;
    text-align: center;
    font-family: Poppins;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    margin: 1rem auto;
  }


  .subheading-h4 {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
    margin: auto;
    width: 70%;
    color: #575756;
  }

  .spacer-top {
    margin-top: 80px;
  }


  .button-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .button-cta-container>a>button {
    border-radius: 8px;
    background: #14B1E7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    border: none;
    margin: 0;
    padding: 14px 45px;
    cursor: pointer;
  }

  /* -----------------Swiper JS style------------------ */
  .swiper-wrapper {
    margin-bottom: 28px !important;
  }

  .swiper-pagination {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0px !important;
    margin-top: 60px !important;
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background-color: #c9c9c9 !important;
    opacity: 1 !important;

  }

  .swiper-pagination-bullet-active {
    background: #212121 !important;
    width: 12px !important;
    border-radius: 4px !important;
  }

  @media screen and (max-width: 767px) {
    .swiper-pagination-bullet {
      width: 6px !important;
      height: 6px !important;
    }
  }

  /* ------------------------------Hero Gallery Section-------------------------------- */


  .heading-h1 {
    font-family: Poppins;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.4;
    text-align: center;
    color: #212121;
    margin: auto;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .hero-section {
    margin-top: 120px;
  }

  .heading-h1 span {
    font-size: 70px;
  }


  .hero-gallery-container {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: space-between;
    gap: 1rem;
  }

  .hero-gallery-row {
    overflow: hidden;
  }

  .hero-gallery-row img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Animation for 1st and 3rd images - Top to Bottom */
  @keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Animation for 2nd and 4th images - Bottom to Top */
  @keyframes slideUp {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .hero-gallery-row.animate-down img {
    animation: slideDown 1s ease-out forwards;
  }

  .hero-gallery-row.animate-up img {
    animation: slideUp 1s ease-out forwards;
  }

  /* Staggered animation delays */
  .hero-gallery-row:nth-child(1).animate-down img {
    animation-delay: 0s;
  }

  .hero-gallery-row:nth-child(2).animate-up img {
    animation-delay: 0.2s;
  }

  .hero-gallery-row:nth-child(3).animate-down img {
    animation-delay: 0.4s;
  }

  .hero-gallery-row:nth-child(4).animate-up img {
    animation-delay: 0.6s;
  }

  .hero-gallery-liner p {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #212121;
    margin: 0;
  }



  /* ------------------------Who We Are------------------ */

  .who-are-we-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    align-items: start;
  }

  .who-are-we-image,
  .who-are-we-content {
    width: 50%;
  }

  .who-are-we-content h2 {
    text-align: left;
    font-size: 40px;
  }

  .misson-liner {
    display: flex;
    justify-content: start;
    gap: 8px;
    align-items: center;
  }

  .misson-liner svg {
    width: 56px;
    height: 56px;

  }

  .misson-liner h4 {
    font-family: Poppins;
    font-weight: 500;
    color: #212121;
    margin: 2rem 0;
    font-size: 24px;
    line-height: 1.4;
  }

  .who-are-we-content p {
    font-family: Inter;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    color: #575756;
    margin: 0;
  }


  .floating-box {
    border-radius: 12px;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  .floating-box h4 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #212121;
    margin: 0;
  }

  .tech-enabled {
    width: 306px;
    border-right: 6px solid #A3E7FF;
    position: absolute;
    top: 8%;
    right: 4%;
  }

  .empowering-grassroots {
    width: 283px;
    border-left: 6px solid #FDECD4;
    position: absolute;
    bottom: -22%;
  }

  .who-are-we-image {
    position: relative;
  }

  .floating-image {
    position: absolute;
    bottom: -15%;
    right: 5%;
  }


  /* ------------------------Scaling Education------------------ */

  .scaling-education-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
  }


  .scaling-education-card {
    background-color: #F7F7F7;
    border-radius: 44px;
    padding: 16px;
    width: calc(100%/4);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
  }


  .scaling-education-card p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: #212121;
    line-height: 1.4;
    margin: 0;
  }


  /* -----------------------------------Work NGO partners----------------------------------- */


  .work-ngo-partner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background-color: #F4FDFF;
    border-radius: 30px;
    padding: 30px;
    margin-top: 30px;
  }

  .work-ngo-partner-content,
  .image-collage-container {
    width: 50%;
  }

  .work-ngo-partner-content h4,
  .work-ngo-partner-content span h4 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    color: #212121;

  }

  .work-ngo-partner-content span {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .work-ngo-partner-content p {
    font-family: Inter;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    color: #575756;
    margin-bottom: 0;
    margin-top: 0;

  }

  .image-collage-container {
    display: flex;
    gap: 10px;
  }

  .image-row-2 {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }


  /* ------------------------------What Each Phase Includes?------------------------------ */



  .phase-includes {
    margin-top: 140px;
  }

  .phase-includes-slider {
    width: 100%;
    overflow: hidden;
  }

  .phase-includes-slider-wrapper {
    position: relative;
    padding: 0 50px;
    margin-top: 60px;
  }

  .phase-includes-box img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
  }

  .phase-includes-box>p {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 0;
    line-height: 1.4;
    text-align: center;

  }

  .phase-includes-text {
    display: flex;
    justify-content: center;
  }

  .phase-includes-text>p {
    color: #575756;
    text-align: center;
    font-family: "Inter";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  /* Navigation buttons */

  .phase-includes-nav-prev,
  .phase-includes-nav-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  .phase-includes-nav-prev {
    left: 0;
  }

  .phase-includes-nav-next {
    right: 0;
  }

  /* Pagination */

  .phase-includes-pagination {
    text-align: center;
    margin-top: 20px;
  }

  .phase-includes-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #c9c9c9;
    opacity: 1;
    margin: 0 4px;
  }

  .phase-includes-pagination .swiper-pagination-bullet-active,
  .swiper-pagination-bullet-active {
    background: #212121;
    width: 12px;
    border-radius: 4px;
  }

  /* -------------_Sustainable Development------------------------------- */

  .sustainable-dev-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
  }

  .sustainable-dev-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
    border-radius: 10px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(102, 102, 102, 0.23);
    border-radius: 14px;
  }



  .sustainable-dev-card h4 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.4;
    color: #212121;
    margin: 0;
    padding-bottom: 0;
    text-align: center;
  }

  .sustainable-dev-card p {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #212121;
    margin: 0;
    text-align: center;
  }

  /* -----------------------------Core solutions cards--------------- */


  .core-solutions-container {
    margin-top: 36px;
  }


  .core-solutions-card {
    border-radius: 10px;
    padding: 24px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(102, 102, 102, 0.23);
    height: 550px;
  }



  .core-solutions-card h4 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: #212121;
    margin: 0;
  }


  .core-solutions-card p {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: #212121;
    margin: 0;
    line-height: 1.4;
    margin-top: 8px;
  }


  /* ------------------------------------------Featured Projects------------------------------------------ */
  .featured-projects-container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
  }

  .featured-projects-card {
    border-radius: 10px;
    padding: 24px;
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 0.87px solid #E2E8F0;
  }

  .featured-projects-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .featured-projects-card h4 {
    font-size: 24px;
    font-weight: 600;
    font-family: Poppins;
    line-height: 1.4;
    color: #212121;
    margin: 0;
    height: 100px;
  }

  .featured-projects-card p {
    font-size: 16px;
    font-weight: 400;
    font-family: Inter;
    line-height: 1.4;
    color: #666666;
    margin: 0;
    height: 90px;
  }

  .featured-projects-card a {
    font-size: 16px;
    font-weight: 500;
    font-family: Inter;
    line-height: 1.4;
    color: #14B1E7;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .featured-projects-subtext p {
    font-size: 20px;
    font-weight: 400;
    font-family: Inter;
    line-height: 1.4;
    color: #334155;
    margin-top: 20px;
    text-align: center;
  }

  .featured-projects-subtext p::before {
    content: "* ";
  }

  .featured-projects-text h4 {
    font-weight: 400;
    font-family: Inter;
    line-height: 1.4;
    font-size: 24px;
    text-align: center;
    color: #334155;
    margin: 0;
    margin: 1rem 0;
  }

  /* ------------------------------------------Support NGO Education------------------------------------------ */

  .support-ngo-education-container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
  }


  .education-ngo-content {
    border-radius: 10px;
    background: #F4FDFF;
    padding: 0px 56px;
    padding-top: 20px;
    padding-bottom: 44px;
  }

  .education-ngo-feature {
    display: flex;
    gap: 16px;
    margin-top: 24px;
  }

  .feature-body h3 {
    color: #212121;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
  }

  .feature-body ul {
    padding: 0;
    padding-left: 20px;
    margin-top: 10px;
  }

  .feature-body ul li {
    color: #666666;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
  }


  /* -------------------------------------Partnership Models--------------------- */

  .partnership-model {
    background-color: #F4FDFF;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pm-item-content,
  .pm-image {
    width: 50%;
  }

  .partnership-model-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 16px;
  }

  .pm-item-content {
    border-radius: 10px;
    background: #FFFFFF;
    padding: 0px 56px;
    padding-top: 20px;
    padding-bottom: 44px;
  }


  .pm-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
  }

  .pm-item-content h3 {
    color: #212121;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
  }

  .pm-item-content ul {
    padding: 0;
    padding-left: 20px;
    margin-top: 10px;
  }

  .pm-body p {
    color: #666666;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
  }


  /* -------------------------------------Why Choose Us--------------------- */


  .why-choose-us-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .why-choose-us-left {
    width: 40%;
  }

  .why-choose-us-mobile {
    display: none;
  }


  .why-choose-us-mobile-heading {
    display: none;
  }

  .why-choose-us-left h2 {
    text-align: left;
  }

  .why-choose-us-right {
    display: flex;
    gap: 30px;
    overflow-x: scroll;
    width: 60%;
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .why-choose-us-right::-webkit-scrollbar {
    width: 128px;
    height: 3px;
  }

  .why-choose-us-right::-webkit-scrollbar-track {
    background: #E7E7E7;
    border-radius: 100vw;
    margin-inline: 16em;
  }

  .why-choose-us-right::-webkit-scrollbar-thumb {
    background: #14B1E7;
    border-radius: 100vw;
  }

  .why-choose-us-button a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
  }

  .why-choose-us-card {
    min-width: 350px;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    box-shadow: 13.0775px 13.0775px 0px rgba(18, 17, 17, 0.07), 7.70005px 7.70005px 0px rgba(18, 17, 17, 0.050624), 3.95465px 3.95465px 0px rgba(18, 17, 17, 0.039312), 1.59023px 1.59023px 0px rgba(18, 17, 17, 0.030688), 0.355709px 0.355709px 0px rgba(18, 17, 17, 0.019376);
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
  }


  .why-choose-us-card span {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.4;
    color: #666666;
    margin: 0;
  }

  .why-choose-us-card h4 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #212121;
    margin: 0;
  }

  .why-choose-us-card img {
    width: 70%;
    object-fit: cover;
    border-radius: 10px;
    margin: auto;
  }

  .why-choose-us-card p {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #666666;
    margin: 0;
  }

  .why-choose-us-navigation {
    display: flex;
    justify-content: end;
    gap: 45px;
    margin-right: 20px;
    margin-top: 20px;
  }

  .why-choose-mobile {
    display: none;
  }

  .navigation-left svg:hover *,
  .navigation-right svg:hover * {
    stroke: #1BB1E7;
    cursor: pointer;
  }

  .navigation-left svg,
  .navigation-right svg {
    cursor: pointer;
  }

  /* ------------------------------Major CTA Section-------------- */


  .major-cta-section {
    border: 4px solid #14B1E7;
    background-color: #F4FDFF;
    box-shadow: 4px 4px 4px 0px #00000040;
    border-radius: 24px;
    padding: 40px;
  }

  .major-cta-section h3 {
    color: #212121;
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 0;
  }

  .phone-liner,
  .email-liner,
  .website-liner,
  .anchor-liner {
    color: #212121;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    margin: 1rem auto;
  }

  .anchor-liner {
    text-decoration: underline;
  }

  /* ------------------------------What do we need from you---------------- */

  .what-we-need-container {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: center;
  }

  .what-we-need-heading {
    display: none;
  }

  .what-we-need-content,
  .what-we-need-image {
    width: 50%;
  }

  .what-we-need-image{
    display: flex;
    justify-content: center;
  }

  .what-we-need-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
  }

  .wwn-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-top: 20px;
  }

  .wwn-item span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    padding: 1rem;
    margin: 0;
    letter-spacing: 0;
    border: 0.84px solid #57575640;
    border-radius: 50%;
  }

  .wwn-item p {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    color: #212121;
    font-style: normal;
    line-height: 1.4;
    margin: 0;
  }

  .wwn-subtext {
    font-family: Inter;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: #666666;
  }

  .what-we-need-button {
    justify-content: start;
  }

  .what-we-need-image img {
    border-radius: 48px;
    width: 80%;
  }







  /* ----------------------- Partner With Us cards ----------------------- */

  .partner-with-us-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .partner-wtih-us-card {
    position: relative;
    border-radius: 24px;
    padding: 6px 24px 28px;
    text-align: center;
    overflow: hidden;
  }

  /* Decorative cloud-like background */


  .partner-wtih-us-card {
    background: linear-gradient(116deg, #EFFBFF 3.03%, #EBFAFF 95.83%);
  }


  .partner-wtih-us-card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 278px;
    height: 171px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='278' height='171' viewBox='0 0 278 171' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M161.773 135.758C116.867 208.146 5.60402 157.743 30.3778 76.2786C34.3494 63.7434 36.9326 52.785 27.2974 38.4534C-38.0175 -14.7172 24.5731 -118.596 102.626 -84.425C111.386 -80.4585 118.98 -74.9604 125.232 -68.3882C149.632 -47.5908 177.577 -34.6136 209.676 -30.8162C310.896 -19.6856 292.277 126.848 192.192 113.164C182.159 111.375 168.557 124.519 161.773 135.758ZM169.888 -101.14C163.151 -110.93 172.485 -117.626 179.594 -108.096C186.334 -98.2992 176.993 -91.6145 169.888 -101.14ZM131.158 -89.9942C118.811 -107.946 135.923 -120.212 148.953 -102.746C161.308 -84.7923 144.185 -72.5315 131.158 -89.9942ZM17.2858 -21.1154C17.922 -33.6504 23.4686 -47.0315 31.9564 -56.4008C34.3889 -59.1598 30.2035 -62.9045 27.7353 -60.1486C23.5509 -55.4411 19.9948 -50.0308 17.2595 -43.9994C13.9411 -36.6681 12.1164 -29.0461 11.6489 -21.459C11.5542 -19.9045 12.7417 -18.5673 14.2962 -18.4727C15.8507 -18.378 17.1911 -19.5609 17.2858 -21.1154ZM18.0588 -7.43545C17.7292 -9.31077 17.4909 -11.2035 17.3447 -13.1134C17.0484 -16.7883 11.447 -16.3619 11.7168 -12.6784C11.8734 -10.5886 12.1382 -8.51418 12.499 -6.45919C13.1501 -2.82393 18.6873 -3.79864 18.0588 -7.43545Z' fill='%23DBF8FF'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
  }

  /* Even cards: warm gradient background and alternate decorative SVG */
  .partner-wtih-us-card:nth-child(even) {
    background: linear-gradient(116deg, #FFF9F0 3.03%, #FFFBF5 95.83%);
  }

  .partner-wtih-us-card:nth-child(even)::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='278' height='171' viewBox='0 0 278 171' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M161.773 135.758C116.867 208.146 5.60402 157.743 30.3778 76.2786C34.3494 63.7434 36.9326 52.785 27.2974 38.4534C-38.0175 -14.7172 24.5731 -118.596 102.626 -84.425C111.386 -80.4585 118.98 -74.9604 125.232 -68.3882C149.632 -47.5908 177.577 -34.6136 209.676 -30.8162C310.896 -19.6856 292.277 126.848 192.192 113.164C182.159 111.375 168.557 124.519 161.773 135.758ZM169.888 -101.14C163.151 -110.93 172.485 -117.626 179.594 -108.096C186.334 -98.2992 176.993 -91.6145 169.888 -101.14ZM131.158 -89.9942C118.811 -107.946 135.923 -120.212 148.953 -102.746C161.308 -84.7923 144.185 -72.5315 131.158 -89.9942ZM17.2858 -21.1154C17.922 -33.6504 23.4686 -47.0315 31.9564 -56.4008C34.3889 -59.1598 30.2035 -62.9045 27.7353 -60.1486C23.5509 -55.4411 19.9948 -50.0308 17.2595 -43.9994C13.9411 -36.6681 12.1164 -29.0461 11.6489 -21.459C11.5542 -19.9045 12.7417 -18.5673 14.2962 -18.4727C15.8507 -18.378 17.1911 -19.5609 17.2858 -21.1154ZM18.0588 -7.43545C17.7292 -9.31077 17.4909 -11.2035 17.3447 -13.1134C17.0484 -16.7883 11.447 -16.3619 11.7168 -12.6784C11.8734 -10.5886 12.1382 -8.51418 12.499 -6.45919C13.1501 -2.82393 18.6873 -3.79864 18.0588 -7.43545Z' fill='%23FFF5E6'/></svg>");
  }

  .partner-wtih-us-card>* {
    position: relative;
    z-index: 1;
  }

  .partner-wtih-us-card h4 {
    color: #212121;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
  }

  .partner-wtih-us-card p {
    color: #575756;
    text-align: center;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
  }




  /* -------------------------------------Blog Section-------------------------------------- */

  .blog-section-container {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    margin-top: 56px;
  }

  .blog-section-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 14px;
    border-radius: 20.4px;
    justify-content: space-between;
    border: 1px solid #DEDEDE;
    width: calc(100%/3);
    padding-bottom: 20px;
    height: fit-content;
  }

  .blog-section-card>img {
    width: auto;
    height: auto;
    margin: auto;
  }

  .blog-section-card>p {
    color: #575756;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    margin-top: 36px;
    min-height: 140px;
  }

  .blog-section-button>a {
    color: #1BB1E7;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    gap: 14px;
    justify-content: start;
    align-items: center;
    margin-top: 24px;
  }


  .blog-section-button>a>svg {
    width: 18px;
    height: 14px;
  }


  /* --------------------------------------Frequently Asked Questions-------------------------------------- */


  .faq-container {

    margin-bottom: 55px;
    padding: 31px 80px;
    border-radius: 40px;
    background: #FFF;
    box-shadow: 12px 12px 10px 0px #EFF9FF;
    border: none;
    border-left: none;
    padding-left: 24px;
    padding-top: 0px;
    height: 450px;
    overflow-y: scroll
  }

  .accordion .accordion-item {

    border-bottom: 1px solid #e5e5e5;

  }

  .accordion-title {

    color: #212121;

    font-family: Inter;

    font-size: 24px;

    font-style: normal;

    font-weight: 400;

    line-height: 1.4;

    width: 80%;

  }

  .accordion button {

    text-align: left;
    width: 100%;
    padding: 16px 0;
    border: none;
    background: none;
    outline: none;

  }

  .accordion button:hover,
  .accordion button:focus {

    cursor: pointer;

  }

  .accordion button[aria-expanded='true']+.accordion-content {

    opacity: 1;

    max-height: 1000px;

    transition: max-height ease-out, opacity ease-out;

  }

  .accordion .accordion-content {

    opacity: 0;

    max-height: 0;

    overflow: hidden;

    transition: max-height ease, opacity ease;

  }

  .accordion .accordion-content p {

    font-size: 16px;

    color: #666666;

  }

  #accordion-button-3 {

    color: black;

    font-family: "Inter", sans-serif;

    display: flex;

    justify-content: space-between;

    width: 100%;

    align-items: center;

  }

  .accordion-content p {

    color: black;

    font-family: "Inter", sans-serif !important;
  }



  /*------------------------------animation code-------------------------------------------------------*/

  [data-animate="left"] {
    opacity: 0;
    transform: translateX(-16px);
    visibility: hidden;
    /* Add this */
  }

  [data-animate="right"] {
    opacity: 0;
    transform: translateX(16px);
    visibility: hidden;
    /* Add this */
  }

  [data-animate].animate {
    animation: slideIn 1.5s ease forwards;
    visibility: visible;
    /* Add this */
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(var(--slide-offset, 0));
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Set the slide offset direction */
  [data-animate="left"] {
    --slide-offset: -16px
  }

  [data-animate="right"] {
    --slide-offset: 16px;
  }


  @media screen and (max-width: 1280px) {
    .work-ngo-partner-content p {
      font-size: 18px;
    }

    .work-ngo-partner-content h4,
    .work-ngo-partner-content span h4 {
      margin: 24px 0;
    }

    .work-ngo-partner-content span svg {
      width: 38px;
      height: 38px;
    }

    .heading-h1 span {
      font-size: 56px;
    }

    .heading-h1 {
      font-size: 36px;
    }

    .blog-section-container {
      gap: 12px;
    }
  }

  @media screen and (max-width: 1200px) {
    .heading-h2 {
      font-size: 42px;
    }

    .scaling-education-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .scaling-education-card {
      width: 100%;
    }

    .who-are-we-content p {
      font-size: 20px;
    }


    .feature-body h3,
    .pm-item-content h3 {
      margin-bottom: 0;
      font-size: 20px;
    }

    .phase-includes-box>p {
      font-size: 20px;
      margin-bottom: 0;
    }


    .pm-item-content,
    .education-ngo-content {
      padding-left: 22px;
      padding-right: 22px;
    }

    .core-solutions-card p {
      font-size: 16px;
    }

    .core-solutions-card h4 {
      font-size: 20px;
    }

    .featured-projects-card h4 {
      font-size: 20px;
    }

    .sustainable-dev-card h4 {
      font-size: 24px;
    }

    .sustainable-dev-card p {
      font-size: 16px;
    }

    .sustainable-dev-card {
      padding: 14px;
    }

    .sustainable-dev-container {}

  }

  @media screen and (max-width: 1080px) {

    .wwn-item p {
      font-size: 16px;
    }

    .wwn-subtext {
      font-size: 20px;
    }

    .wwn-item span {
      width: 28px;
      height: 28px;
    }

    .spacer-top {
      margin-top: 50px;
    }

    .phase-includes {
      margin-top: 120px;
    }
  }

  @media screen and (max-width: 992px) {

    .heading-h2,
    .who-are-we-content h2 {
      font-size: 32px;
    }

    .subheading-h4 {
      font-size: 20px;
    }

    .partner-with-us-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .scaling-education-container {
      margin-top: 36px;
    }

    .scaling-education-card {
      margin-top: 0;
    }

    .scaling-education-card svg {
      width: 42px;
      height: 42px;
    }

    .scaling-education-card p {
      font-size: 16px;
    }

    .who-are-we-content p {
      font-size: 18px;
    }

    .work-ngo-partner-row.pilot-implementation {
      flex-direction: column-reverse;
    }

    .work-ngo-partner-row.district-expansion {
      flex-direction: column;
    }

    .work-ngo-partner-content,
    .image-collage-container {
      width: 100%;
    }


    .feature-body ul li,
    .pm-body p {
      font-size: 16px;
    }

    .feature-icon svg,
    .pm-icon svg {
      width: 36px;
      height: 36px;
    }

    .support-ngo-education-container {
      flex-direction: column;
    }

    .education-ngo-image,
    .education-ngo-image img,
    .education-ngo-content,
    .pm-item-content,
    .pm-image,
    .pm-image img {
      width: 100%;
    }

    .education-ngo-content {
      padding: 20px 24px;
    }

    .partnership-model-container {
      flex-direction: column-reverse;
    }

    .blog-section-container {
      flex-direction: column;
      margin-top: 30px;
      gap: 16px;
    }

    .blog-section-card {
      width: 100%;
    }

    .major-cta-section h3 {
      font-size: 28px;
    }

    .major-cta-section {
      border-radius: 14px;
      padding: 26px 20px;
    }

    .phone-liner,
    .email-liner,
    .website-liner,
    .anchor-liner {
      font-size: 20px;
    }

    .hero-gallery-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      position: relative;
    }

    .misson-liner h4 {
      font-size: 20px;
    }

    .subheading-h4 {
      width: 100%;
    }

    .heading-h1 span {
      font-size: 40px;
    }

    .heading-h1 {
      font-size: 28px;
    }

    .button-cta-container>a>button {
      font-size: 16px;
    }

    .accordion-title {
      font-size: 20px;
    }

    .accordion .accordion-content p {
      font-size: 16px;
    }

    .core-solutions-card ul {
      width: 100%;
    }

    .work-ngo-partner-content h4,
    .work-ngo-partner-content span h4 {
      font-size: 20px;
    }

    .work-ngo-partner-content p {
      font-size: 16px;
    }

    .phase-includes-box>p {
      font-size: 16px;
    }

    .why-choose-us-left {
      display: none;
    }

    .why-choose-us-right {
      width: 100%;
    }

    .why-choose-mobile {
      display: flex;
    }

    .why-choose-us-mobile-heading {
      display: block;
    }


    .why-choose-us-container {
      flex-direction: column;
      gap: 0px;
    }

    .why-choose-us-card img {
      width: 100%;
    }


    .partner-wtih-us-card h4 {
      font-weight: 500;
    }

    .featured-projects-subtext p {
      font-size: 16px;
    }

    .featured-projects-text h4 {
      font-size: 20px;
    }

    .featured-projects-container {
      flex-direction: column;
    }

    .featured-projects-card h4,
    .featured-projects-card p {
      height: auto;
    }

    .featured-projects-card {
      width: 100%;
    }

    .core-solutions-card {
      padding-left: 24px;
    }

    .what-we-need-image img{
      width: 80%;
    }
  }


  @media screen and (max-width: 800px) {
    .who-are-we {
      flex-direction: column-reverse;
    }

    .who-are-we-image {
      margin-top: 30px;
    }

    .who-are-we-content p {
      font-size: 16px;
    }

    .who-are-we-image,
    .who-are-we-content {
      width: 100%;
    }

    .who-are-we-content h2 {
      text-align: center;
      margin-bottom: 24px;
    }

    .floating-box h4 {
      font-size: 20px;
    }

    .floating-box {
      padding: 8px;
    }

    .floating-box h4 {
      font-size: 16px;
    }


    .blog-section-card>p {
      min-height: 130px;
    }

  }


  @media screen and (max-width: 767px) {


    .scaling-education-container {
      grid-template-columns: repeat(1, 1fr);
    }

    .heading-h2,
    .who-are-we-content h2 {
      font-size: 28px;
    }

    .faq-container {
      border: none;
      padding: 0 24px;
    }


    .faq-container {
      border-radius: 12px;
    }

    .partner-wtih-us-card h4 {
      font-size: 20px;
    }

    .partner-wtih-us-card p {
      font-size: 16px;
    }

    .partner-wtih-us-card svg {
      width: 60px;
      height: 60px;
    }

    .partner-wtih-us-card {
      border-radius: 8px;
      padding: 6px 14px 20px;
    }

    .partner-wtih-us-card::before {
      width: 230px;
      height: 140px;
    }


    .major-cta-section h3 {
      font-size: 24px;
    }

    .misson-liner h4 {
      font-size: 20px;
    }

    .misson-liner svg {
      width: 40px;
      height: 40px;
    }

    .heading-h1 {
      font-size: 24px;
    }

    .swiper-pagination {
      margin-top: 30px !important;
    }

    .accordion-title {
      font-size: 18px;
    }

    .accordion .accordion-content p {
      font-size: 14px;
      margin-top: 0;
    }

    .icon>svg {
      width: 16px;
      height: 16px;
    }

    .what-we-need-heading {
      display: block;
    }

    .what-we-need-content h2 {
      display: none;
    }

    .what-we-need-container {
      flex-direction: column-reverse;
      margin-top: 36px;
      gap: 0;
    }

    .what-we-need-content,
    .what-we-need-image {
      width: 100%;
    }

    .what-we-need-image img {
      width: 100%;
    }

    .what-we-need-button {
      justify-content: center;
    }

    .wwn-item {
      align-items: center;
    }

    .core-solutions-container {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .spacer-top {
      margin-top: 40px;
    }


    .phone-liner,
    .email-liner,
    .website-liner,
    .anchor-liner {
      font-size: 16px;
    }

    .why-choose-us-card p {
      font-size: 14px;
    }

    .featured-projects-text h4 {
      font-size: 18px;
    }

    .core-solutions-card {
      height: 430px;
    }

    .button-cta-container>a>button {
      font-size: 14px;
      border-radius: 4px;
    }

    .who-are-we-container {
      flex-direction: column;
    }

    .who-are-we-content {
      margin-top: 140px;
    }

    .empowering-grassroots {
      width: 240px;
    }

    .floating-box svg {
      width: 48px;
      height: 48px;
    }

    .who-are-we-container {
      margin-top: 0;
    }


    .sustainable-dev-container {
      flex-direction: column;
      gap: 24px;
    }

    .sustainable-dev-card {
      width: 100%;
    }

  }

  @media screen and (max-width: 600px) {

    .heading-h2,
    .who-are-we-content h2 {
      font-size: 22px;
    }

    .subheading-h4 {
      font-size: 18px;
    }

    .faq-container {
      padding: 0 12px;
    }


    .partner-with-us-container {
      grid-template-columns: repeat(1, 1fr);
    }

    .heading-h1 span {
      font-size: 28px;
    }

    .floating-image {
      right: 25%;
      bottom: -10%;
    }

    .tech-enabled {
      width: 230px;
      right: 0%;
    }

    .tech-enabled svg {
      width: 60px;
      height: 60px;
    }

    .empowering-grassroots {
      width: 220px;
      bottom: -14%;
    }

    .empowering-grassroots svg {
      width: 60px;
      height: 60px;
    }

    .phase-includes-nav-prev>svg,
    .phase-includes-nav-next>svg {
      width: 30px;
      height: 30px;
    }

    .hero-gallery-container {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .partnership-model {
      padding-top: 16px;
      padding-bottom: 16px;
    }

    .partnership-model-container {
      margin-top: 24px;
    }

    .blog-section-card>p {
      font-size: 16px;
    }

    .blog-section-button>a {
      font-size: 16px;
    }

    .why-choose-us-card span {
      font-size: 28px;
    }

    .phase-includes {
      margin-top: 60px;
    }


    .phone-liner, .email-liner, .website-liner, .anchor-liner{
      text-align: left;
    }

  }

  @media screen and (max-width: 550px) {

    .wwn-subtext {
      font-size: 18px;
    }

    .who-are-we-content {
      margin-top: 70px
    }
  }

  @media screen and (max-width: 450px) {
    .why-choose-us-card {
      min-width: 300px;
      height: 530px;
    }
  }
