* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
}

.logo img {
    height: 75px;       /* adjust if needed */
    width: auto;
    display: block;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

nav ul li a:hover {
    color: #d49a3a;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100vh;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 40, 40, 0.85),
        rgba(0, 40, 40, 0.45),
        rgba(0, 40, 40, 0.15)
    );
}

/* ===== SLIDE CONTENT ===== */
.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.slide-content small {
    font-size: 14px;
    letter-spacing: 1px;
    color: #d49a3a;
    display: block;
    margin-bottom: 15px;
}

.slide-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #eee;
}

/* ===== BUTTONS ===== */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary {
    background: #d49a3a;
    color: #000;
}

.btn-primary:hover {
    background: #e0a91e;
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* ===== DOTS ===== */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.dot.active {
    background: #d49a3a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header {
        padding: 15px 30px;
    }

    /* MOBILE NAV CONTAINER */
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 40, 40, 0.95);
        transition: right 0.4s ease;
        padding-top: 40px;
    }

    nav.active {
        right: 0;
    }

    /* SHOW MENU ITEMS */
    nav ul {
        display: flex;              /* 🔥 FIX */
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    nav ul li a {
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content {
        left: 6%;
        right: 6%;
    }
}


/* ===== LOGO ===== */
.logo img {
    height: 75px;
    width: auto;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {

    
    .hamburger {
        display: flex;
    }
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    background: #f6f3ee;
    width: 100%;
}

.welcome-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 600px;
}

/* LEFT SIDE */
.welcome-content {
    padding: 90px 20px 90px 140px;
}



.welcome-tag {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #f2b632;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.welcome-content h2 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #3a2f1c;
}

.welcome-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b6b6b;
    max-width: 620px;
    margin-bottom: 20px;
}

/* ACTION BOXES */
.welcome-actions {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

.action-box {
    background: #fff;
    padding: 30px 20px;
    width: 180px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.action-box:hover {
    transform: translateY(-6px);
}

.action-box .icon {
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: #f2b632;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
}

.action-box p {
    font-size: 15px;
    font-weight: 500;
    color: #3a2f1c;
}

/* RIGHT SIDE IMAGE BLOCK */
.welcome-image {
    position: relative;
    overflow: hidden;
}

.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark brown overlay look */
.welcome-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(60, 46, 20, 0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .welcome-wrap {
        grid-template-columns: 1fr;
    }

    .welcome-content {
        padding: 60px 30px;
    }

    .welcome-actions {
        flex-wrap: wrap;
    }

    .welcome-image {
        height: 320px;
    }
}

/* ===== HEADER LIGHT VERSION (AFTER HERO) ===== */
header.header-light {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

header.header-light nav ul li a {
    color: #0a3b5f; /* dark blue */
}

header.header-light nav ul li a:hover {
    color: #f2b632;
}

/* ensure hamburger stays visible */
header.header-light .hamburger span {
    background: #0a3b5f;
}

/* ===== STATS SECTION ===== */
.stats-section {
    position: relative;
    background: url("images/stats-bg2b.jpg") center/cover no-repeat;
    padding: 120px 40px;
    color: #fff;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 60, 0.75); /* dark blue overlay */
}

.stats-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.stats-tag {
    display: block;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stats-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 600;
}

/* GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    padding: 40px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-6px);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-section {
        padding: 80px 20px;
    }

    .stats-content h2 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CAUSES SECTION ===== */
.causes-section {
    background: #f6f2ea;
    padding: 100px 40px;
    text-align: center;
}

.section-tag {
    display: block;
    color: #d89b3c;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.causes-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

/* SLIDER */
.causes-wrapper {
    position: relative;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
}

.causes-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.cause-card {
    min-width: 33.3333%;
    background: #efe9dc;
    margin: 0 15px;
    border-radius: 6px;
    overflow: hidden;
    text-align: left;
}

.cause-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.cause-tag {
    display: inline-block;
    background: #d89b3c;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin: 20px;
}

.cause-card h3 {
    font-size: 22px;
    margin: 0 20px 10px;
}

.cause-card p {
    font-size: 15px;
    margin: 0 20px 25px;
    color: #555;
}



/* NAV */
.cause-nav {
    position: absolute;
    top: 45%;
    background: #d89b3c;
    border: none;
    color: #fff;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.cause-nav.prev { left: -10px; }
.cause-nav.next { right: -10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .cause-card {
        min-width: 100%;
        margin: 0 10px;
    }

    .cause-nav {
        display: none;
    }
}

/* ===== SPLIT CTA SECTION ===== */
.cta-split {
    display: flex;
    min-height: 420px;
    background: #ffffff;
}

/* LEFT TEXT */
.cta-text {
    flex: 1;
    padding: 100px 80px 90px 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.cta-text h2 {
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 35px;
    color: #000;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-donate {
    background: #d89b3c;
    color: #fff;
}

.btn-donate:hover {
    background: #c3882f;
}

.btn-volunteer {
    background: #0a686e;
    color: #fff;
}

.btn-volunteer:hover {
    background: #08595e;
}

/* RIGHT IMAGE */
.cta-image {
    flex: 1;
    background: url("images/cta-right.jpg") center/cover no-repeat;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cta-split {
        flex-direction: column;
    }

    .cta-text {
        padding: 70px 30px;
        text-align: center;
        align-items: center;
    }

    .cta-text h2 {
        font-size: 32px;
    }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    position: relative;
    background: url("images/testimonial-bg.jpg") center/cover no-repeat;
    padding: 120px 30px;
    color: #fff;
}

.testimonial-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 40, 0.75);
}

.testimonial-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.testimonial-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

/* SLIDER */
.testimonial-wrapper {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

/* CARD */
.testimonial-card {
    min-width: 33.3333%;
    background: #ffffff;
    color: #555;
    margin: 0 15px;
    padding: 40px 30px;
    border-radius: 6px;
    position: relative;
}

.testimonial-card.active {
    background: #d89b3c;
    color: #fff;
}

.quote-icon {
    font-size: 40px;
    color: #d89b3c;
    display: block;
    margin-bottom: 20px;
}

.testimonial-card.active .quote-icon {
    color: #fff;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* AUTHOR */
.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author h4 {
    margin: 0;
    font-size: 16px;
}

.author span {
    font-size: 13px;
    opacity: 0.8;
}

/* DOTS */
.testimonial-dots {
    margin-top: 40px;
}

.testimonial-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background: #d89b3c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: 100%;
        margin: 0;
    }
}



/* LOGO */
.footer-logo .logo-main {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo .logo-main span {
    color: #f2b632;
}

.footer-logo small {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: 0.7;
}

.footer-text {
    margin: 25px 0;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}


/* TITLES */
.footer-title {
    font-size: 20px;
    margin-bottom: 30px;
}

/* POSTS */

.footer-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.footer-post a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.4;
}

.post-meta {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* BOTTOM BAR */
.footer-bottom {
    background: #041f1f;
    padding: 25px 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ===== RESPONSIVE ===== */


/* ===== FOOTER ===== */
.site-footer {
    background: #062f32;
    color: #ffffff;
    padding-top: 80px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
}

.footer-logo {
    font-size: 22px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* SOCIAL */
.footer-social a {
    width: 42px;
    height: 42px;
    background: #d89b3c;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0a686e;
    transform: translateY(-3px);
}


/* POSTS */
.footer-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.footer-post span {
    font-size: 12px;
    color: #d89b3c;
    display: block;
    margin-bottom: 4px;
}

.footer-post p {
    font-size: 14px;
    margin: 0;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BOTTOM */
.footer-bottom {
    background: #052629;
    padding: 20px 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-post {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}


.footer-logo img {
    max-width: 260px;
    height: auto;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;   /* 🔥 force left */
    margin-left: 0;                /* remove any offset */
    padding-left: 0;               /* align with text */
}

@media (max-width: 992px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-col {
    text-align: left;
}

/* ===== FORCE LEFT ALIGNMENT FOR FOOTER BRAND COLUMN ===== */

/* Footer column itself */
.footer-col {
    text-align: left;
    justify-content: flex-start;
}

/* Logo + text wrapper */
.footer-logo {
    text-align: left;
}

/* Paragraph under logo */
.footer-col p,
.footer-text {
    text-align: left;
    margin-left: 0;
}

/* Social icons container */
.footer-social {
    display: flex;
    justify-content: flex-start; /* 🔥 THIS moves icons left */
    align-items: center;
    gap: 14px;
    margin-left: 0;
    padding-left: 0;
}

/* Ensure icons themselves don't add offset */
.footer-social a {
    margin: 0;
}

/* MOBILE — keep centered only on small screens */
@media (max-width: 992px) {
    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
/* =========================================
   ABOUT SPLIT SECTION (IMAGE + CONTENT)
========================================= */
.about-split {
    background: #f9f7f2;
    padding: 100px 0;
}

.about-split-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

/* Image */
.about-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Content */
.about-split-content {
    max-width: 520px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #c58a2c; /* soft gold accent */
    margin-bottom: 15px;
}

.about-split-content h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-split-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* Button (uses your existing button style if present) */
.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: #d89b3c;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .about-split-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-split-content {
        max-width: 100%;
    }
}

/* =========================================
   MISSION & VISION CARDS
========================================= */
.mv-section {
    background: #ffffff;
    padding: 100px 0;
}

.mv-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 0 20px;
}

/* Card */
.mv-card {
    background: #f9f7f2;
    padding: 50px 40px;
    border-radius: 14px;
    position: relative;
}

.mv-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #c58a2c;
    display: inline-block;
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Subtle accent line */
.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #0a8f4d;
    border-radius: 14px 0 0 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .mv-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =====================================================
   CORE VALUES SECTION – ABOUT PAGE
===================================================== */
.values-section {
    position: relative;
    background: url("images/bgabout.jpg") center/cover no-repeat;
    padding: 110px 0;
    overflow: hidden;
}

/* Dark blue overlay */
.values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(10, 32, 66, 0.82),
        rgba(10, 32, 66, 0.82)
    );
    z-index: 1;
}

/* Inner container */
.values-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header .section-tag {
    display: inline-block;
    color: #f5a623;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 14px;
}

.values-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.values-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #dce3f1;
    font-size: 17px;
    line-height: 1.7;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

/* Individual value card */
.value-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

/* Icon */
.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 26px;
    color: #f5a623;
}

/* Title */
.value-card h3 {
    font-size: 22px;
    color: #0a2042;
    margin-bottom: 12px;
}

/* Text */
.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .values-section {
        padding: 80px 0;
    }

    .values-header {
        margin-bottom: 40px;
    }

    .value-card {
        padding: 32px 26px;
    }
}

/* =====================================================
   PROGRAMS SECTION – MODERN IMAGE CARDS
===================================================== */
.programs-modern {
    background: #ffffff;
    padding: 120px 0;
}

.programs-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.programs-header {
    max-width: 640px;
    margin-bottom: 70px;
}

.programs-header .section-tag {
    color: #c58a2c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.programs-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin: 16px 0;
    line-height: 1.2;
}

.programs-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

/* Card */
.program-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

/* Image */
.program-image {
    height: 210px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

/* Content */
.program-content {
    padding: 30px 28px 36px;
}

.program-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0a2042;
}

.program-content p {
    font-size: 15.8px;
    line-height: 1.7;
    color: #555;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .programs-modern {
        padding: 90px 0;
    }

    .program-image {
        height: 190px;
    }
}


/* =====================================================
   LEADERSHIP & GOVERNANCE SECTION
===================================================== */
.leadership-section {
    background: #f6f8fb;
    padding: 110px 0;
}

.leadership-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.leadership-header {
    max-width: 640px;
    margin-bottom: 70px;
}

.leadership-header .section-tag {
    color: #c58a2c;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.leadership-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin: 16px 0;
    line-height: 1.2;
}

.leadership-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
}

/* Card */
.leader-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 30px 40px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

/* Photo */
.leader-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5eaf1;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.leader-card h3 {
    font-size: 20px;
    color: #0a2042;
    margin-bottom: 6px;
}

.leader-card span {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 14px;
}

.leader-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .leadership-section {
        padding: 80px 0;
    }

    .leader-photo {
        width: 100px;
        height: 100px;
    }
}
/* =====================================================
   IMPACT & ACHIEVEMENTS SECTION
===================================================== */
.impact-section {
    background: #0a686e;
    padding: 120px 0;
    color: #ffffff;
}

.impact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.impact-header {
    max-width: 640px;
    margin-bottom: 80px;
}

.impact-header .section-tag {
    color: #f5a623;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.impact-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin: 16px 0;
    line-height: 1.2;
}

.impact-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #dce3f1;
}

/* Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    margin-bottom: 100px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.impact-card h3 {
    font-size: 42px;
    color: #f5a623;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 16px;
    color: #ffffff;
}

/* Story */
.impact-story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.impact-text h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.impact-text p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #dce3f1;
    margin-bottom: 16px;
}

.impact-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
    .impact-story {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 90px 0;
    }

    .impact-header {
        margin-bottom: 60px;
    }

    .impact-stats {
        margin-bottom: 70px;
    }
}

/* ===== HALF HERO (ABOUT / IMPACT PAGES) ===== */
.hero-half {
    height: 55vh;
}

.hero-half .slide,
.hero-half img {
    height: 55vh;
}

@media (max-width: 768px) {
    .hero-half {
        height: 65vh;
    }

    .hero-half .slide,
    .hero-half img {
        height: 65vh;
    }
}
/* =====================================================
   STORIES OF IMPACT – GRID (3 x 3)
===================================================== */
.stories-section {
    background: #f6f2ea;
    padding: 110px 40px;
    text-align: center;
}

.stories-section h2 {
    font-size: 42px;
    margin-bottom: 70px;
}

/* GRID */
.stories-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* CARD */
.story-card {
    background: #efe9dc;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

/* IMAGE */
.story-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* CONTENT */
.story-content {
    padding: 26px 24px 30px;
}

.story-tag {
    display: inline-block;
    background: #d89b3c;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 14px;
}

.story-content h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #3a2f1c;
}

.story-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stories-section {
        padding: 80px 20px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .stories-section h2 {
        font-size: 32px;
    }
}
/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-section {
    background: #ffffff;
    padding: 120px 40px;
}

.contact-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* INFO */
.contact-info h2 {
    font-size: 40px;
    margin: 20px 0;
}

.contact-info p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    font-size: 15.5px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* FORM */
.contact-form form {
    background: #f6f2ea;
    padding: 45px 40px;
    border-radius: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================
   INNER PAGES HERO (STANDARDIZED)
================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 50vh; /* KEY FIX */
    overflow: hidden;
}

.hero .slide,
.hero .slides {
    height: 100%;
}

.hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.header-light {
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

header.header-light nav a {
    color: #111;
}

/* Default (dark hero) */
.logo img {
    content: url("images/logo.png");
    height: 78px;
}

/* After hero (light header) */
header.header-light .logo img {
    content: url("images/logocolor.png");
}

/* Global smooth behavior */
html {
    scroll-behavior: smooth;
}

* {
    transition: color .4s ease, background-color .4s ease, border-color .3s ease;
}
