/* =========================================================
   MEHERPUR FOUNDATION
   MAIN STYLESHEET
   PREMIUM UPDATED + FINAL VISUAL POLISH
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #123f3f;
    --primary-dark: #0d3435;
    --primary-light: #1d5554;
    --accent: #ff6b2c;
    --accent-hover: #e95a1f;
    --text-dark: #24383a;
    --text-light: #52666a;
    --white: #ffffff;
    --off-white: #f7f7f5;
    --border: #d9e1e0;
    --container-width: 1120px;
    --shadow: 0 12px 40px rgba(18, 63, 63, 0.10);
    --shadow-hover: 0 20px 50px rgba(18, 63, 63, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "DM Sans", sans-serif;
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container {
    width: min(100% - 64px, var(--container-width));
    margin-inline: auto;
}

.section-padding { padding: 100px 0; }

/* FINAL POLISH: darker, more visible section labels */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    color: #123f3f;
    margin-bottom: 18px;
}
.section-label::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #285a5a;
}

h1, h2, h3 { line-height: 1.15; }
h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -1.2px;
    color: var(--text-dark);
}

.section-heading.centered {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}
.section-heading.centered .section-label { justify-content: center; }
.section-heading.centered p:last-child {
    max-width: 680px;
    margin: 18px auto 0;
    color: #52666a;
    font-size: 16.5px;
    line-height: 1.7;
    font-weight: 500;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,.65); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* HEADER */
.site-header { background: var(--primary); position: relative; z-index: 1000; }
.navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
    width: 48px; height: 48px;
    object-fit: contain;
    background: var(--white);
    border-radius: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.brand-subtitle {
    color: rgba(255,255,255,.72);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 4px;
}
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-navigation a {
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 600;
    position: relative;
    transition: color .25s ease;
}
.main-navigation a:hover,
.main-navigation a.active { color: var(--white); }
.main-navigation a.active::after {
    content: "";
    position: absolute;
    width: 100%; height: 2px;
    left: 0; bottom: -10px;
    background: #9ec4bd;
}
.main-navigation .nav-donate a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 999px;
    margin-left: 4px;
}
.main-navigation .nav-donate a::after { display: none; }
.main-navigation .nav-donate a:hover {
    background: #ff7a42;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.mobile-menu-btn span {
    display: block;
    width: 25px; height: 2px;
    background: var(--white);
    margin: 5px auto;
    transition: .3s;
}

/* HERO */
.hero-section {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url("../images/hero-community.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8,42,42,.90) 0%,
        rgba(8,42,42,.74) 48%,
        rgba(8,42,42,.35) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    /* FINAL POLISH: comfortable left breathing space */
    padding-left: clamp(32px, 5vw, 72px);
}
.hero-eyebrow {
    color: #d1e3df;
    margin-bottom: 20px;
    justify-content: flex-start;
}
.hero-eyebrow::before { background: #9fc1bb; }
.hero-section h1 {
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 800;
    letter-spacing: -2px;
    max-width: 750px;
    text-align: left;
}
.hero-description {
    max-width: 590px;
    margin-top: 25px;
    color: rgba(255,255,255,.90);
    font-size: 16.5px;
    line-height: 1.75;
    text-align: left;
    font-weight: 500;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    justify-content: flex-start;
}

/* INTRO */
.intro-section { background: var(--white); }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.intro-content h2 {
    max-width: 530px;
    margin-bottom: 25px;
}
.intro-content p {
    max-width: 540px;
    color: #52666a;
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.75;
    font-weight: 500;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }
.intro-image { overflow: hidden; }
.intro-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* FOCUS AREAS */
.focus-section { background: #f3f5f4; }
.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.focus-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 24px;
    min-height: 230px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.focus-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: #b9ceca;
}
.focus-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f1ef;
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 20px;
}
.focus-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--primary);
    font-weight: 700;
}
.focus-card p {
    color: #52666a;
    font-size: 15.5px;
    line-height: 1.65;
    font-weight: 500;
}

/* FEATURED PROGRAMS */
.programs-section { background: var(--white); }
.programs-heading {
    max-width: 700px;
    margin-bottom: 48px;
}
.programs-heading p:last-child {
    color: #52666a;
    margin-top: 14px;
    font-size: 16.5px;
    line-height: 1.7;
    font-weight: 500;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.program-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}
.program-image { overflow: hidden; }
.program-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .5s ease;
}
.program-card:hover .program-image img { transform: scale(1.06); }
.program-content { padding: 25px; }
.program-category {
    color: #285a5a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}
.program-content h3 {
    font-size: 19px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
}
.program-content > p:not(.program-category) {
    font-size: 15.5px;
    color: #52666a;
    margin-bottom: 20px;
    line-height: 1.65;
    font-weight: 500;
}
.program-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}
.program-link span { transition: transform .25s ease; }
.program-link:hover span { transform: translate(3px,-3px); }

/* COMMITMENT */
.commitment-section {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-image: url("../images/commitment-bg.jpg");
    background-size: cover;
    background-position: center;
}
.commitment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,46,46,.86);
}
.commitment-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.commitment-content h2 {
    max-width: 760px;
    margin: auto;
    font-size: clamp(36px,5vw,62px);
    color: var(--white);
}
.commitment-content p {
    max-width: 720px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.92);
    font-size: 16.5px;
    line-height: 1.75;
    font-weight: 500;
}

/* TRUST & CREDIBILITY */
.recognition-section { background: #f3f5f4; }
.recognition-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.recognition-card {
    position: relative;
    background: linear-gradient(145deg,#ffffff 0%,#f8fbfa 100%);
    border: 1px solid #d4e1df;
    border-radius: 20px;
    padding: 32px;
    min-height: 175px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18,63,63,.07);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.recognition-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg,#123f3f,#5f8f88);
    opacity: .85;
}
.recognition-card:hover {
    transform: translateY(-7px);
    border-color: #9ebfba;
    box-shadow: 0 20px 45px rgba(18,63,63,.14);
}
.recognition-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e4f0ed;
    color: #123f3f;
    font-size: 20px;
    margin-bottom: 18px;
}
.recognition-card h3 {
    font-size: 18px;
    color: #173f40;
    margin-bottom: 12px;
    font-weight: 700;
}
.recognition-card p {
    color: #123f3f;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .2px;
}

/* CTA */
.cta-section {
    background: var(--accent);
    padding: 60px 0;
    color: var(--white);
}
.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.cta-content h2 {
    font-size: clamp(30px,4vw,46px);
    margin-bottom: 10px;
    color: var(--white);
}
.cta-content p {
    color: rgba(255,255,255,.92);
    max-width: 650px;
    font-size: 15px;
}

/* FOOTER */
.site-footer {
    background: #0b3637;
    color: var(--white);
}
.footer-main { padding: 80px 0 60px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 60px;
}
.footer-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: var(--white);
    margin-bottom: 20px;
}
.footer-brand p {
    max-width: 270px;
    color: rgba(255,255,255,.84);
    font-size: 15.5px;
    line-height: 1.9;
    font-weight: 500;
}
.footer-column h3 {
    font-size: 17.5px;
    margin-bottom: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .2px;
}
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer-column li,
.footer-column a {
    color: rgba(255,255,255,.84);
    font-size: 15.5px;
    font-weight: 500;
    transition: color .25s ease;
}
.footer-column a:hover { color: var(--white); }
.footer-contact li { line-height: 1.7; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 22px 0;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.footer-bottom p {
    color: rgba(255,255,255,.72);
    font-size: 12.5px;
    font-weight: 500;
}

/* TABLET */
@media (max-width: 992px) {
    .container { width: min(100% - 40px, var(--container-width)); }
    .section-padding { padding: 80px 0; }
    .main-navigation ul { gap: 18px; }
    .intro-grid { gap: 50px; }
    .focus-grid { grid-template-columns: repeat(2,1fr); }
    .program-grid { grid-template-columns: repeat(2,1fr); }
    .program-card:last-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2,1fr); gap: 50px; }
}

/* MOBILE */
@media (max-width: 768px) {
    .container { width: min(100% - 32px, var(--container-width)); }
    .section-padding { padding: 70px 0; }

    .navbar { min-height: 68px; }
    .brand-logo { width: 42px; height: 42px; }
    .brand-name { font-size: 12px; }
    .brand-subtitle { font-size: 7px; }
    .mobile-menu-btn { display: block; }

    .main-navigation {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 20px;
        display: none;
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .main-navigation.active { display: block; }
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .main-navigation .nav-donate { width: 100%; }
    .main-navigation .nav-donate a {
        width: 100%;
        margin-left: 0;
    }
    .main-navigation a.active::after { display: none; }

    .hero-section {
        min-height: 620px;
        background-position: 60% center;
    }
    .hero-content {
        text-align: left;
        margin-left: 0;
        padding-left: 0;
    }
    .hero-section h1 {
        font-size: clamp(42px,12vw,62px);
        letter-spacing: -1.5px;
        text-align: left;
    }
    .hero-description {
        font-size: 15px;
        text-align: left;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .intro-image img { height: 350px; }
    .focus-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .program-card:last-child { grid-column: auto; }
    .program-image img { height: 250px; }
    .commitment-section { min-height: 420px; }
    .recognition-grid { grid-template-columns: 1fr; }
    .recognition-card {
        min-height: auto;
        padding: 26px;
    }
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-content { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-buttons .btn { width: 100%; }
    .focus-card { min-height: auto; }
    .cta-content h2 { font-size: 30px; }

    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .footer-brand p,
    .footer-column li,
    .footer-column a {
        font-size: 14px;
    }
}

/* =========================================
   FINAL TYPOGRAPHY & READABILITY POLISH
========================================= */

/* Section Labels */
.section-label,
.eyebrow,
.section-tag {
    color: #1f5960 !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
}


/* General Paragraph Readability */
.about-text p,
.focus-intro,
.focus-card p,
.program-card p,
.commitment-content p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #52646a !important;
}


/* Focus Area Card Descriptions */
.focus-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* Program Card Descriptions */
.program-card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* Trust & Credibility Cards */
.trust-card {
    border-top: 3px solid #1f5960 !important;
}


/* Trust Card Titles */
.trust-card h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #29464d !important;
}


/* Registration Numbers */
.trust-card p,
.trust-card .registration,
.registration-number {
    color: #1f5960 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}


/* Footer Main Text */
.footer-column p,
.footer-column a,
.footer-about p {
    font-size: 14px !important;
    line-height: 1.8 !important;
}


/* Footer Headings */
.footer-column h3,
.footer-heading {
    font-size: 16px !important;
    font-weight: 700 !important;
}


/* Footer Bottom Copyright Area */
.footer-bottom,
.footer-bottom p,
.footer-bottom span {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.65) !important;
}


/* Mobile Typography Adjustment */
@media (max-width: 768px) {

    .about-text p,
    .focus-intro,
    .focus-card p,
    .program-card p,
    .commitment-content p {
        font-size: 14px !important;
    }

    .section-label,
    .eyebrow,
    .section-tag {
        letter-spacing: 2px !important;
    }

    .trust-card h3 {
        font-size: 15px !important;
    }
}
/* =========================================
   HERO EYEBROW FIX
========================================= */

.hero .section-label,
.hero .eyebrow,
.hero .section-tag,
.hero-eyebrow {
    color: #ffffff !important;
    opacity: 0.9;
}

/* =========================================================
   ABOUT US PAGE - EXACT SAFE STYLES
   Based on current about.html structure
========================================================= */


/* =========================================================
   ABOUT PAGE HEADER
========================================================= */

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.logo-subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: rgba(255,255,255,0.86);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #9ec4bd;
}

.btn-donate {
    background: #ff6b2c;
    color: #ffffff;
    padding: 0 24px;
}

.btn-donate:hover {
    background: #e95a1f;
}


/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.page-hero {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    background: #123f3f;
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::before {
    width: 320px;
    height: 320px;
    right: -120px;
    top: -150px;
}

.page-hero::after {
    width: 210px;
    height: 210px;
    right: -15px;
    top: -80px;
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.decoration-one {
    width: 420px;
    height: 420px;
    right: -190px;
    top: -210px;
}

.decoration-two {
    width: 280px;
    height: 280px;
    right: -80px;
    top: -130px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 45px 0;
}

.page-hero-line {
    width: 48px;
    height: 3px;
    background: #9ec4bd;
    margin-bottom: 20px;
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(46px, 5vw, 66px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 620px;
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   OUR STORY
========================================================= */

.about-story {
    background: #ffffff;
    padding: 100px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 75px;
    align-items: center;
}

.about-story-image {
    overflow: hidden;
    border-radius: 2px;
}

.about-story-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about-story-content .section-label {
    margin-bottom: 18px;
}

.about-story-content h2 {
    margin-bottom: 25px;
    color: #24383a;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
}

.about-story-content p {
    color: #52666a;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 18px;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision {
    background: #f2f5f4;
    padding: 85px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.mission-card {
    position: relative;
    min-height: 330px;
    padding: 48px 45px;
    background: #123f3f;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(18,63,63,0.18);
}

.mission-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -75px;
    bottom: -90px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
}

.mission-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    color: #a8d2ca;
    font-size: 26px;
    position: relative;
    z-index: 1;
}

.mission-card h2 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 20px;
}

.mission-card p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.82);
    font-size: 15.5px;
    line-height: 1.85;
}


/* =========================================================
   HOW WE WORK / PRINCIPLES
========================================================= */

.principles {
    background: #ffffff;
    padding: 100px 0;
}

.center-heading {
    text-align: center;
    margin: 0 auto 55px;
}

.center-heading .section-label {
    justify-content: center;
}

.center-heading h2 {
    color: #24383a;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.principle-card {
    min-height: 250px;
    padding: 32px 25px;
    background: #ffffff;
    border: 1px solid #d9e1e0;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(18,63,63,0.10);
}

.principle-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: #e8f1ef;
    color: #123f3f;
    font-size: 22px;
}

.principle-card h3 {
    color: #123f3f;
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 14px;
}

.principle-card p {
    color: #52666a;
    font-size: 14.5px;
    line-height: 1.75;
}


/* =========================================================
   GOVERNMENT RECOGNITION
========================================================= */

.about-recognition {
    background: #f3f5f4;
    padding: 90px 0 100px;
}

.about-recognition .center-heading {
    margin-bottom: 45px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.trust-card {
    position: relative;
    min-height: 185px;
    padding: 34px 30px;
    background: linear-gradient(145deg, #ffffff, #f8fbfa);
    border: 1px solid #d4e1df;
    border-top: 4px solid #1f5960 !important;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18,63,63,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(18,63,63,0.14);
}

.trust-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #e4f0ed;
    color: #123f3f;
    font-size: 20px;
}

.trust-card h3 {
    color: #29464d !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
}

.trust-card p,
.trust-card .registration-number {
    color: #1f5960 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.6;
}


/* =========================================================
   ABOUT PAGE CTA BUTTON
========================================================= */

.cta-btn {
    background: #ffffff;
    color: #123f3f;
    flex-shrink: 0;
}

.cta-btn:hover {
    background: #123f3f;
    color: #ffffff;
}


/* =========================================================
   ABOUT PAGE FOOTER FIX
========================================================= */

.site-footer > .footer-grid {
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer-about p {
    max-width: 280px;
    color: rgba(255,255,255,0.84);
    font-size: 14px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 8px;
}

.footer-column p {
    margin: 0;
    color: rgba(255,255,255,0.84);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .main-nav {
        gap: 18px;
    }

    .about-story-grid {
        gap: 45px;
    }

    .about-story-image img {
        height: 400px;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principle-card {
        min-height: 230px;
    }

    .mission-card {
        padding: 40px 34px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .nav-container {
        min-height: 68px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo-name {
        font-size: 12px;
    }

    .logo-subtitle {
        font-size: 7px;
    }

    .main-nav {
        display: none;
    }

    .btn-donate {
        min-height: 42px;
        padding: 0 18px;
        font-size: 12px;
    }

    .page-hero {
        min-height: 280px;
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .about-story {
        padding: 70px 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-story-image img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-story-content h2 {
        font-size: 38px;
    }

    .about-story-content p {
        font-size: 15px;
    }

    .mission-vision {
        padding: 65px 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        min-height: auto;
        padding: 38px 28px;
    }

    .principles {
        padding: 70px 0;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card {
        min-height: auto;
    }

    .about-recognition {
        padding: 70px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .site-footer > .footer-grid {
        padding-top: 65px;
        padding-bottom: 50px;
    }
}

/* =========================================
   GLOBAL FIXED NAVBAR
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Prevent page content from hiding behind fixed navbar */
body {
    padding-top: 78px;
}

/* =========================================
   CTA CONTACT BUTTON - CONSISTENT STYLE
========================================= */

.cta-section .btn,
.cta-section .cta-button,
.cta-section a.btn {
    background: #173f3f !important;
    color: #ffffff !important;
    border: 1px solid #173f3f !important;
}

.cta-section .btn:hover,
.cta-section .cta-button:hover,
.cta-section a.btn:hover {
    background: #0f3030 !important;
    border-color: #0f3030 !important;
    color: #ffffff !important;
}

/* =========================================================
   WHAT WE DO PAGE
========================================================= */

.wwd-page {
    width: 100%;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.wwd-hero {
    position: relative;
    background: #174548;
    min-height: 310px;
    padding: 125px 0 85px;
    overflow: hidden;
}

.wwd-hero .container {
    position: relative;
    z-index: 2;
}

.wwd-hero-content {
    max-width: 650px;
}

.wwd-hero-content h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 54px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.wwd-hero-content p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
}


/* Decorative Shapes */

.wwd-hero-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.wwd-hero-shape-one {
    width: 260px;
    height: 260px;
    right: -60px;
    top: -120px;
}

.wwd-hero-shape-two {
    width: 180px;
    height: 180px;
    right: 30px;
    top: -65px;
}


/* =========================================================
   PROGRAM SECTIONS
========================================================= */

.wwd-section {
    width: 100%;
    padding: 90px 0;
}

.wwd-section-light {
    background: #f7f7f5;
}

.wwd-section-alt {
    background: #ffffff;
}


/* =========================================================
   GRID
========================================================= */

.wwd-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}


/* Reverse layout */

.wwd-grid-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}


/* =========================================================
   PROGRAM IMAGE
========================================================= */

.wwd-image {
    width: 100%;
    overflow: hidden;
}

.wwd-image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}


/* =========================================================
   PROGRAM CONTENT
========================================================= */

.wwd-content {
    width: 100%;
}

.wwd-number {
    display: inline-block;
    margin-bottom: 18px;
    color: #2c7478;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.wwd-content h2 {
    margin: 0 0 18px;
    color: #253c40;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.wwd-content h4 {
    margin: 0 0 20px;
    color: #253c40;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
}

.wwd-content > p {
    margin: 0 0 24px;
    color: #657276;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   PROGRAM LIST
========================================================= */

.wwd-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wwd-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 28px;
    color: #5f6d70;
    font-size: 14px;
    line-height: 1.6;
}

.wwd-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #2c7478;
    border-radius: 50%;
    color: #2c7478;
    font-size: 10px;
    font-weight: 700;
    line-height: 15px;
    text-align: center;
}


/* =========================================================
   IMPACT CTA
========================================================= */

.wwd-impact-cta {
    background: #ff6b35;
    padding: 58px 0;
}

.wwd-impact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.wwd-impact-content h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.wwd-impact-content p {
    margin: 0;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.wwd-impact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 175px;
    min-height: 52px;
    padding: 0 28px;
    background: #174548;
    border: 2px solid #174548;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wwd-impact-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #174548;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .wwd-section {
        padding: 105px 0;
    }

    .wwd-grid {
        gap: 90px;
    }

    .wwd-image img {
        height: 450px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wwd-hero {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .wwd-hero-content h1 {
        font-size: 46px;
    }

    .wwd-section {
        padding: 70px 0;
    }

    .wwd-grid {
        gap: 45px;
    }

    .wwd-image img {
        height: 360px;
    }

    .wwd-content h2 {
        font-size: 29px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wwd-hero {
        padding: 100px 0 60px;
    }

    .wwd-hero-content h1 {
        font-size: 40px;
    }

    .wwd-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .wwd-section {
        padding: 60px 0;
    }

    .wwd-grid,
    .wwd-grid-reverse {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    /* Program 02 and Program 04:
       image comes after content on mobile */

    .wwd-grid-reverse .wwd-content {
        order: 1;
    }

    .wwd-grid-reverse .wwd-image {
        order: 2;
    }

    .wwd-image {
        width: 100%;
    }

    .wwd-image img {
        width: 100%;
        height: auto;
        min-height: 280px;
    }

    .wwd-content h2 {
        font-size: 28px;
    }

    .wwd-content h4 {
        font-size: 14px;
    }

    .wwd-content > p {
        font-size: 14px;
    }

    .wwd-list li {
        font-size: 13px;
    }

    .wwd-impact-cta {
        padding: 50px 0;
    }

    .wwd-impact-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .wwd-impact-content h2 {
        font-size: 27px;
    }

    .wwd-impact-btn {
        min-width: 170px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wwd-hero-content h1 {
        font-size: 35px;
    }

    .wwd-content h2 {
        font-size: 25px;
    }

    .wwd-impact-content h2 {
        font-size: 24px;
    }

    .wwd-image img {
        min-height: 230px;
    }

}

/* =========================================================
   WHAT WE DO – HEADER & FOOTER COMPATIBILITY FIX
   Add this at the VERY END of style.css
========================================================= */


/* =========================================================
   WHAT WE DO HEADER
========================================================= */

.site-header .header-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Logo */

.site-header .site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.site-header .site-logo img {
    display: block;
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    object-fit: contain;
    background: #ffffff;
}

.site-header .site-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-header .site-logo .logo-main {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.site-header .site-logo .logo-sub {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* =========================================================
   WHAT WE DO NAVIGATION
========================================================= */

.site-header .main-navigation {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}

.site-header .main-navigation > a {
    position: relative;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.site-header .main-navigation > a:hover,
.site-header .main-navigation > a.active {
    color: #ffffff;
}


/* Active Navigation Line */

.site-header .main-navigation > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background: #9ec4bd;
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.site-header .header-donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    min-height: 48px;
    padding: 0 27px;

    background: #ff6b35;
    color: #ffffff;

    border-radius: 999px;
    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.site-header .header-donate-btn:hover {
    background: #ff7a47;
    transform: translateY(-2px);
}


/* =========================================================
   WHAT WE DO FOOTER
========================================================= */

.site-footer .footer-container {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
    gap: 55px;

    padding-top: 70px;
    padding-bottom: 55px;
}


/* Footer Logo */

.site-footer .footer-logo {
    margin-bottom: 22px;
}

.site-footer .footer-logo img {
    display: block;
    width: 55px !important;
    height: 55px !important;
    max-width: 55px !important;
    object-fit: contain;
    background: #ffffff;
}


/* Footer About */

.site-footer .footer-about p {
    margin: 0;
    max-width: 260px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.85;
}


/* Footer Columns */

.site-footer .footer-column {
    display: block;
}

.site-footer .footer-column h4 {
    margin: 0 0 20px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.site-footer .footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.site-footer .footer-column ul li {
    margin-bottom: 13px;
}

.site-footer .footer-column a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    text-decoration: none;

    transition: color 0.25s ease;
}

.site-footer .footer-column a:hover {
    color: #ffffff;
}


/* Footer Contact */

.site-footer .footer-contact p {
    margin: 0 0 13px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.site-footer .footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer .footer-bottom-container p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .site-header .header-container {
        gap: 20px;
    }

    .site-header .main-navigation {
        gap: 18px;
    }

    .site-footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-header .header-container {
        min-height: 68px;
    }

    .site-header .site-logo img {
        width: 42px !important;
        height: 42px !important;
        max-width: 42px !important;
    }

    .site-header .site-logo .logo-main {
        font-size: 12px;
    }

    .site-header .site-logo .logo-sub {
        font-size: 7px;
    }


    /* Keep navigation manageable */

    .site-header .main-navigation {
        display: none !important;
    }

    .site-header .header-donate-btn {
        min-height: 42px;
        padding: 0 18px;
        font-size: 12px;
    }


    /* Footer */

    .site-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 38px;

        padding-top: 55px;
        padding-bottom: 45px;
    }

    .site-footer .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}

/* =========================================================
   OUR IMPACT PAGE
========================================================= */

/* ---------- HERO ---------- */

.impact-hero {
    background: #173f40;
    min-height: 360px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.impact-hero .page-hero-content {
    position: relative;
    z-index: 2;
}

.impact-hero h1 {
    color: #ffffff;
}

.impact-hero p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
}

.impact-hero .hero-line {
    width: 42px;
    height: 2px;
    background: #77aeb0;
    margin-bottom: 22px;
}

.impact-hero .hero-decoration {
    position: absolute;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -90px;
    right: -30px;
}

.impact-hero .hero-decoration::before,
.impact-hero .hero-decoration::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.impact-hero .hero-decoration::before {
    width: 160px;
    height: 160px;
    top: 35px;
    left: 35px;
}

.impact-hero .hero-decoration::after {
    width: 280px;
    height: 280px;
    top: -26px;
    left: -26px;
}


/* =========================================================
   INTRO
========================================================= */

.impact-intro {
    padding: 100px 0;
    background: #f5f4f1;
}

.impact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.impact-intro-content h2 {
    font-size: 48px;
    line-height: 1.12;
    color: #314447;
    margin: 18px 0 28px;
}

.impact-intro-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #647174;
    margin-bottom: 18px;
    max-width: 560px;
}

.impact-intro-image img {
    width: 100%;
    height: 370px;
    display: block;
    object-fit: cover;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.impact-intro .section-label,
.impact-areas .section-label,
.impact-path .section-label,
.impact-initiatives .section-label,
.community-voices .section-label,
.impact-gallery .section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #547477;
}

.impact-intro .section-label span,
.impact-areas .section-label span,
.impact-path .section-label span,
.impact-initiatives .section-label span,
.community-voices .section-label span,
.impact-gallery .section-label span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: #668e90;
}


/* =========================================================
   FOUR CONNECTED AREAS
========================================================= */

.impact-areas {
    padding: 100px 0;
    background: #eceeed;
}

.impact-areas .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.impact-areas .section-label {
    justify-content: center;
}

.impact-areas h2 {
    font-size: 42px;
    color: #314447;
    margin-top: 18px;
}

.impact-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.impact-area-card {
    background: #173f40;
    color: #ffffff;
    padding: 28px;
    min-height: 185px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.impact-area-card:hover {
    transform: translateY(-6px);
}

.impact-number {
    font-size: 26px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.impact-icon {
    font-size: 18px;
    color: #7eaeb0;
    margin-bottom: 18px;
}

.impact-area-card h3 {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
}


/* =========================================================
   PATH SECTION
========================================================= */

.impact-path {
    padding: 100px 0;
    background: #f5f4f1;
}

.impact-path h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #314447;
    margin: 18px 0 55px;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.path-item {
    position: relative;
}

.path-line {
    height: 2px;
    width: 100%;
    background: #8ca9aa;
    margin-bottom: 18px;
}

.path-number {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #789091;
    margin-bottom: 18px;
}

.path-item h3 {
    font-size: 19px;
    color: #314447;
    margin-bottom: 12px;
}

.path-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #6d797b;
}


/* =========================================================
   INITIATIVES
========================================================= */

.impact-initiatives {
    padding: 100px 0;
    background: #eceeed;
}

.impact-initiatives h2 {
    font-size: 42px;
    color: #314447;
    margin: 18px 0 45px;
}

.initiative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.initiative-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(45, 70, 72, 0.1);
}

.initiative-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.initiative-content {
    padding: 22px;
}

.initiative-content h3 {
    font-size: 18px;
    color: #314447;
    margin-bottom: 10px;
}

.initiative-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #6c7779;
    margin: 0;
}


/* =========================================================
   COMMUNITY VOICES
========================================================= */

.community-voices {
    padding: 100px 0;
    background: #f5f4f1;
}

.community-voices .section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.community-voices .section-label {
    justify-content: center;
}

.community-voices h2 {
    font-size: 42px;
    color: #314447;
    margin: 18px 0;
}

.section-description {
    font-size: 14px;
    line-height: 1.8;
    color: #748082;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.voice-card {
    background: #eef1f2;
    padding: 32px;
    border-radius: 14px;
    min-height: 220px;
}

.quote-mark {
    font-size: 42px;
    line-height: 1;
    color: #6d989a;
    margin-bottom: 15px;
}

.voice-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #536265;
    margin-bottom: 25px;
}

.voice-card span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #617779;
}


/* =========================================================
   IMPACT GALLERY
========================================================= */

.impact-gallery {
    padding: 100px 0;
    background: #eceeed;
}

.impact-gallery h2 {
    font-size: 42px;
    color: #314447;
    margin: 18px 0 45px;
}

.impact-gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 1fr 1.1fr;
    gap: 8px;
    height: 450px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-large {
    height: 450px;
}

.gallery-column {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.gallery-medium {
    height: 450px;
}

.gallery-tall {
    height: 450px;
}


/* =========================================================
   CTA – OUR IMPACT
========================================================= */

.our-impact-page .cta-section {
    margin-top: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

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

    .impact-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .initiative-grid {
        grid-template-columns: 1fr;
    }

    .initiative-card img {
        height: 280px;
    }

    .impact-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .gallery-large,
    .gallery-medium,
    .gallery-tall {
        height: 300px;
    }

    .gallery-column {
        min-height: 300px;
    }

}


@media (max-width: 768px) {

    .impact-hero {
        min-height: 300px;
    }

    .impact-intro,
    .impact-areas,
    .impact-path,
    .impact-initiatives,
    .community-voices,
    .impact-gallery {
        padding: 70px 0;
    }

    .impact-intro-content h2,
    .impact-areas h2,
    .impact-path h2,
    .impact-initiatives h2,
    .community-voices h2,
    .impact-gallery h2 {
        font-size: 32px;
    }

    .impact-area-grid,
    .path-grid,
    .voices-grid {
        grid-template-columns: 1fr;
    }

    .impact-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large,
    .gallery-medium,
    .gallery-tall {
        height: 350px;
    }

    .gallery-column {
        min-height: 500px;
    }

}

/* =========================================
   OUR IMPACT - HEADER FIX
========================================= */

.site-header {
    width: 100%;
    background: #163f40;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */

.site-header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header .brand img {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    object-fit: contain;
    display: block;
}

.site-header .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-header .brand-text span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.site-header .brand-text small {
    color: #ffffff;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 3px;
}

/* Navigation */

.site-header .main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-header .main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
    color: #ffffff;
}

.site-header .main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

/* Donate Button */

.site-header .btn-donate {
    background: #ff6b35;
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}


/* =========================================
   HEADER SPACING FOR FIXED NAVBAR
========================================= */

body {
    padding-top: 78px;
}


/* =========================================
   MOBILE HEADER
========================================= */

@media (max-width: 768px) {

    .header-container {
        height: 70px;
    }

    .site-header .brand img {
        width: 42px !important;
        height: 42px !important;
        max-width: 42px !important;
    }

    .site-header .main-nav {
        gap: 12px;
    }

    .site-header .main-nav a {
        font-size: 11px;
    }

    .site-header .btn-donate {
        padding: 10px 16px;
        font-size: 12px;
    }

    body {
        padding-top: 70px;
    }
}

/* =========================================
   OUR IMPACT PAGE - FOOTER
========================================= */

.site-footer {
    background: #173f40;
    color: #ffffff;
    padding: 60px 0 0;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 45px;
}

/* Footer About */

.site-footer .footer-about img {
    width: 55px !important;
    height: 55px !important;
    max-width: 55px !important;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
}

.site-footer .footer-about p {
    max-width: 250px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.8;
}

/* Footer Headings */

.site-footer h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

/* Footer Links */

.site-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer .footer-links a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
}

.site-footer .footer-links a:hover {
    color: #ffffff;
}

/* Footer Contact */

.site-footer .footer-contact p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
}

/* Footer Bottom */

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-footer .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   RESPONSIVE FOOTER
========================================= */

@media (max-width: 900px) {

    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}


@media (max-width: 600px) {

    .site-footer {
        padding-top: 45px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    background: #f5f5f3;
}


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    background: #1d4b4c;
    color: #ffffff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -60px;
    top: -100px;
    box-shadow:
        0 0 0 35px rgba(255, 255, 255, 0.025),
        0 0 0 70px rgba(255, 255, 255, 0.02);
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero .section-line {
    width: 55px;
    height: 2px;
    background: #79aeb0;
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #ffffff;
}

.contact-hero p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}


/* =========================================
   CONTACT MAIN
========================================= */

.contact-main {
    padding: 90px 0;
    background: #f5f5f3;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* =========================================
   GET IN TOUCH PANEL
========================================= */

.contact-info-panel {
    position: relative;
    padding: 55px 45px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            #e6f0ef 0%,
            #f4f7f6 55%,
            #e9eeee 100%
        );
    border: 1px solid rgba(29, 75, 76, 0.12);
}

.contact-info-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 45px;
    bottom: 45px;
    width: 4px;
    background: #1d4b4c;
    border-radius: 0 5px 5px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #376d6e;
    margin-bottom: 18px;
}

.section-label span {
    width: 28px;
    height: 2px;
    background: #5b9a9b;
}

.contact-info-panel h2 {
    font-size: 38px;
    margin: 0 0 20px;
    color: #244b4d;
}

.contact-intro {
    max-width: 450px;
    font-size: 16px;
    line-height: 1.8;
    color: #5d6d70;
    margin-bottom: 38px;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(4px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(29, 75, 76, 0.1);
    color: #1d4b4c;
    font-size: 18px;
}

.contact-text h4 {
    margin: 0 0 6px;
    font-size: 14px;
    color: #244b4d;
}

.contact-text p {
    margin: 0;
    line-height: 1.6;
    color: #5e6d70;
}

.contact-text a {
    color: #1d4b4c;
    text-decoration: none;
}


/* =========================================
   PREMIUM CONTACT FORM
========================================= */

.contact-form-card {
    position: relative;

    padding: 48px;

    background: #ffffff;

    border-radius: 24px;

    border: 2px solid rgba(53, 117, 118, 0.45);

    box-shadow:
        0 20px 50px rgba(20, 55, 56, 0.12),
        inset 0 0 0 5px rgba(53, 117, 118, 0.035);
}

.form-top-accent {
    width: 65px;
    height: 4px;

    background: linear-gradient(
        90deg,
        #1d4b4c,
        #6ca7a8
    );

    border-radius: 10px;

    margin-bottom: 24px;
}

.contact-form-card h2 {
    margin: 0 0 32px;

    font-size: 30px;

    color: #244b4d;
}


/* =========================================
   FORM FIELDS
========================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 700;

    color: #28494b;
}

.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    background: #f8faf9;

    border: 1px solid #c9d5d5;

    border-radius: 12px;

    padding: 14px 16px;

    font-size: 15px;

    color: #243b3d;

    outline: none;

    transition: all 0.3s ease;
}

.form-group input {
    height: 52px;
}

.form-group textarea {
    resize: vertical;

    min-height: 150px;
}


/* Premium Focus Effect */

.form-group input:focus,
.form-group textarea:focus {

    background: #ffffff;

    border-color: #2d7778;

    box-shadow:
        0 0 0 4px rgba(45, 119, 120, 0.12);

}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit {

    border: none;

    background: #ff6b32;

    color: #ffffff;

    padding: 15px 28px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 8px 20px rgba(255, 107, 50, 0.22);
}

.contact-submit:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(255, 107, 50, 0.32);
}


.form-note {

    margin: 18px 0 0;

    font-size: 11px;

    line-height: 1.6;

    color: #788587;
}


/* =========================================
   FIND US SECTION
========================================= */

.find-us-section {

    padding: 80px 0;

    background: #ffffff;
}

.find-us-section h2 {

    font-size: 38px;

    margin: 0 0 35px;

    color: #244b4d;
}


.map-card {

    text-align: center;

    padding: 65px 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #e4efef,
            #f0f4f3
        );

    border: 1px solid rgba(29, 75, 76, 0.1);
}


.map-icon {

    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #1d4b4c;

    color: #ffffff;

    font-size: 22px;
}


.map-card h3 {

    font-size: 23px;

    margin: 0 0 12px;

    color: #244b4d;
}


.map-card p {

    line-height: 1.7;

    color: #5e6d70;
}


.map-card a {

    display: inline-block;

    margin-top: 12px;

    font-weight: 700;

    color: #1d4b4c;

    text-decoration: none;

    border-bottom: 2px solid #79aeb0;

    padding-bottom: 3px;
}


/* =========================================
   SUPPORT MISSION
========================================= */

.support-mission {

    padding: 65px 0;

    background: #1d4b4c;

    color: #ffffff;
}

.support-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.support-text h2 {

    margin: 0 0 12px;

    font-size: 36px;

    color: #ffffff;
}

.support-text p {

    margin: 0;

    max-width: 600px;

    color: rgba(255, 255, 255, 0.75);

    line-height: 1.7;
}


.support-actions {

    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 210px;
}


.btn-support-donate {

    text-align: center;

    background: #ff6b32;

    color: #ffffff;

    padding: 14px 24px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 700;
}


.btn-outline-light {

    text-align: center;

    padding: 13px 24px;

    border-radius: 50px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;
}


/* =========================================
   CONTACT PAGE RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-hero h1 {
        font-size: 46px;
    }

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

    .support-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-actions {
        width: 100%;
        max-width: 320px;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        padding: 70px 0 80px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-info-panel,
    .contact-form-card {
        padding: 32px 24px;
    }

    .contact-info-panel h2 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .find-us-section h2 {
        font-size: 32px;
    }

    .support-text h2 {
        font-size: 30px;
    }

}


/* =========================================================
   FINAL RESPONSIVE HEADER SYSTEM – ALL PAGES
   Unified navbar markup and mobile menu
========================================================= */

/* Keep the shared header stable on every page */
.site-header {
    background: var(--primary, #173f40);
    z-index: 9999;
}

.site-header .navbar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-header .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-header .brand-logo {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain;
    display: block;
}

.site-header .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-header .brand-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.site-header .brand-subtitle {
    color: rgba(255,255,255,.72);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 4px;
}

.site-header .main-navigation {
    margin-left: auto;
}

.site-header .main-navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .main-navigation a {
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.site-header .main-navigation a:hover,
.site-header .main-navigation a.active {
    color: #ffffff;
}

.site-header .main-navigation a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #9ec4bd;
}

.site-header .main-navigation .nav-donate a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff6b32;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 999px;
}

.site-header .main-navigation .nav-donate a::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    padding: 0;
}

@media (max-width: 1100px) and (min-width: 901px) {
    .site-header .navbar { gap: 18px; }
    .site-header .main-navigation ul { gap: 16px; }
    .site-header .main-navigation a { font-size: 12px; }
    .site-header .main-navigation .nav-donate a { padding: 11px 18px; }
}

@media (max-width: 900px) {
    html, body { overflow-x: hidden; }

    body { padding-top: 68px !important; }

    .site-header .navbar {
        min-height: 68px;
        gap: 14px;
    }

    .site-header .brand-logo {
        width: 42px !important;
        height: 42px !important;
    }

    .site-header .brand-name { font-size: 12px; }
    .site-header .brand-subtitle { font-size: 7px; }

    .mobile-menu-btn {
        display: flex !important;
        width: 44px;
        height: 44px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: 0;
        cursor: pointer;
        position: relative;
        z-index: 10001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 26px;
        height: 2px;
        background: rgba(255,255,255,.92);
        transition: transform .25s ease, opacity .25s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .site-header .main-navigation {
        display: none !important;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 22px 20px 26px;
        background: #173f40;
        border-top: 1px solid rgba(255,255,255,.10);
        box-shadow: 0 18px 35px rgba(0,0,0,.18);
        z-index: 10000;
    }

    .site-header .main-navigation.active {
        display: block !important;
    }

    .site-header .main-navigation ul {
        width: min(100% - 32px, 480px);
        margin: 0 auto;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .site-header .main-navigation li { width: 100%; }

    .site-header .main-navigation a {
        display: block;
        padding: 13px 0;
        font-size: 15px;
    }

    .site-header .main-navigation a.active::after { display: none; }

    .site-header .main-navigation .nav-donate a {
        width: 100%;
        margin-top: 8px;
        padding: 13px 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-header .navbar {
        width: min(100% - 32px, var(--container-width, 1180px));
    }
}

