/* CSS Reset & Variables */
:root {
    --primary-color: #004b87;
    --secondary-color: #ff7f00;
    --dark-color: #222222;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --font-family: 'Mukta', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-color);
}

/* Typography */
h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #003366;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 75, 135, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #e67300;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.2rem;
}

/* Universal Donate Button Color Rule */
a[href="#donate"] {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border: none !important;
}

a[href="#donate"]:hover {
    background-color: #e67300 !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 0, 0.4) !important;
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    max-width: 250px;
    object-fit: contain;
}

#logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    margin-left: 15px;
}

/* Hero Section */
.hero-section {
    padding-top: 130px; /* Offset for fixed header */
    padding-bottom: 80px;
    background-color: #f8f6f0; /* Very light beige/off-white */
}

.hero-full-container {
    width: 100%;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-main-img {
    width: 100%;
    height: auto; /* Natural height, absolutely no cropping */
    border-radius: 20px; 
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Cutout Corners Effect */

.hero-floating-card {
    position: absolute;
    bottom: -20px; right: -20px;
    display: flex; flex-direction: column; align-items: flex-end;
    animation: fadeInUp 1s ease; z-index: 10;
}

.hero-text-box {
    background-color: #2b4b80; /* AIF Dark Blue */
    color: var(--white);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    margin-bottom: 10px; 
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.hero-text-box h1 {
    font-size: 2.4rem; margin: 0; line-height: 1.2; font-weight: 500; color: var(--white);
}

.btn-donate-large {
    background-color: #e81c7f; /* AIF Pink */
    color: white; font-size: 1.4rem; font-weight: 600;
    padding: 15px 40px;
    border-radius: 8px;
    text-transform: capitalize;
    box-shadow: 0 8px 20px rgba(232, 28, 127, 0.3);
    display: inline-block; transition: transform 0.3s ease;
    margin-right: 20px;
}

.btn-donate-large:hover {
    transform: translateY(-3px); color: white;
}

@media (max-width: 768px) {
    .hero-main-img {
        border-radius: 15px;
        max-height: 400px;
        object-fit: cover;
        width: 100%;
    }
    .hero-floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -30px;
        align-items: center;
    }
    .hero-text-box {
        margin-bottom: -15px;
        text-align: center;
        max-width: 100%;
        padding: 20px;
    }
    .btn-donate-large {
        margin-right: 0;
    }
}

/* Section Headings */
.section-heading {
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--secondary-color);
    margin: 15px 0;
}

.text-center .divider {
    margin: 15px auto;
}

/* Approach Section */
/* Approach Section */
.approach {
    position: relative;
    width: 100%;
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
}

.approach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.approach-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.approach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 75, 135, 0.95) 0%, rgba(0, 75, 135, 0.95) 50%, transparent 65%);
}

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

.approach-content {
    max-width: 600px;
}

.approach-title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.approach-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 50px;
    opacity: 0.95;
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    display: flex;
    flex-direction: column;
}

.approach-icon {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 300; /* Makes regular FA icons look thinner */
}

.approach-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 10px;
}

.approach-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--white);
    opacity: 0.85;
    text-align: justify;
}

@media (max-width: 992px) {
    .approach-bg img {
        object-position: center;
    }
    .approach-overlay {
        background: rgba(0, 75, 135, 0.9);
    }
    .approach-title {
        font-size: 3.5rem;
    }
}
@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background-color: #f8f9fa;
    color: var(--dark-text);
}

.impact-container-aif {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.impact-left-aif {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .impact-left-aif {
        flex: 0 0 35%;
        max-width: 35%;
        padding-right: 30px;
    }
}

.impact-left-aif h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.impact-left-aif p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.impact-right-aif {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .impact-right-aif {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-right-aif {
        grid-template-columns: 1fr;
    }
}

.impact-stat-aif {
    position: relative;
    padding-top: 20px;
}

.stat-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 0;
}

.stat-color-1 { background-color: #ff7f00; } /* Orange */
.stat-color-2 { background-color: #004b87; } /* Navy Blue */
.stat-color-3 { background-color: #e91e63; } /* Pink */

.stat-number-wrapper {
    position: relative;
    z-index: 1;
    color: var(--dark-text);
    padding-left: 10px;
}

.count-value {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-block;
    color: var(--secondary-color);
    margin-left: 2px;
}

.stat-desc-aif {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-top: 15px;
    padding-left: 10px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.highlight-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-vision {
    background: #f8f6f0;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-vision h4 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-primary {
    color: var(--primary-color);
    font-size: 3rem !important;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about-content p {
    text-align: justify;
}

/* Programs Section */
.programs {
    padding: 80px 0;
}

.programs-slider-wrapper {
    width: 100%;
    padding: 20px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.programs-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 15px 40px 15px; /* Bottom padding for shadow */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.programs-slider::-webkit-scrollbar {
    display: none;
}

.program-card {
    scroll-snap-align: center;
    width: 380px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 520px;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.program-img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img img {
    transform: scale(1.1);
}

.program-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.program-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: auto; /* Push to bottom */
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Dots Styling */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .program-card {
        width: 85vw;
        max-width: 320px;
        height: 500px;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), #003366);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: #cccccc;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    color: #cccccc;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column-reverse;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: left 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 40px 0;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 25px 0;
    }
    
    .nav-links a {
        font-size: 1.4rem;
        display: block;
        padding: 10px;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
    }

    .nav-actions .btn {
        display: none; /* Hide donate button on small mobile screens to save space, or style it differently */
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* About Page Styles */
.page-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.page-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 75, 135, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

.section-padding { padding: 30px 0; }
.bg-light { background-color: #f4f6f9; }

/* Mission & Vision */
.mv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
}
.mv-row.reverse { flex-direction: row-reverse; }

.mv-text { 
    flex: 1; 
    max-width: 600px;
}
.mv-image { 
    flex: 0 0 500px; 
    position: relative;
}
.mv-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.mv-shape {
    position: absolute;
    top: -30px; left: -30px;
    width: 60%; height: 60%;
    background-color: #aed9e0; /* Light blue */
    z-index: 1;
}
.mv-row.reverse .mv-shape { 
    top: auto; bottom: -30px; left: auto; right: -30px;
    background-color: #e8d5f0; /* Soft Purple */ 
}

.mv-title {
    font-size: 3.5rem; color: var(--primary-color);
    margin-bottom: 30px; font-weight: 800;
}
.mv-desc {
    font-size: 1.8rem; line-height: 1.6;
    color: #444; font-weight: 400;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.value-card {
    background: transparent;
    padding: 10px 5px;
    text-align: center;
}
.value-icon {
    width: 60px; height: 60px; margin: 0 auto 15px;
    color: #e91e63; /* Pink */
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
}
.value-card h3 {
    font-size: 1.6rem; color: #e91e63; /* Pink */
    margin-bottom: 15px; font-weight: 800;
}
.value-card p { font-size: 1rem; line-height: 1.5; color: #444; text-align: center; }

@media (max-width: 992px) {
    .values-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 768px) {
    .mv-row, .mv-row.reverse { flex-direction: column; gap: 30px; }
    .mv-image { flex: auto; max-width: 100%; width: 100%; }
    .page-hero-content h1 { font-size: 3rem; }
    .page-hero-content p { font-size: 1.2rem; }
}

/* Support Our Work Section */
.support-work {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: left center;
    color: var(--white);
}

.support-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient: transparent on left, solid dark blue on right */
    background: linear-gradient(to right, rgba(40,46,60,0) 0%, rgba(40,46,60,0.8) 50%, rgba(40,46,60,1) 100%);
}

.support-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Push content to the right */
    padding: 0 10%;
}

.support-content {
    max-width: 600px;
    text-align: center;
}

.support-work h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.support-work p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.support-btn {
    background-color: #f0a500;
    color: #111 !important;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.support-btn:hover {
    background-color: #d99400;
    color: #000 !important;
}

@media (max-width: 992px) {
    .support-overlay {
        background: rgba(40,46,60,0.8); /* Solid overlay on mobile */
    }
    .support-content-wrapper {
        justify-content: center;
    }
    .support-buttons {
        flex-direction: column;
    }
}

/* Programs Page Styles */
.programs-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.programs-hero-img {
    width: 100%;
    height: auto;
    display: block;
}
.programs-hero-content {
    position: absolute;
    bottom: 50px;
    left: 0; right: 0;
    z-index: 2;
}
.programs-hero-content h1 {
    font-size: 5rem;
    color: #fff;
    font-weight: 800;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.7);
    margin: 0;
    letter-spacing: 1px;
}

/* Program Details */
.program-overview .lead-text { 
    font-size: 1.6rem; 
    color: #444; 
    max-width: 900px; 
    margin: 0 auto; 
    line-height: 1.6; 
}
.program-detail-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
}
.program-detail-row.reverse { flex-direction: row-reverse; }
.program-detail-text { flex: 1; max-width: 600px; }
.program-detail-image { flex: 0 0 500px; position: relative; }
.program-detail-image img { 
    width: 100%; 
    height: 400px;
    object-fit: cover;
    position: relative; 
    z-index: 2; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}
.program-title { font-size: 3.5rem; color: var(--primary-color); font-weight: 800; margin-bottom: 5px; }
.program-subtitle { font-size: 1.8rem; color: #e91e63; margin-bottom: 25px; font-weight: 600; }
.program-detail-text p { font-size: 1.2rem; color: #444; margin-bottom: 30px; line-height: 1.6; }
.program-features { list-style: none; padding: 0; }
.program-features li { font-size: 1.15rem; color: #333; margin-bottom: 15px; display: flex; align-items: center; }
.program-features li i { color: #e91e63; margin-right: 15px; font-size: 1.4rem; }

@media (max-width: 768px) {
    .programs-hero-content h1 { font-size: 3rem; bottom: 30px; }
    .program-detail-row, .program-detail-row.reverse { flex-direction: column-reverse; gap: 40px; }
    .program-detail-image { flex: auto; max-width: 100%; }
    .program-detail-image img { height: auto; max-height: 500px; }
}

/* How We Design Our Programs Section */
.design-programs {
    background-color: #fff;
}
.design-row {
    display: flex;
    align-items: center;
    gap: 80px;
}
.design-text {
    flex: 1;
}
.design-title {
    color: #00a699; /* Teal color matching reference */
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}
.design-intro {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 25px;
}
.highlight-3i {
    color: #e91e63; /* Pink */
    font-weight: 800;
}
.design-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Program Donors */
.program-donor {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 2px dotted #e0e0e0;
}
.program-donor p {
    font-size: 1rem !important;
    color: #888 !important;
    margin-bottom: 10px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.program-donor img {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Helps if logo has white background */
}

.design-image-wrapper {
    flex: 0 0 500px;
    position: relative;
}
.design-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    background-color: #00a699; /* Teal offset shape */
    border-radius: 10px;
    z-index: 1;
}
.design-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: #fff;
    filter: contrast(1.1) saturate(1.1) brightness(1.02);
}

@media (max-width: 992px) {
    .design-row {
        flex-direction: column;
        gap: 60px;
    }
    .design-image-wrapper {
        flex: auto;
        width: 100%;
        max-width: 500px;
        margin: 30px auto 0;
    }
}

/* Impact Hero Responsiveness */
.impact-hero-text-wrapper {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}
.impact-hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .impact-hero-text-wrapper {
        bottom: 10%;
        transform: none;
    }
    .impact-hero-title {
        font-size: 2rem;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    }
}


