/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #16216d 0%);
    color: white;
    box-shadow: 0 4px 20px rgba(22, 33, 109, 0.15);
    border-bottom: 3px solid #45b36b;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(10px);
}

/* Mobile Header Adjustments */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .nav-wrapper {
        padding: 0 15px;
    }

    .logo-img {
        height: 50px;
        width: 50px;
    }

    .logo-text-top,
    .logo-subtext {
        font-size: 0.65rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #16216d;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: unset;
        margin-top: 10px;
    }

    .dropdown-link {
        font-size: 1rem;
        padding: 10px 20px;
        margin: 0;
    }

    .hamburger {
        display: flex;
    }

    .donate-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Adjust hero slider font sizes for mobile */
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }
}

.header::after {
    content: "";
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #45b36b 20%, #ffae42 80%);
    opacity: 0.6;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-right: 20px;
}

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(22, 33, 109, 0.25);
    margin-bottom: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(22, 33, 109, 0.4);
}

.logo-text-top {
    color: #fff; /* White color */
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 1;
    user-select: none;
}

.logo-subtext {
    color: #fff; /* White color */
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin: 0;
    margin-top: 2px;
    text-align: center;
    line-height: 1;
    user-select: none;
    transition: color 0.3s ease;
}


.logo:hover .logo-text-top,
.logo:hover .logo-subtext {
    color: #f9a825;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff !important;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 0;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffae42;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #ffae42 !important;
    text-shadow: 0 0 8px rgba(255, 174, 66, 0.5);
}

.dropdown-menu {
    position: absolute;
    z-index: 1500;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #16216d 0%, #ffae42 100%);
    min-width: 240px;
    box-shadow: 0 8px 32px rgba(22, 33, 109, 0.3);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid rgba(255, 174, 66, 0.2);
}

.nav-item:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Ensure dropdown works on all devices */
@media (min-width: 769px) {
    .dropdown-menu {
        display: none;
    }
    .nav-item:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin: 2px 20px;
    transition: all 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: linear-gradient(90deg, #ffae42 0%, #16216d 100%);
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 174, 66, 0.3);
    transform: translateX(5px);
}

.donate-btn {
    background: linear-gradient(135deg, #ffae42 0%);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 174, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.donate-btn:hover::before {
    left: 100%;
}

.donate-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 174, 66, 0.4);
    border-color: #fff;
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #16216d; /* fallback navy blue */
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 33, 109, 0.72) 55%, rgba(69, 179, 107, 0.55) 85%, rgba(255, 174, 66, 0.30) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color:#fff;
    text-shadow: 2px 2px 8px rgba(22, 33, 109, 0.3);
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ffae42; /* orange highlight, logo shade */
    text-shadow: 1px 1px 4px rgba(69, 179, 107, 0.2);
}

.slide-link {
    color: #45b36b;       /* Green button link: matches logo */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    margin-top: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(69, 179, 107, 0.08);
}

.slide-link:hover {
    color: #fff;
    background: linear-gradient(90deg, #16216d 65%, #ffae42 100%);
    text-decoration: underline;
}
/* About Section - 2 Color Only (Navy Blue & Orange) */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(115deg, #16216d 70%, #ffae42 100%) !important;
    border-radius: 24px;
    max-width: 1080px;
    margin: 40px auto 0 auto;
    box-shadow: 0 8px 36px rgba(22,33,109,0.13), 0 2px 10px rgba(255,174,66,0.07);
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 16px 18px;
}

.about-content h1 {
    font-size: 2.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #16216d;  /* Navy blue heading */
    text-shadow: 2px 4px 18px #ffae4240; /* soft orange shadow for depth (optional) */
}

.about-content p {
    font-size: 1.18rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
    color: #16216d;  /* Pure blue text */
    font-weight: 600;
    text-shadow: none;  /* Remove extra shadow */
}
.about-content p.highlight {
    color: #ffae42;     /* Orange highlight */
    font-weight: 700;
    font-size: 1.14rem;
    text-shadow: none;
}


/* Button styling */
.about-content .read-more {
    background: #ffae42;
    color: #16216d;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.08rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(255,174,66,0.15);
}
.about-content .read-more:hover {
    background: #16216d;
    color: #ffae42;
    transform: scale(1.04);
}


.read-more {
    color: #16216d;
    background: #45b36b;
    padding: 6px 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.08rem;
    box-shadow: 0 2px 6px rgba(45,179,107,0.09);
    transition: color 0.2s, background 0.2s;
    display: inline-block;
}

.read-more:hover {
    color: #fff;
    background: #16216d;
    text-decoration: none;
}



/* Impact Counter: Blue + Orange Theme */
.impact-counter {
    background: #f7f8fc;
    padding: 4.5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 2.7rem;
    color: #16216d;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.counter-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 2.2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}

.counter-item {
    background: #fff;
    padding: 2.1rem 1.35rem 1.2rem 1.35rem;
    border-radius: 20px;
    box-shadow: 0 10px 36px rgba(22,33,109,0.13), 0 3px 12px rgba(255,174,66,0.08);
    transition: 
        box-shadow 0.26s cubic-bezier(.25,1,.35,1.08),
        transform 0.16s cubic-bezier(.21,1,.31,1.06),
        border 0.17s;
    border: 2.5px solid #fff;
    position: relative;
    cursor: pointer;
}

.counter-item:hover {
    box-shadow: 0 22px 60px rgba(255,174,66,0.15), 0 6px 40px rgba(22,33,109,0.15);
    transform: translateY(-10px) scale(1.04);
    border: 2.5px solid #ffae42;
    z-index: 2;
}

/* Main numbers + unit: orange */
.counter-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffae42;
    margin-bottom: 0.15rem;
    letter-spacing: 1.3px;
    transition: color 0.17s;
    display: block;
}
.counter-unit {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffae42;
    margin-bottom: 0.7rem;
    letter-spacing: 0.05em;
    display: block;
    transition: color 0.17s;
}
.counter-item:hover .counter-number,
.counter-item:hover .counter-unit {
    color: #16216d;
}

/* Paragraph: muted blue */
.counter-item p {
    color: #234;
    opacity: 0.88;
    font-size: 1.06rem;
    line-height: 1.58;
    font-weight: 500;
    margin-top: 0.6rem;
}

/* Responsive */
@media (max-width: 900px) {
    .counter-item { padding: 1.2rem 0.7rem 1.1rem 0.7rem; }
}


/* Programs Section - Blue & Orange Animation */
.programs-section {
    padding: 5rem 0;
    background: #fff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-card {
    background: #fff;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(22,33,109,0.10), 0 2px 10px rgba(255,174,66,0.09);
    transition: 
        box-shadow 0.27s cubic-bezier(.25,1,.35,.99),
        transform 0.18s cubic-bezier(.24,1,.32,1.01),
        border 0.13s;
    cursor: pointer;
    border: 2px solid #fff;
    position: relative;
    will-change: transform, box-shadow;
}
.program-card:hover {
    box-shadow: 0 16px 40px rgba(255,174,66,0.12), 0 8px 20px rgba(22,33,109,0.12);
    transform: translateY(-8px) scale(1.02);
    border: 2px solid #ffae42;
    z-index: 2;
}

.program-image {
    height: 185px;
    overflow: hidden;
    background: #16216d;
    transition: background 0.18s;
}
.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.31s cubic-bezier(.19,1,.34,1.01);
}
.program-card:hover .program-image img {
    transform: scale(1.09);
}

.program-content {
    padding: 1.34rem 1.1rem 1.1rem 1.1rem;
}

.program-content h3 {
    font-size: 1.22rem;
    font-weight: 900;
    color: #16216d;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: color 0.21s;
}
.program-card:hover .program-content h3 {
    color: #ffae42;
}

.program-content p {
    color: #234;
    line-height: 1.66;
    font-size: 1.07rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 0;
    transition: color 0.21s;
}
.program-card:hover .program-content p {
    color: #ffae42;
}

/* Responsive */
@media (max-width: 900px) {
    .program-card { padding: 0; }
    .program-content { padding: 1rem 0.5rem 1rem 0.5rem; }
}


/* SDG Section Stylish Animation + Brand Accent */
.sdg-section {
    padding: 5rem 0 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.sdg-title {
    color: #16216d;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.2rem;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
    justify-items: center;
}

.sdg-item {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(22,33,109,0.10);
    transition:
        transform 0.25s cubic-bezier(.2,1,.26,1.01),
        box-shadow 0.22s cubic-bezier(.22,1,.34,1),
        border 0.17s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    cursor: pointer;
}
.sdg-item:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 44px rgba(255,174,66,0.13), 0 8px 18px rgba(22,33,109,0.14);
    border: 2px solid #ffae42;
    z-index: 2;
}
.sdg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
    transition: transform 0.27s cubic-bezier(.21,1,.32,1.01);
    display: block;
    background: #f3f3f3;
}
.sdg-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255,174,66,0.12);
}

/* Placeholder/broken image: orange gradient bg */
.sdg-item img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, #ffae42, #ffe9c6 80%);
}

/* Responsive */
@media (max-width: 1100px) {
    .sdg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .sdg-grid { grid-template-columns: repeat(2, 1fr); }
    .sdg-item { width: 85px; height: 85px;}
    .sdg-title { font-size: 1.25rem; }
}

/* Stories Section - Blue & Orange, Horizontal Carousel */
.stories-section {
    padding: 5rem 0 3rem 0;
    background: #fff;
    text-align: center;
}

.stories-title {
    color: #16216d;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 2.1rem;
    text-transform: uppercase;
}


.video-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1.5rem 0;
    justify-content: center;
}

.video-item {
    min-width: 320px;
    max-width: 340px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(22,33,109,0.10);
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.18s, transform 0.18s;
}

.video-item:hover {
    box-shadow: 0 20px 36px rgba(255,174,66,0.13), 0 8px 28px rgba(22,33,109,0.13);
    transform: translateY(-12px) scale(1.04);
}

.video-thumbnail {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background: #f7f8fc;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    background: #f5f5f5;
    transition: transform 0.22s;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.06);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: #ffae42;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16216d;
    font-size: 1.6rem;
    box-shadow: 0 2px 16px rgba(255,174,66,0.13);
    border: 2.5px solid #fff;
    transition: transform 0.21s, background 0.18s, color 0.18s;
    z-index: 2;
}

.video-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.13);
    background: #16216d;
    color: #ffae42;
}

.video-title {
    color: #16216d;
    font-weight: 900;
    font-size: 1.13rem;
    margin: 0.9rem 0 1.1rem 0;
    text-align: center;
}

@media (max-width: 900px) {
    .video-item { min-width: 98vw; max-width: 98vw;}
    .video-thumbnail img { height: 120px;}
}

/* Carousel Navigation - Blue/Orange */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    background: #16216d;
    color: #ffae42;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 2px 12px rgba(22,33,109,0.10);
    transition: background 0.22s, color 0.13s, transform 0.16s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #ffae42;
    color: #16216d;
    transform: scale(1.13);
    border: 2px solid #16216d;
}

@media (max-width: 800px) {
    .video-item { min-width: 210px; max-width: 240px;}
    .video-thumbnail img { height: 120px;}
    .stories-title { font-size: 1.15rem;}
}

.campaigns-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.campaigns-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 400px;
}

.campaign-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Blue to Orange Gradient */
    background: linear-gradient(120deg, #16216d 80%, #ffae42 100%);
    border-radius: 22px;
    padding: 3rem 2rem;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px);
    box-shadow: 0 10px 36px rgba(22,33,109,0.12), 0 2px 14px rgba(255,174,66,0.10);
    transition: all 0.55s cubic-bezier(.2,1,.3,1.02);
}

.campaign-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.campaign-content h3 {
    font-size: 2.45rem;
    font-weight: 900;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffae42;
}

.campaign-content p {
    font-size: 1.15rem;
    line-height: 1.72;
    font-weight: 600;
    margin-bottom: 2.2rem;
    color: #fff;
    opacity: 0.96;
}

.campaign-link {
    color: #ffae42;
    background: none;
    font-weight: 800;
    font-size: 1.13rem;
    padding: 0.68rem 2.1rem;
    border-radius: 7px;
    text-decoration: none;
    transition: background 0.16s, color 0.16s;
    border: 2px solid #ffae42;
    display: inline-block;
    box-shadow: 0 2px 9px rgba(255,174,66,0.10);
}
.campaign-link:hover {
    background: #ffae42;
    color: #16216d;
    text-decoration: none;
    border: 2px solid #16216d;
}

@media (max-width: 700px) {
    .campaigns-carousel { height: auto; }
    .campaign-slide { position: static; width: 100%; transform: none; opacity: 1; margin-bottom: 2.1rem; }
    .campaign-content h3 { font-size: 1.3rem;}
}

.partners-section {
    padding: 5rem 0;
    background: #f8f9fa;
    overflow: hidden;
    text-align: center;
}

.partners-title {
    color: #16216d;
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    transition: color 0.3s ease;
}

.partners-title:hover {
    color: #ffae42;
}

.partners-columns {
    display: flex;
    gap: 1.6rem;
    height: 400px;
    margin-top: 2.5rem;
    justify-content: center;
}

.partner-column {
    flex: 1;
    min-width: 160px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-logos {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    animation-duration: 28s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.scrolling-up {
    animation-name: scrollUp;
}

.scrolling-down {
    animation-name: scrollDown;
}

@keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-52%); }
}

@keyframes scrollDown {
    0%   { transform: translateY(-52%);}
    100% { transform: translateY(0);}
}

.partner-logo-card {
    background: #fff;
    border-radius: 15px;
    padding: 1rem 0.6rem;
    box-shadow: 0 8px 28px rgba(22,33,109,0.12), 0 2px 12px rgba(255,174,66,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border 0.15s ease;
    border: 2px solid #fff;
    min-height: 95px;
    min-width: 130px;
    cursor: pointer;
    position: relative;
}

.partner-logo-card:hover {
    box-shadow: 0 20px 48px rgba(255,174,66,0.22), 0 6px 24px rgba(22,33,109,0.18);
    border: 2px solid #ffae42;
    transform: scale(1.08);
    z-index: 5;
}

.partner-logo-card img {
    width: 110px;
    height: 70px;
    object-fit: contain;
    background: #f6f8fb;
    border-radius: 10px;
    transition: box-shadow 0.23s ease, transform 0.23s ease;
    box-shadow: 0 2px 7px rgba(22,33,109,0.08);
}

.partner-logo-card:hover img {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(255,174,66,0.22);
}

@media (max-width: 900px) {
    .partners-columns { 
        flex-direction: column;
        gap: 1rem;
        height: auto;
        align-items: center;
    }
    .partner-column { 
        min-width: 70vw;
        max-width: 92vw;
        margin: 0 auto 1.3rem;
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .partners-columns { 
        flex-direction: column;
        height: auto;
        gap: 1rem;
        align-items: center;
    }
    .partner-column {
        min-width: unset;
        width: 95vw;
        margin: 0 auto 1.2rem;
        align-items: center;
    }
    .partner-logo-card {
        width: 92vw;
        max-width: 100%;
        min-width: unset;
        margin: 0 auto 1rem;
    }
}


/* Accreditations Section */
.accreditations-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.accreditations-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.accreditation-slide {
    display: none;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.accreditation-slide.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.accreditation-content img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.accreditation-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.accreditation-content p {
    color: #666;
    line-height: 1.6;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #16216d;
    transform: scale(1.2);
}

/* Page Header with Classic & Modern Styling */
.page-header {
    background: linear-gradient(120deg, #16216d 68%, #45b36b 100%);
    color: #fff;
    padding: 7rem 0 3.5rem 0;
    margin-top: 70px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 8px 36px rgba(22,33,109,0.10), 0 2px 10px rgba(69,179,107,0.08);
    position: relative;
    overflow: hidden;
    letter-spacing: 1.2px;
    transition: box-shadow 0.3s;
}

.page-header h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 4px 16px rgba(22,33,109,0.23), 0 2px 8px rgba(69,179,107,0.11);
    letter-spacing: 1.5px;
    transition: color 0.25s, text-shadow 0.25s;
    cursor: pointer;
}
.page-header h1:hover {
    color: #ffae42;
    text-shadow: 2px 4px 16px rgba(255,174,66,0.33), 0 2px 8px rgba(22,33,109,0.15);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 0;
    color: #e2fcee;
    text-shadow: 0 2px 6px rgba(69,179,107,0.09);
    letter-spacing: 0.6px;
    transition: color 0.25s;
}
.page-header p:hover {
    color: #ffae42;
}

@media (max-width: 600px) {
    .page-header {
        padding: 4.2rem 0 2rem 0;
        border-radius: 0 0 24px 24px;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .page-header p {
        font-size: 1.02rem;
    }
}



/* Mission Vision Section */
.mission-vision {
    padding: 5rem 0;
    background: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.8rem;
    max-width: 1080px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: #fff;
    padding: 2.8rem 2.3rem;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 6px 28px rgba(22,33,109,0.12);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    cursor: default;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 44px rgba(22,33,109,0.2), 0 6px 20px rgba(69,179,107,0.15);
}

.card-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, #16216d 65%, #45b36b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    box-shadow: 0 6px 16px rgba(69,179,107,0.15);
    transition: background 0.3s, box-shadow 0.3s;
}

.card-icon i {
    font-size: 2.2rem;
    color: #fff;
    transition: color 0.3s;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    background: linear-gradient(145deg, #45b36b 65%, #16216d 100%);
    box-shadow: 0 10px 36px rgba(255,174,66,0.22);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #16216d;
    margin-bottom: 1rem;
    letter-spacing: 0.6px;
}

.mission-card p, .vision-card p {
    color: #4b5d51;
    line-height: 1.75;
    font-size: 1.12rem;
    opacity: 0.85;
    font-weight: 500;
}

/* About Content (Modern Classic Brand Styling) */
.about-content {
    padding: 5rem 0;
    background: #fff;
    max-width: 1200px;
    margin: 2rem auto 2.5rem auto;
    border-radius: 28px;
    box-shadow: 0 9px 36px rgba(22,33,109,0.11), 0 2px 8px rgba(69,179,107,0.07);
}

/* Responsive, Card-Like Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3.2rem 4rem;
    align-items: center;
    padding: 0 2rem;
}

.content-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #16216d;
    margin-bottom: 1.3rem;
    letter-spacing: 0.7px;
}

.content-text p {
    color: #375045;
    margin-bottom: 1.1rem;
    line-height: 1.8;
    font-size: 1.13rem;
    font-weight: 500;
    text-align: left;
}

.values-list h3 {
    color: #45b36b;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.values-list ul {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    color: #16216d;
    font-size: 1.03rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.values-list i {
    color: #45b36b;
    font-size: 1rem;
}

/* Image Block */
.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 2px 14px rgba(69,179,107,0.10);
    object-fit: cover;
}

/* Responsive for Small Screens */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2.2rem;
    }
    .content-image img {
        max-width: 350px;
    }
}


.values-list {
    margin-top: 2rem;
}

.values-list h3 {
    color: #16216d;
    margin-bottom: 1.1rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: left;
}

.values-list ul {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.05rem;
    color: #35424a;
    font-size: 1.12rem;
    font-weight: 500;
    gap: 0.8rem;
    transition: color 0.15s;
}

.values-list i {
    background: linear-gradient(135deg, #45b36b 60%, #16216d 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 1.14rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 7px rgba(69,179,107,0.14);
    margin-right: 0.7rem;
    transition: background 0.19s;
}

.values-list li:hover i {
    background: linear-gradient(135deg, #16216d 60%, #45b36b 100%);
}

.values-list li:hover,
.values-list li:focus {
    color: #45b36b;
}

/* Content image refinement */
.content-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    box-shadow: 0 8px 34px rgba(69,179,107,0.13), 0 2px 14px rgba(22,33,109,0.09);
    object-fit: cover;
}

.leadership-grid {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0 2rem 0;
}

.leader-card {
    background: #fff;
    border-radius: 2.2rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(22,33,109,0.13), 0 2px 10px rgba(69,179,107,0.09);
    transition: box-shadow 0.28s, transform 0.2s;
    max-width: 350px;
    width: 100%;
    min-width: 285px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    cursor: pointer;
    position: relative;
    padding-bottom: 1.5rem;
}

.leader-card:hover {
    box-shadow: 0 18px 54px rgba(22,33,109,0.16), 0 10px 38px rgba(45,179,107,0.13);
    transform: translateY(-11px) scale(1.035);
}

.leader-image {
    width: 100%;
    aspect-ratio: 4/4;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #e3f9ec;
    border-bottom-left-radius: 2.2rem;
    border-bottom-right-radius: 2.2rem;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.36s cubic-bezier(.27,.8,.46,1);
    border-radius: 0 0 2.2rem 2.2rem;
    display: block;
}

.leader-card:hover .leader-image img {
    transform: scale(1.07) rotate(-2deg);
}

/* Card content area */
.leader-info {
    padding: 1.45rem 1.28rem 0.5rem 1.28rem;
    text-align: center;
}

.leader-info h3 {
    color: #16216d;
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.leader-position {
    color: #45b36b;
    font-weight: 800;
    margin-bottom: 0.85rem;
    font-size: 1.07rem;
    letter-spacing: 0.08em;
}

.leader-bio {
    color: #506260;
    line-height: 1.7;
    font-size: 1.01rem;
    font-weight: 500;
    opacity: 0.97;
}

/* Responsive adjustments (fixes image cut-off on smaller screens) */
@media (max-width: 1100px) {
    .leadership-grid { gap: 1.2rem; }
    .leader-card { max-width: 340px; }
}
@media (max-width: 950px) {
    .leader-image { aspect-ratio: 4/4; }
}
@media (max-width: 700px) {
    .leadership-grid { flex-direction: column; align-items: center; }
    .leader-card { min-width: 90vw; max-width: 99vw; }
    .leader-image { aspect-ratio: 4/3; }
}


/* Reach Section */
.reach-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.3rem;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.reach-item {
    background: #fff;
    padding: 2.3rem 1.1rem 1.9rem 1.1rem;
    border-radius: 1.6rem;
    box-shadow: 0 8px 34px rgba(22,33,109,0.11), 0 2px 10px rgba(45,179,107,0.09);
    transition: box-shadow 0.23s, transform 0.17s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reach-item:hover {
    box-shadow: 0 18px 54px rgba(22,33,109,0.15), 0 10px 44px rgba(69,179,107,0.13);
    transform: translateY(-7px) scale(1.033);
}

.reach-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #45b36b;
    letter-spacing: 2px;
    margin-bottom: 0.28rem;
    transition: color 0.22s, text-shadow 0.22s;
    text-shadow: 0 2px 8px rgba(69,179,107,0.09);
}

.reach-item:hover .reach-number {
    color: #16216d;
    text-shadow: 0 6px 18px rgba(22,33,109,0.12);
}

.reach-item p {
    color: #335b4b;
    font-weight: 600;
    font-size: 1.06rem;
    letter-spacing: 0.015em;
    opacity: 0.9;
    margin-bottom: 0;
}

/* section header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 0.3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #16216d;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 4px 14px rgba(22,33,109,0.04);
    transition: color 0.25s;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: 4px solid #45b36b;
    border-radius: 2px;
    padding-bottom: 0.25rem;
}

.section-header h2:hover {
    color: #45b36b;
    border-bottom: 4px solid #ffae42;
}

.section-header p {
    font-size: 1.12rem;
    color: #45b36b;
    font-weight: 700;
    letter-spacing: 0.12em;
    max-width: 640px;
    margin: 0.32rem auto 0 auto;
    text-shadow: 0 2px 8px rgba(69,179,107,0.07);
    transition: color 0.21s;
}

.section-header p:hover {
    color: #16216d;
}

@media (max-width: 600px) {
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: 1rem; }
}


.awards-section {
    padding: 5rem 0;
    background: #fff;
}

/* Grid Arrangement */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.2rem;
    align-items: stretch;
    margin-top: 2rem;
}

/* Award Card */
.award-item {
    background: #fff;
    padding: 2.3rem 1.4rem 2rem 1.4rem;
    border-radius: 1.6rem;
    box-shadow: 0 8px 32px rgba(22,33,109,0.14), 0 2px 10px rgba(69,179,107,0.09);
    text-align: center;
    transition: 
        box-shadow 0.38s cubic-bezier(.2,1,.31,1.05),
        transform 0.28s cubic-bezier(.2,1,.31,1.05);
    border: none;
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform, box-shadow;
}

.award-item:hover {
    box-shadow: 0 32px 80px rgba(22,33,109,0.19), 0 14px 56px rgba(69,179,107,0.21);
    transform: translateY(-18px) scale(1.055) rotate(-1deg);
    z-index: 2;
}

/* Year Badge - Two Color Gradient */
.award-year {
    background: linear-gradient(120deg,#16216d 55%, #45b36b 100%);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-weight: 900;
    font-size: 1.19rem;
    display: inline-block;
    margin-bottom: 1.2rem;
    box-shadow: 0 3px 12px rgba(69,179,107,0.16);
    letter-spacing: 1.5px;
    border: 2px solid #e8f5ef;
    transition: background 0.21s, color 0.2s;
}

.award-item:hover .award-year {
    background: linear-gradient(110deg,#45b36b 70%, #16216d 100%);
    color: #fff;
    border-color: #c1f3e0;
}

.award-item h3 {
    color: #16216d;
    margin-bottom: 0.77rem;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.award-item p {
    color: #375045;
    font-size: 1.07rem;
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.58;
}

/* Remove old glow—use only 2 colors */
.award-item:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.6rem;
    background: linear-gradient(115deg,rgba(22,33,109,0.09) 0%, rgba(69,179,107,0.04) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 700px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
}


/* Programs Content */
.programs-content {
    padding: 5rem 0;
}

.program-detail {
    margin-bottom: 5rem;
}

.program-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.program-info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.program-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.program-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.program-features {
    margin-bottom: 3rem;
}

.program-features h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #ff9100;        /* Orange shade */
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #0d2152;        /* Deep blue shade */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #2673bb;        /* Medium blue shade for paragraph */
    line-height: 1.6;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, #0d2152 0%, #ff9100 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Campaigns Content */
.campaigns-content {
    padding: 5rem 0;
}

.campaign-detail {
    margin-bottom: 3rem;
}

.campaign-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(38, 63, 161, 0.15), 0 3px 15px rgba(255, 174, 66, 0.12);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.campaign-card:hover {
    box-shadow: 0 24px 72px rgba(38, 63, 161, 0.28), 0 10px 36px rgba(255, 174, 66, 0.25);
    transform: translateY(-10px) scale(1.04);
    z-index: 2;
}

/* Smaller card size for get-involved page only */
.get-involved-page .campaign-card {
    grid-template-columns: 1fr 0.8fr;
    padding: 1rem 1.2rem;
}

.campaign-header {
    padding: 0;
}

.campaign-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #16216d;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.campaign-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.campaign-header ul {
    list-style: disc inside;
    margin-bottom: 1.8rem;
    color: #555;
    font-weight: 500;
    font-size: 1.05rem;
}

.campaign-header ul li {
    margin-bottom: 0.6rem;
}

.donate-link {
    background: linear-gradient(135deg, #16216d 60%, #ffae42 100%);
    color: white;
    padding: 0.9rem 2.4rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 22px rgba(38, 63, 161, 0.28);
    transition: background 0.3s ease, transform 0.3s ease;
}

.donate-link:hover {
    background: linear-gradient(135deg, #ffae42 60%, #16216d 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 36px rgba(38, 63, 161, 0.48);
    color: white;
}

.campaign-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(38, 63, 161, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.campaign-card:hover .campaign-image {
    box-shadow: 0 20px 48px rgba(38, 63, 161, 0.22);
    transform: scale(1.07);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .campaign-card {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.2rem;
    }
    .campaign-header h2 {
        font-size: 2rem;
    }
    .campaign-header p {
        font-size: 1rem;
    }
    .donate-link {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
    .campaign-image {
        margin-top: 1.5rem;
        height: 280px;
    }
}

.campaign-header {
    padding: 3rem;
}

.campaign-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.campaign-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.donate-link {
    background: linear-gradient(135deg, #101f5e, #ff9100);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.donate-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 38, 83, 0.3);
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Resources Sections */
.annual-reports {
    padding: 5rem 0;
    background: white;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.report-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #f1f2f6;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 174, 66, 0.1), transparent);
    transition: left 0.5s ease;
}

.report-card:hover::before {
    left: 100%;
}

.report-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 174, 66, 0.15), 0 8px 20px rgba(22, 33, 109, 0.1);
    border-color: #ffae42;
}

.report-year {
    background: #101f5e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.report-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.report-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #101f5e;
    border: 2px solid #101f5e;
}

.btn-outline:hover {
    background: #101f5e;
    color: white;
    transform: translateY(-2px);
}

/* Newsletter Archive */
.newsletter-archive {
    padding: 5rem 0;
    background: #f8f9fa;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.newsletter-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.newsletter-item:hover {
    transform: translateY(-5px);
}

.newsletter-date {
    color:#101f5e;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.newsletter-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.newsletter-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Stories Archive */
.stories-archive {
    padding: 5rem 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-category {
    background: #101f5e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-date {
    color: #101f5e;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Impact Stats */
.impact-stats {
    padding: 5rem 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    color: #101f5e;
    margin-bottom: 1rem;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-period {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Program Impact */
.program-impact {
    padding: 5rem 0;
    background: white;
}

.impact-programs {
    display: grid;
    gap: 3rem;
}

.impact-program-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.program-header-impact {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.program-header-impact .program-icon {
    margin-right: 1.5rem;
    margin-bottom: 0;
}

.program-header-impact h3 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
}

.program-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #101f5e;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
}

.program-achievements h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-achievements ul {
    list-style: none;
}

.program-achievements li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.program-achievements li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #101f5e;
    font-weight: bold;
}
.footer {
    background: linear-gradient(135deg, #16216d 0%);
    color: #c9d6ff;
    padding: 3rem 0 2rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    align-items: flex-start;
}

.footer .footer-content .footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.footer .footer-content h4 {
    color: #c9d6ff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer .footer-content ul {
    list-style-type: none;
    padding: 0;
}

.footer .footer-content ul li {
    margin-bottom: 0.6rem;
}

.footer .footer-content ul li a {
    color: #c9d6ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer .footer-content ul li a:hover {
    color: #ffae42;
}

/* Footer Logo and Text */
.footer .footer-logo h3 {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: #fff;
    gap: 0.5rem;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.footer .footer-logo p {
    color: #aab8ff;
    font-size: 1rem;
    margin-top: 0;
    line-height: 1.4;
    max-width: 220px;
}

/* Footer Social Links */
.footer .social-links {
    margin-top: 0.8rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer .social-links a {
    background: linear-gradient(135deg, #16216d 60%, #ffae42 100%);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 174, 66, 0.4);
}

.footer .social-links a:hover {
    background: #fff;
    color: #ffae42;
    transform: scale(1.15);
}

/* Footer Bottom */
.footer .footer-divider {
    height: 1.2px;
    background-color: #16216d;
    margin: 2rem auto;
    max-width: 1280px;
}

.footer .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #859fff;
    align-items: center;
}

.footer .footer-bottom p {
    margin: 0;
}

.footer .footer-bottom a {
    color: #859fff;
    /* margin-left: 1rem; */
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer .footer-bottom a:hover {
    color: #ffae42;
}

/* Newsletter */
.newsletter-section {
    text-align: center;
    padding: 2.5rem 0 2.8rem 0;
    border-top: 2px solid #18294a;
    background: #101f5e;
}

.newsletter-section h3 {
    color: #c9d6ff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-section form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-section input[type="text"],
.newsletter-section input[type="email"] {
    flex: 1 1 180px;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    outline-color: #ffae42;
}

.newsletter-section .submit-btn {
    background: linear-gradient(135deg, #263fa1 60%, #ffae42 100%);
    color: white;
    border-radius: 25px;
    border: none;
    padding: 0.7rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 19px rgba(255, 174, 66, 0.46);
    transition: all 0.3s ease;
}

.newsletter-section .submit-btn:hover {
    background: #ffae42;
    color: #16216d;
    box-shadow: 0 8px 25px rgba(38, 63, 161, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .footer .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        font-size: 0.85rem;
    }
    .newsletter-section form {
        flex-direction: column;
    }
}


/* ============================================
   ENHANCED FORM STYLING - Modern & Professional
   ============================================ */

/* CSS Custom Properties for Form Colors */
:root {
    --form-primary: #16216d;
    --form-secondary: #45b36b;
    --form-accent: #ffae42;
    --form-bg: #ffffff;
    --form-border: #e1e8f0;
    --form-text: #2d3748;
    --form-placeholder: #a0aec0;
    --form-focus: #3182ce;
    --form-shadow: rgba(22, 33, 109, 0.1);
    --form-shadow-hover: rgba(22, 33, 109, 0.15);
}

/* Base Form Container */
.form-container {
    background: var(--form-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px var(--form-shadow);
    border: 1px solid var(--form-border);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--form-primary) 0%, var(--form-secondary) 50%, var(--form-accent) 100%);
}

/* Form Headers */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--form-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-subtitle {
    color: var(--form-text);
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Enhanced Input Fields */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--form-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--form-bg);
    color: var(--form-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    position: relative;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--form-focus);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
    transform: translateY(-2px);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: var(--form-accent);
}

/* Input with Icons */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--form-placeholder);
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.input-with-icon .form-input {
    padding-left: 3rem;
}

.input-with-icon .form-input:focus + .input-icon {
    color: var(--form-focus);
}

/* Placeholder Styling */
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--form-placeholder);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
    opacity: 0.7;
}

/* Textarea Specific */
.form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Select Dropdown */
.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 3rem;
}

/* Checkbox and Radio */
.form-checkbox,
.form-radio {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--form-text);
}

.form-checkbox input,
.form-radio input {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--form-primary);
    cursor: pointer;
}

.form-checkbox label,
.form-radio label {
    cursor: pointer;
    user-select: none;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    box-sizing: border-box;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--form-primary) 0%, var(--form-secondary) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 33, 109, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--form-secondary) 0%, var(--form-primary) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(22, 33, 109, 0.3);
    color: white;
}

/* Secondary Button */
.btn-secondary {
    background: linear-gradient(135deg, var(--form-accent) 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 174, 66, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, var(--form-accent) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 174, 66, 0.3);
    color: white;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--form-primary);
    border: 2px solid var(--form-primary);
    box-shadow: 0 2px 8px rgba(22, 33, 109, 0.1);
}

.btn-outline:hover {
    background: var(--form-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 33, 109, 0.2);
}

/* Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
    animation: slideInDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Specific Form Improvements */

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-input {
    border-radius: 50px;
    border: 2px solid var(--form-accent);
    background: rgba(22, 33, 109, 0.05);
    padding: 0.8rem 1.5rem;
}

.newsletter-form .form-input:focus {
    background: white;
    border-color: var(--form-primary);
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    min-width: 140px;
    font-size: 0.9rem;
}

/* Contact Form Box - Classic Style */
.contact-form-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: none;
    border-radius: 14px;
    margin: 2rem auto;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    max-width: 650px;
    box-shadow: 0 5px 25px 0 rgba(22, 33, 109, 0.10);
    position: relative;
}
.contact-form-container::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #f9a825;
    border-radius: 14px 14px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}
.contact-form-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #182465;
    margin-top: 16px;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.contact-form-description {
    font-size: 1rem;
    color: #304057;
    margin-bottom: 1.3rem;
}
.contact-form {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    width: 100%;
}
.contact-form .row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
    flex: 1;
    border: 1.7px solid #b0bec5;
    background: linear-gradient(120deg, #f8fafc 85%, #e0ecfc 100%);
    border-radius: 7px;
    padding: 12px 14px;
    font-size: 1.07rem;
    color: #183b6a;
    box-shadow: 0 3px 14px 0 rgba(36, 74, 176, 0.12);
    outline: none;
    transition: border 0.23s, box-shadow 0.20s, background 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2671cb;
    background: linear-gradient(120deg, #eaf6ff 65%, #f7ffff 100%);
    box-shadow: 0 5px 20px 0 rgba(38, 100, 190, 0.17);
}
.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #779ddc;
    background: linear-gradient(120deg, #f4fafd 80%, #e9eefe 100%);
}
.contact-form select {
    flex: 1;
    border: 2px solid #f9a825;
    background: linear-gradient(120deg, #fffaf6 75%, #e3f6ff 100%);
    border-radius: 8px;
    padding: 14px 42px 14px 16px;
    font-size: 1.09rem;
    color: #23457a;
    box-shadow: 0 4px 18px 0 rgba(41,128,185,0.11);
    outline: none;
    cursor: pointer;
    appearance: none;
    position: relative;
    transition: border 0.21s, box-shadow 0.18s, background 0.22s;
}
.contact-form select:focus {
    border-color: #2671cb;
    background: linear-gradient(120deg, #e3f6ff 85%, #fffde7 100%);
    box-shadow: 0 6px 22px 0 rgba(41,128,185,0.13);
}

.contact-form select:hover {
    border-color: #ffbf47;
    background: linear-gradient(120deg, #f5fbff 70%, #f9f6dd 100%);
}

.contact-form select::-ms-expand {
    display: none; /* IE */
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9bb3db;
    letter-spacing: 0.4px;
    opacity: 0.96;
}
.contact-form label {
    font-size: 1rem;
    color: #304057;
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
}
.contact-form textarea {
    min-height: 60px;
    resize: vertical;
}
.contact-form button {
    background: #182465;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
    padding: 9px 18px;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 7px 0 rgba(22, 33, 109, 0.12);
}
.contact-form button:hover {
    background: #f9a825;
    color: #182465;
}
/* Add a down arrow icon using pseudo-element */
.contact-form select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='18' width='18' viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
}

/* For custom option height and spacing (Chrome/Edge only) */
.contact-form select option {
    padding: 12px 18px;
    font-size: 1.02rem;
    background: #fff;
    color: #293a6c;
}



/* Donation Form */
.donation-form {
    max-width: 400px;
    margin: 0 auto;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.amount-btn {
    background: var(--form-bg);
    border: 2px solid var(--form-border);
    color: var(--form-text);
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.amount-btn:hover,
.amount-btn.selected {
    background: linear-gradient(135deg, var(--form-primary) 0%, var(--form-secondary) 100%);
    color: white;
    border-color: var(--form-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 33, 109, 0.2);
}

/* Form Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation States */
.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-input.success,
.form-textarea.success,
.form-select.success {
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message::before {
    content: '⚠';
    font-size: 0.8rem;
}

/* Responsive Form Design */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .amount-btn.custom {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0;
    }

    .donation-amounts {
        grid-template-columns: 1fr;
    }
}



/* Donation Modal */
.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.donation-modal.active {
    display: flex;
}

.donation-modal .modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.donation-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #16216d;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.donation-modal .modal-close:hover {
    background: #ffae42;
    color: #16216d;
    transform: scale(1.1);
}

.donation-modal h3 {
    color: #16216d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.donation-modal p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    background: #f8f9fa;
    border: 2px solid #16216d;
    color: #16216d;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.amount-btn:hover,
.amount-btn.selected {
    background: #16216d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 33, 109, 0.3);
}

.amount-btn.custom {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #16216d 60%, #ffae42 100%);
    color: white;
    border: none;
}

.amount-btn.custom:hover,
.amount-btn.custom.selected {
    background: linear-gradient(135deg, #ffae42 60%, #16216d 100%);
}

.donation-modal .form-group {
    margin-bottom: 1.5rem;
}

.donation-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #16216d;
    font-weight: 600;
    font-size: 0.95rem;
}

.donation-modal .form-group input,
.donation-modal .form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.donation-modal .form-group input:focus,
.donation-modal .form-group select:focus {
    outline: none;
    border-color: #16216d;
    box-shadow: 0 0 0 3px rgba(22, 33, 109, 0.1);
}

.donation-modal .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.donation-modal .form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.donation-modal .donate-btn {
    width: 100%;
    background: linear-gradient(135deg, #16216d 60%, #ffae42 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donation-modal .donate-btn:hover {
    background: linear-gradient(135deg, #ffae42 60%, #16216d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 174, 66, 0.4);
}

#paymentStatus {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

#paymentStatus.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#paymentStatus.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 600px) {
    .donation-modal .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }

    .donation-modal h3 {
        font-size: 1.5rem;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .amount-btn.custom {
        grid-column: 1 / -1;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Newsletter Popup */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.newsletter-popup.active {
    display: flex;
}

.popup-content {
    background: white;
    max-width: 500px;
    width: 90%;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
}

.popup-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.popup-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.popup-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.popup-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.popup-form input:focus {
    outline: none;
    border-color: #cd2653;
}

.captcha-container {
    margin-bottom: 1.5rem;
    text-align: left;
}

.captcha-container label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Government Popup */
.govt-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.govt-popup.active {
    display: flex;
}

.govt-popup .popup-content {
    max-width: 800px;
}

.govt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.govt-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.govt-icon {
    width: 60px;
    height: 60px;
    background: #cd2653;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.govt-icon i {
    font-size: 1.5rem;
    color: white;
}

.govt-item h4 {
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.govt-item ul {
    list-style: none;
    text-align: left;
}

.govt-item li {
    color: #666;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid,
    .program-header,
    .campaign-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .counter-grid,
    .programs-grid,
    .stories-grid,
    .blog-grid,
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sdg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partners-columns {
        flex-direction: column;
        height: auto;
    }
    
    .partner-column {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .campaign-content h3 {
        font-size: 2rem;
    }
    
    .popup-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Help Cards Improvements with blue-orange colors */
.help-card {
    background: white;
    padding: 3rem 2rem 2.5rem 2rem;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 10px 38px rgba(38, 63, 161, 0.11), 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(.4,2.1,.57,.96), box-shadow 0.25s;
    border: none;
    position: relative;
}

.help-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 16px 45px rgba(38, 63, 161, 0.18), 0 4px 12px rgba(38, 63, 161, 0.08);
    z-index: 2;
}

.help-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(135deg, #263fa1 60%, #ffae42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    box-shadow: 0 6px 12px rgba(38, 63, 161, 0.3);
    animation: scalePulse 3.5s ease-in-out infinite;
}

.help-icon i {
    font-size: 2.1rem;
    color: white;
}

@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 12px rgba(38, 63, 161, 0.3);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 10px 24px rgba(38, 63, 161, 0.5);
    }
}

.help-card h3 {
    color: #263fa1;
    margin-bottom: 1rem;
    font-size: 1.55rem;
    font-weight: 700;
    text-transform: capitalize;
}

.help-card p {
    color: #505050;
    margin-bottom: 2.3rem;
    line-height: 1.7;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #263fa1 60%, #ffae42 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    width: 90%;
    box-shadow: 0 8px 22px rgba(38, 63, 161, 0.28);
    margin: 0 auto;
    display: block;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.35s all ease-in-out;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffae42 10%, #263fa1 80%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 36px rgba(38, 63, 161, 0.48);
    color: #fff;
}


/* Contact Section Styles with Blue-Orange Theme */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-item {
    display: flex;
    align-items: center;  /* Center vertically */
    justify-content: flex-start; /* Align left horizontally */
    gap: 1.2rem;
    padding: 1em; /* Add padding around the item */
    border-bottom: 1px solid #e0e5f8;
    margin-bottom: 0.7em;
}

.contact-item img {
    padding: 10px; /* Add padding inside the image */
    display: block;
    margin: 0 auto; /* Center image horizontally */
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #263fa1 60%, #ffae42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 7px rgba(38, 63, 161, 0.2);
}

.contact-icon i {
    font-size: 1.45rem;
    color: white;
}

.contact-text {
    color: #222;
}

.contact-text h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
    letter-spacing: 0.2px;
}

.contact-text p {
    color: #4a4a4a;
    font-size: 1.02rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Contact Form Container Styles */
.contact-form-container {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 100%);
    padding: 3.5rem 4rem 4rem 4rem;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(22, 33, 109, 0.15), 0 4px 12px rgba(255, 174, 66, 0.1);
    max-width: 1000px;
    margin: 2rem auto 2rem auto;
    border: 2px solid #d4e4ff;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #16216d 0%, #45b36b 50%, #ffae42 100%);
}

.contact-form-container h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #16216d;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid #ffae42;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.contact-form-container p {
    color: #3949ab;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Regional Offices Section Improvements */
.regional-offices {
    padding: 4rem 0 5rem 0;
    background: #f9fbff;
}

.regional-offices .section-header {
    margin-bottom: 3.5rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem 3rem;
}

.office-card {
    background: #fff;
    padding: 1.8rem 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(22, 33, 109, 0.1);
    transition: box-shadow 0.3s ease;
    cursor: default;
}

.office-card:hover {
    box-shadow: 0 12px 36px rgba(69, 179, 107, 0.2);
}

.office-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #16216d;
    margin-bottom: 1rem;
}

.office-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Section Improvements */
.faq-section {
    padding: 4rem 0 5rem 0;
    background: #fff;
}

.faq-section .section-header {
    margin-bottom: 3.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    border-bottom: 1px solid #e0e5f8;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #16216d;
    margin-bottom: 0.6rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #16216d 0%);
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1 1 160px;
  min-width: 150px;
}

.footer-column h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  color: #ff7f00; /* Orange color */
  border-bottom: 2px solid #ff7f00;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff7f00;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ff7f00;
  margin: 30px 0;
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-contact p {
  margin: 0;
  line-height: 1.5;
}

.footer-contact a {
  color: #ff7f00;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff7f00;
  color: #0a2e6e;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #e67300;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Comprehensive Mobile Responsiveness for 480px and below */
@media (max-width: 480px) {
    /* Header and Navigation */
    .header {
        padding: 8px 0;
    }

    .nav-wrapper {
        padding: 0 10px;
    }

    .logo-img {
        height: 45px;
        width: 45px;
    }

    .logo-text-top,
    .logo-subtext {
        font-size: 0.6rem;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #16216d;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: unset;
        margin-top: 8px;
    }

    .dropdown-link {
        font-size: 0.9rem;
        padding: 8px 15px;
        margin: 0;
    }

    .hamburger {
        display: flex;
    }

    .donate-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Hero Slider */
    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content h2 {
        font-size: 1.1rem;
    }

    .slide-link {
        padding: 6px 12px;
        font-size: 1rem;
    }

    /* About Section */
    .about-section {
        padding: 2rem 0;
        margin: 15px auto 30px auto;
    }

    .about-content h1 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .about-content .read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Impact Counter */
    .impact-counter {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .counter-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .counter-item {
        padding: 1.2rem 0.8rem 0.8rem 0.8rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-unit {
        font-size: 0.95rem;
    }

    .counter-item p {
        font-size: 0.9rem;
    }

    /* Programs Section */
    .programs-section {
        padding: 2.5rem 0;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .program-card {
        padding: 0;
    }

    .program-image {
        height: 140px;
    }

    .program-content {
        padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    }

    .program-content h3 {
        font-size: 1rem;
    }

    .program-content p {
        font-size: 0.9rem;
    }

    /* SDG Section */
    .sdg-section {
        padding: 2rem 0 1.5rem 0;
    }

    .sdg-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .sdg-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        justify-items: center;
    }

    .sdg-item {
        width: 60px;
        height: 60px;
    }

    /* Stories Section */
    .stories-section {
        padding: 2rem 0 1.5rem 0;
    }

    .stories-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .video-wrapper {
        gap: 0.8rem;
        padding: 1rem 0;
    }

    .video-item {
        min-width: 85vw;
        max-width: 85vw;
    }

    .video-thumbnail img {
        height: 90px;
    }

    /* Campaigns Section */
    .campaigns-section {
        padding: 3rem 0;
    }

    .campaigns-carousel {
        height: 350px;
    }

    .campaign-slide {
        padding: 2rem 1.5rem;
    }

    .campaign-content h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .campaign-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .campaign-link {
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }

    /* Partners Section */
    .partners-section {
        padding: 3rem 0;
    }

    .partners-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .partners-columns {
        gap: 0.8rem;
        height: 350px;
    }

    .partner-column {
        min-width: 120px;
    }

    .partner-logos {
        gap: 1rem;
    }

    .partner-logo-card {
        padding: 0.8rem 0.4rem;
        min-height: 80px;
        min-width: 110px;
    }

    .partner-logo-card img {
        width: 90px;
        height: 60px;
    }

    /* Accreditations Section */
    .accreditations-section {
        padding: 3rem 0;
    }

    .accreditation-slide {
        padding: 2rem;
    }

    .accreditation-content img {
        max-width: 250px;
        height: 160px;
    }

    .accreditation-content h3 {
        font-size: 1.3rem;
    }

    .accreditation-content p {
        font-size: 0.95rem;
    }

    /* Page Header */
    .page-header {
        padding: 3rem 0 2rem 0;
        border-radius: 0 0 20px 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Mission Vision */
    .mission-vision {
        padding: 3rem 0;
    }

    .mission-vision-grid {
        gap: 2rem;
    }

    .mission-card, .vision-card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 2rem;
    }

    .mission-card h3, .vision-card h3 {
        font-size: 1.7rem;
    }

    .mission-card p, .vision-card p {
        font-size: 1rem;
    }

    /* About Content */
    .about-content {
        padding: 3rem 0;
        margin: 1rem auto 1.5rem auto;
    }

    .content-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .content-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .content-text p {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .values-list h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .values-list ul {
        padding-left: 0;
    }

    .values-list li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        gap: 0.4rem;
    }

    .values-list i {
        font-size: 0.9rem;
        width: 20px;
        height: 20px;
    }

    .content-image img {
        max-width: 300px;
    }

    /* Leadership Grid */
    .leadership-grid {
        gap: 1.5rem;
    }

    .leader-card {
        max-width: 100%;
        min-width: 85vw;
        padding-bottom: 1rem;
    }

    .leader-image {
        aspect-ratio: 3/4;
    }

    .leader-info {
        padding: 1rem 1rem 0.3rem 1rem;
    }

    .leader-info h3 {
        font-size: 1.15rem;
    }

    .leader-position {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .leader-bio {
        font-size: 0.95rem;
    }

    /* Reach Section */
    .reach-section {
        padding: 3rem 0;
    }

    .reach-grid {
        gap: 1.5rem;
    }

    .reach-item {
        padding: 1.8rem 0.8rem 1.5rem 0.8rem;
    }

    .reach-number {
        font-size: 2rem;
    }

    .reach-item p {
        font-size: 0.95rem;
    }

    /* Awards Section */
    .awards-section {
        padding: 3rem 0;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .award-item {
        padding: 1.8rem 1rem 1.5rem 1rem;
        min-height: 180px;
    }

    .award-year {
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
    }

    .award-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .award-item p {
        font-size: 0.95rem;
    }

    /* Programs Content */
    .programs-content {
        padding: 3rem 0;
    }

    .program-detail {
        margin-bottom: 3rem;
    }

    .program-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .program-info h2 {
        font-size: 2rem;
    }

    .program-info p {
        font-size: 1rem;
    }

    .program-image img {
        border-radius: 12px;
    }

    .program-features {
        margin-bottom: 2rem;
    }

    .program-features h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item i {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .program-stats {
        padding: 2rem;
        border-radius: 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    /* Campaigns Content */
    .campaigns-content {
        padding: 3rem 0;
    }

    .campaign-detail {
        margin-bottom: 2rem;
    }

    .campaign-card {
        grid-template-columns: 1fr;
        padding: 1rem 1rem;
    }

    .campaign-header {
        padding: 2rem 0;
    }

    .campaign-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .campaign-header p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .campaign-header ul {
        margin-bottom: 1.5rem;
    }

    .campaign-header ul li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .donate-link {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .campaign-image {
        margin-top: 1rem;
        height: 250px;
    }

    /* Resources Sections */
    .annual-reports {
        padding: 3rem 0;
    }

    .reports-grid {
        gap: 1.5rem;
    }

    .report-card {
        padding: 2rem;
    }

    .report-year {
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
    }

    .report-card h3 {
        margin-bottom: 1rem;
    }

    .report-card p {
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .btn-outline {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    /* Newsletter Archive */
    .newsletter-archive {
        padding: 3rem 0;
    }

    .newsletter-grid {
        gap: 1.5rem;
    }

    .newsletter-item {
        padding: 1.5rem;
    }

    .newsletter-date {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .newsletter-item h3 {
        margin-bottom: 0.8rem;
        font-size: 1.2rem;
    }

    .newsletter-item p {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }

    /* Stories Archive */
    .stories-archive {
        padding: 3rem 0;
    }

    .stories-grid {
        gap: 1.5rem;
    }

    .story-card {
        border-radius: 15px;
    }

    .story-image {
        height: 180px;
    }

    .story-content {
        padding: 1.5rem;
    }

    .story-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .story-content p {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }

    .story-category {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Blog Section */
    .blog-section {
        padding: 3rem 0;
    }

    .blog-grid {
        gap: 1.5rem;
    }

    .blog-post {
        border-radius: 15px;
    }

    .post-image {
        height: 180px;
    }

    .post-content {
        padding: 1.5rem;
    }

    .post-date {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .post-content p {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }

    /* Impact Stats */
    .impact-stats {
        padding: 3rem 0;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .stat-content h3 {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stat-content p {
        margin-bottom: 0.3rem;
        font-size: 0.95rem;
    }

    .stat-period {
        font-size: 0.85rem;
    }

    /* Program Impact */
    .program-impact {
        padding: 3rem 0;
    }

    .impact-programs {
        gap: 2rem;
    }

    .impact-program-card {
        padding: 2rem;
    }

    .program-header-impact {
        margin-bottom: 1.5rem;
    }

    .program-header-impact .program-icon {
        margin-right: 1rem;
    }

    .program-header-impact h3 {
        font-size: 1.5rem;
    }

    .program-metrics {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .metric {
        padding: 1rem;
    }

    .metric-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .metric-label {
        font-size: 0.85rem;
    }

    .program-achievements h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .program-achievements ul {
        padding-left: 1rem;
    }

    .program-achievements li {
        padding: 0.4rem 0;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 1rem 1.5rem 1rem;
    }

    .footer .footer-content {
        gap: 1.5rem;
    }

    .footer .footer-content .footer-section {
        flex: 1 1 200px;
        gap: 1.5rem;
    }

    .footer .footer-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .footer .footer-content ul li a {
        font-size: 0.9rem;
    }

    .footer .footer-bottom {
        font-size: 0.85rem;
        gap: 1rem;
    }

    .footer .social-links {
        gap: 0.8rem;
    }

    .footer .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    /* Newsletter Section */
    .newsletter-section {
        padding: 2rem 0 2.2rem 0;
    }

    .newsletter-section h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .newsletter-section form {
        gap: 0.8rem;
    }

    .newsletter-section input[type="text"],
    .newsletter-section input[type="email"] {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .newsletter-section .submit-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Forms */
    .form-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 1.2rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-checkbox,
    .form-radio {
        gap: 0.6rem;
        font-size: 0.9rem;
    }

    .form-checkbox input,
    .form-radio input {
        width: 1.1rem;
        height: 1.1rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }

    .newsletter-form .form-input {
        padding: 0.7rem 1.2rem;
    }

    .newsletter-form .btn {
        padding: 0.7rem 1.5rem;
        min-width: 120px;
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 2.5rem 2rem 2.5rem 2rem;
        margin: 1.5rem auto;
    }

    .contact-form-heading {
        font-size: 1.8rem;
        margin-top: 12px;
        margin-bottom: 0.3rem;
    }

    .contact-form-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .contact-form .row {
        gap: 10px;
        margin-bottom: 8px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 1rem;
    }

    .contact-form select {
        padding: 12px 38px 12px 14px;
        font-size: 1rem;
    }

    .contact-form label {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .contact-form textarea {
        min-height: 50px;
    }

    .contact-form button {
        padding: 8px 16px;
        margin-top: 10px;
        font-size: 0.95rem;
    }

    .donation-form {
        max-width: 350px;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .amount-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* Modals */
    .donation-modal .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }

    .donation-modal .modal-close {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .donation-modal h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .donation-modal p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .amount-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .donation-modal .form-group {
        margin-bottom: 1.2rem;
    }

    .donation-modal .form-group label {
        font-size: 0.9rem;
    }

    .donation-modal .form-group input,
    .donation-modal .form-group select {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .donation-modal .donate-btn {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .video-modal .modal-content {
        max-width: 90%;
    }

    .video-container {
        padding-bottom: 50%;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .newsletter-popup .popup-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .popup-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .popup-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .popup-form .form-group {
        margin-bottom: 1.2rem;
    }

    .popup-form label {
        font-size: 0.9rem;
    }

    .popup-form input {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .govt-popup .popup-content {
        max-width: 95%;
    }

    .govt-grid {
        gap: 1.5rem;
    }

    .govt-item {
        padding: 1.5rem;
    }

    .govt-icon {
        width: 50px;
        height: 50px;
    }

    .govt-icon i {
        font-size: 1.3rem;
    }

    .govt-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .govt-item ul {
        text-align: left;
    }

    .govt-item li {
        font-size: 0.95rem;
        padding: 0.3rem 0;
    }

    /* Help Cards */
    .help-card {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }

    .help-icon {
        width: 70px;
        height: 70px;
    }

    .help-icon i {
        font-size: 1.8rem;
    }

    .help-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .help-card p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
        width: 85%;
    }

    /* Contact Section */
    .contact-details {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 0.8em;
        gap: 1rem;
    }

    .contact-item img {
        padding: 8px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.3rem;
    }

    .contact-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.05rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }

    /* Contact Form Container */
    .contact-form-container {
        padding: 2.5rem 1.5rem 2.5rem 1.5rem;
        margin: 1.5rem auto;
    }

    .contact-form-container h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .contact-form-container p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Regional Offices */
    .regional-offices {
        padding: 3rem 0 4rem 0;
    }

    .regional-offices .section-header {
        margin-bottom: 2.5rem;
    }

    .offices-grid {
        gap: 2rem 2.5rem;
    }

    .office-card {
        padding: 1.5rem 1.5rem;
    }

    .office-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .office-card p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 3rem 0 4rem 0;
    }

    .faq-section .section-header {
        margin-bottom: 2.5rem;
    }

    .faq-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .faq-item {
        padding-bottom: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.5rem;
        font-size: 13px;
    }

    .footer-container {
        max-width: 1100px;
    }

    .footer-columns {
        gap: 25px;
    }

    .footer-column {
        flex: 1 1 140px;
        min-width: 130px;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-column ul li {
        margin-bottom: 8px;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .footer-divider {
        margin: 25px 0;
    }

    .footer-bottom {
        gap: 15px;
    }

    .footer-contact p {
        line-height: 1.4;
    }

    .footer-social {
        gap: 12px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

 .copyright {
    color: #859fff !important;
    font-size: 1rem;
    text-align: left;
    padding: 1rem 0 0 0.5rem;
    letter-spacing: 0.02em;
    opacity: 0.85;
}
@media (max-width: 600px) {
    .copyright {
        font-size: 0.9rem !important;
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


