
        /* Contact Section */
        .contact-section .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.8rem;
            margin-top: 1.2rem;
            margin-bottom: 1.2rem;
        }
        
        .diamond-card {
            width: 100%;
            max-width: 580px;
            min-height: 300px;
            background: linear-gradient(135deg, #ffb347 0%, #ff5e62 50%, #36d1c4 100%);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            position: relative;
            transition: box-shadow 0.3s;
            border-radius: 12px;
        }
        
        .diamond-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .diamond-content {
            width: 90%;
            padding: 1.2rem 0.6rem;
            color: #fff;
            text-align: center;
        }
        
        .diamond-card h2, .diamond-card h3, .diamond-card p, .diamond-card label {
            color: #fff;
        }
        
        .contact-form form .form-group {
            margin-bottom: 0.7rem;
            text-align: left;
        }
        
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.35em;
            border-radius: 3px;
            border: none;
            margin-top: 0.15em;
            font-size: 0.85rem;
        }
        
        .contact-form .btn {
            background: #0777f7;
            color: #fff;
            border: none;
            padding: 0.5em 1.2em;
            border-radius: 3px;
            cursor: pointer;
            margin-top: 0.7em;
            font-size: 0.85em;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.6em;
            margin: 0.6em 0;
        }
        
        .contact-item i {
            font-size: 1.1em;
            margin-top: 0.2em;
            color: #fff;
        }
        
        /* Map Section */
        .map-section {
            padding: 25px 0;
            background-color: #f8f9fa;
        }
        
        .map-section h2 {
            text-align: center;
            margin-bottom: 15px;
            color: #2C3E50;
            font-size: 1.6rem;
        }
        
        .map-container {
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        /* Responsive adjustments for other sections */
        @media (max-width: 700px) {
            .diamond-card {
                max-width: 95vw;
                min-height: 280px;
            }
            
            .diamond-content {
                padding: 0.9rem 0.4rem;
            }
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #2980B9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.link-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.link-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.link-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.link-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-card a:hover {
    color: var(--secondary);
}

ABLES & BASE STYLES
   ====================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============
   ANIMATIONS
   ============= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============
   UTILITIES
   ============= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.btn:hover {
    background-color: #2980B9;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #c0392b;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

   CONTENT SECTIONS
   ============= */
.quick-links {
    padding: 80px 0;
    background-color: var(--white);
}


   /* Base Styles */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Impact Stats Section */
        .impact-stats {
            padding: 60px 0;
        }
        
        .impact-stats .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .stat-card {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            padding: 30px 25px;
            border-radius: 12px;
            color: white;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            counter-increment: stat-counter;
        }
        
        .stat-card::before {
            content: counter(stat-counter);
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 40px;
            font-weight: bold;
            opacity: 0.2;
            line-height: 1;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .stat-card h3 {
            font-size: 42px;
            margin: 0 0 10px;
            font-weight: 700;
        }
        
        .stat-card p {
            font-size: 18px;
            margin: 0;
            line-height: 1.4;
        }

  /* Impact Stats Section - Positioned at Bottom */
.impact-stats {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.impact-stats .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    counter-reset: stat-counter;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 20px 15px;
    border-radius: 12px;
    color: white;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    counter-increment: stat-counter;
}

.stat-card::before {
    content: counter(stat-counter);
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 30px;
    font-weight: bold;
    opacity: 0.2;
    line-height: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
    font-size: 32px;
    margin: 0 0 8px;
    font-weight: 700;
}

.stat-card p {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

/* Alternative floating version */
.impact-stats.floating {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    border-radius: 15px;
    padding: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .impact-stats .container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
        min-width: unset;
        padding: 15px 10px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
    
    .stat-card p {
        font-size: 14px;
    }
    
    .impact-stats.floating {
        width: 95%;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        padding: 15px 0;
    }
    
    .stat-card {
        max-width: 250px;
        padding: 12px 8px;
    }
    
    .stat-card h3 {
        font-size: 24px;
    }
}      
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .impact-stats .container {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-card {
                width: 100%;
                max-width: 350px;
            }
        }

.link-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.link-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.link-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.link-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.link-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.link-card a:hover {
    color: var(--secondary);
}

.about-section {
    padding: 80px 0;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-card h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

/* Mission Card - Vibrant Blue */
.about-card:nth-child(1) {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    color: var(--white);
    margin-bottom: 60px; /* Added separation */
}

.about-card:nth-child(1) i,
.about-card:nth-child(1) h2 {
    color: var(--white);
}

/* Vision Card - Purple/Orange Gradient */
.about-card:nth-child(2) {
    background: linear-gradient(135deg, #8E2DE2 0%, #FF6B6B 100%);
    color: var(--white);
    margin-top: 60px; /* Added separation */
}

.about-card:nth-child(2) i,
.about-card:nth-child(2) h2 {
    color: var(--white);
}

.values-section {
    padding: 80px 0;
    background-color: var(--light);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background-color: var(--white);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.value-item h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    background-color: var(--light);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 5px solid var(--accent);
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-member h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.team-member p {
    color: var(--text);
    opacity: 0.8;
}

.programs-section {
    padding: 80px 0;
    background-color: var(--light);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.program-icon {
    background-color: var(--primary);
    color: var(--white);
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.program-content {
    padding: 30px;
    flex: 1;
}

.program-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.program-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.program-content li {
    margin-bottom: 10px;
}

.stats-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    padding: 30px;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-card p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.stories-section {
    padding: 80px 0;
    background-color: var(--white);
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    background-color: var(--light);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.story-card img {
    width: 150px;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-card:hover img {
    transform: scale(1.02);
}

.story-content {
    padding: 30px;
    flex: 1;
}

.story-content h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.story-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-section h2 {
    color: var(--primary);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 30px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text);
    line-height: 1.6;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    color: var(--accent);
    font-size: 3rem;
    line-height: 1;
    position: absolute;
    opacity: 0.2;
}

.testimonial-content::before {
    content: '"';
    top: -15px;
    left: -15px;
}

.testimonial-content::after {
    content: '"';
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--accent);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.testimonial-author p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.9rem;
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

/* =============
   

/* ======================
   RESPONSIVE STYLES
   ====================== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .story-card {
        flex-direction: column;
    }
    
    .story-card img {
        width: 100%;
        height: 200px;
    }
}
    
    .program-card {
        flex-direction: column;
    }
    
    .program-icon {
        width: 100%;
        height: 100px;
    }
    
    .testimonial-author {
        flex-direction: column;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    /* Adjust mission/vision spacing for mobile */
    .about-card:nth-child(1) {
        margin-bottom: 40px;
    }
    .about-card:nth-child(2) {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid,
    .team-grid,
    .program-cards,
    .story-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }

    /* Further adjust mission/vision spacing for small screens */
    .about-card:nth-child(1) {
        margin-bottom: 30px;
    }
    .about-card:nth-child(2) {
        margin-top: 30px;
    }
}


/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--light);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Different colors for each value item */
.value-item:nth-child(1) {
    background-color: #e3f2fd; /* Light blue */
}
.value-item:nth-child(2) {
    background-color: #e8f5e9; /* Light green */
}
.value-item:nth-child(3) {
    background-color: #fff8e1; /* Light yellow */
}
.value-item:nth-child(4) {
    background-color: #fce4ec; /* Light pink */
}
.value-item:nth-child(5) {
    background-color: #f3e5f5; /* Light purple */
}
.value-item:nth-child(6) {
    background-color: #e0f7fa; /* Light cyan */
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Different icon colors for each value item */
.value-item:nth-child(1) i {
    color: #1976d2; /* Blue */
}
.value-item:nth-child(2) i {
    color: #388e3c; /* Green */
}
.value-item:nth-child(3) i {
    color: #ffa000; /* Amber */
}
.value-item:nth-child(4) i {
    color: #d81b60; /* Pink */
}
.value-item:nth-child(5) i {
    color: #8e24aa; /* Purple */
}
.value-item:nth-child(6) i {
    color: #00acc1; /* Cyan */
}

.value-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

/* Different background colors for each team member */
.team-member:nth-child(1) {
    background-color: #fff5f5; /* Soft red */
}
.team-member:nth-child(2) {
    background-color: #f5fff7; /* Soft green */
}
.team-member:nth-child(3) {
    background-color: #f5f9ff; /* Soft blue */
}
.team-member:nth-child(4) {
    background-color: #fffbf5; /* Soft orange */
}
.team-member:nth-child(5) {
    background-color: #faf5ff; /* Soft purple */
}
.team-member:nth-child(6) {
    background-color: #f5ffff; /* Soft cyan */
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Different border colors for each team member's image */
.team-member:nth-child(1) img {
    border: 5px solid #ffcdd2; /* Light red */
}
.team-member:nth-child(2) img {
    border: 5px solid #c8e6c9; /* Light green */
}
.team-member:nth-child(3) img {
    border: 5px solid #bbdefb; /* Light blue */
}
.team-member:nth-child(4) img {
    border: 5px solid #ffe0b2; /* Light orange */
}
.team-member:nth-child(5) img {
    border: 5px solid #d1c4e9; /* Light purple */
}
.team-member:nth-child(6) img {
    border: 5px solid #b2ebf2; /* Light cyan */
}

/* Different name colors for each team member */
.team-member:nth-child(1) h3 {
    color: #d32f2f; /* Red */
}
.team-member:nth-child(2) h3 {
    color: #388e3c; /* Green */
}
.team-member:nth-child(3) h3 {
    color: #1976d2; /* Blue */
}
.team-member:nth-child(4) h3 {
    color: #f57c00; /* Orange */
}
.team-member:nth-child(5) h3 {
    color: #7b1fa2; /* Purple */
}
.team-member:nth-child(6) h3 {
    color: #0097a7; /* Cyan */
}

/* Hover effects for images */
.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Programs Section */
.programs-section {
    padding: 80px 0;
}

.program-card {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.program-icon {
    background-color: var(--primary);
    color: var(--white);
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.program-content {
    padding: 30px;
    flex: 1;
}

.program-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.program-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.program-content li {
    margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    padding: 30px;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent);
}

/* Stories Section */
/* Success Stories Section */
.stories-section {
    padding: 80px 0;
}

.story-card {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Different background colors for each story card */
.story-card:nth-child(1) {
    background-color: #f8f9fa; /* Light gray */
    border-left: 5px solid #6c757d; /* Gray accent */
}
.story-card:nth-child(2) {
    background-color: #fff3cd; /* Light yellow */
    border-left: 5px solid #ffc107; /* Yellow accent */
}
.story-card:nth-child(3) {
    background-color: #d1ecf1; /* Light teal */
    border-left: 5px solid #17a2b8; /* Teal accent */
}
.story-card:nth-child(4) {
    background-color: #e2e3e5; /* Light gray-blue */
    border-left: 5px solid #6610f2; /* Purple accent */
}
.story-card:nth-child(5) {
    background-color: #d4edda; /* Light green */
    border-left: 5px solid #28a745; /* Green accent */
}
.story-card:nth-child(6) {
    background-color: #f8d7da; /* Light pink */
    border-left: 5px solid #dc3545; /* Red accent */
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.story-card img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover img {
    transform: scale(1.02);
}

.story-content {
    padding: 30px;
    flex: 1;
}

/* Different title colors for each story */
.story-card:nth-child(1) .story-content h3 {
    color: #495057; /* Dark gray */
}
.story-card:nth-child(2) .story-content h3 {
    color: #d39e00; /* Dark yellow */
}
.story-card:nth-child(3) .story-content h3 {
    color: #117a8b; /* Dark teal */
}
.story-card:nth-child(4) .story-content h3 {
    color: #4e0dba; /* Dark purple */
}
.story-card:nth-child(5) .story-content h3 {
    color: #1e7e34; /* Dark green */
}
.story-card:nth-child(6) .story-content h3 {
    color: #bd2130; /* Dark red */
}

.story-content p {
    margin-bottom: 20px;
    color: #212529; /* Consistent text color for readability */
}

/* Optional: Add a subtle gradient overlay on images */
.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1) 0%, transparent 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-card:hover::before {
    opacity: 1;
}

/* Testimonials Section */

.testimonials-section {
    padding: 80px 0;
    background-color: #0a8539; /* Light gray background */
    text-align: center;
}

.testimonials-section h2 {
    color: #2c3e50; /* Dark blue-gray for heading */
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db; /* Accent blue */
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1); /* Soft blue shadow */
    border-top: 5px solid #3498db; /* Accent blue border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #495057; /* Dark gray text */
    line-height: 1.6;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    color: #3498db; /* Accent blue */
    font-size: 3rem;
    line-height: 1;
    position: absolute;
    opacity: 0.2;
}

.testimonial-content::before {
    content: '"';
    top: -15px;
    left: -15px;
}

.testimonial-content::after {
    content: '"';
    bottom: -40px;
    right: -15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #3498db; /* Accent blue border */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: #2c3e50; /* Dark blue-gray */
}

.testimonial-author p {
    color: #7f8c8d; /* Gray for position/company */
    margin: 0;
    font-size: 0.9rem;
}


/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

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

    .story-card {
        flex-direction: column;
    }
    
    .story-card img {
        width: 100%;
        height: auto;
    }
}


  
    

    .program-card {
        flex-direction: column;
    }
    
    .program-icon {
        width: 100%;
        height: 100px;
    }
}


    .values-grid {
        grid-template-columns: 1fr;
    }
    
    
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

    .impact-stats .stat-card {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        color: white;
    }
    
    .emoji {
        font-size: 3rem; /* Makes emoji much larger */
        display: block; /* Ensures it's on its own line */
        margin-bottom: 10px; /* Adds space between emoji and text */
    }
    
    h3 {
        margin: 10px 0;
        font-size: 2rem;
    }
    
    p {
        margin: 0;
        font-size: 1.1rem;
    }


    /* Make container padding smaller on mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 60vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .quick-links,
    .about-section,
    .values-section,
    .team-section,
    .programs-section,
    .stats-section,
    .stories-section,
    .testimonials-section,
    .map-section {
        padding: 40px 0;
    }
}

/* Stack grids and cards on small screens */
@media (max-width: 576px) {
    .container {
        padding: 0 5px;
    }
    .link-cards,
    .about-cards,
    .values-grid,
    .team-grid,
    .program-cards,
    .story-cards,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .hero-content h1,
    .page-hero h1 {
        font-size: 1.3rem;
    }
    .stat-card h3 {
        font-size: 2rem;
    }
    .program-card,
    .story-card {
        flex-direction: column;
    }
    .story-card img,
    .program-icon {
        width: 100%;
        height: 150px;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

