:root {
    --primary: #2C3E50;
    --secondary: #E74C3C;
    --accent: #3498DB;
    --light: #f1f0ec;
    --dark: #2c503a;
    --text: #333333;
    --white: #FFFFFF;
}

* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.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);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1e5799 0%, #2989d8 50%, #207cca 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
    opacity: 0.15;
    z-index: 1;
}

/* ======================
   VARIABLES & BASE STYLES
   ====================== */
:root {
    --primary: #2C3E50;
    --secondary: #E74C3C;
    --accent: #3498DB;
    --light: #f1f0ec;
    --dark: #2c503a;
    --text: #333333;
    --white: #FFFFFF;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    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);
}

/* =============
   HEADER & NAVIGATION
   ============= */
header {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo img {
    height: 50px;
    margin-right: 10px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
}

/* =============
   HERO SECTIONS
   ============= */



/* =============
   CONTENT SECTIONS
   ============= */
.quick-links {
    padding: 80px 0;
    background-color: var(--white);
}


   /* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #85590186;
        }
        
        .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;
        }
        
        /* 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;
}

/* =============
   FOOTER
   ============= */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    opacity: 0.8;
}

.footer-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-3px);
}

/* ======================
   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;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .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;
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    opacity: 0.8;
}

.footer-social a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .story-card {
        flex-direction: column;
    }
    
    .story-card img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .program-card {
        flex-direction: column;
    }
    
    .program-icon {
        width: 100%;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 20px;
    }
    
    .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;
    }


    