﻿.hero-section {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards;
}

.section {
    padding: 5rem 2rem;
}

.section-light {
    background-color: #f8fafc;
}

.section-dark {
    background-color: #1a1f36;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    }

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .card-icon i {
        font-size: 1.5rem;
        color: white;
    }

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1f36;
}

.mission-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-content {
    opacity: 1; /* Changed from 0 to ensure visibility */
    transform: translateX(0); /* Reset transform */
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 1.5rem;
}


.mission-description {
    font-size: 2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mission-list li {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        font-size: 2rem;
        color: #4a5568;
    }

        .mission-list li i {
            color: #667eea;
            margin-right: 1rem;
            font-size: 2rem;
        }

.mission-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    opacity: 1; /* Changed from 0 to ensure visibility */
    transform: translateX(0); /* Reset transform */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

    .mission-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1rem;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.contact-section {
    background: linear-gradient(135deg, #1a1f36 0%, #333b5e 100%);
    color: white;
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.impact-section {
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

    .impact-section::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: repeating-linear-gradient( 45deg, rgba(102, 126, 234, 0.03) 0%, rgba(102, 126, 234, 0.03) 10%, transparent 10%, transparent 50% );
        background-size: 20px 20px;
    }

.impact-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1f36;
    margin-bottom: 3rem;
    position: relative;
}

    .impact-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(to right, #667eea, #764ba2);
        margin: 1rem auto 0;
        border-radius: 2px;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .stat-item.animate {
        animation: slideUpFade 0.6s ease forwards;
    }

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

    .stat-number::after {
        content: '+';
        font-size: 1.5rem;
        position: absolute;
        top: 0;
        right: -1rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.stat-label {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 1rem;
}

    .stat-label::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(to right, #667eea, #764ba2);
        border-radius: 2px;
    }

.stat-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
    opacity: 0.8;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .mission-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .mission-title {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-image {
        order: -1; /* Move image above text on mobile */
        max-height: 400px;
    }

    .mission-section {
        padding: 4rem 1.5rem;
    }
}


@media (max-width: 768px) {
    .impact-section {
        padding: 4rem 1.5rem;
    }

    .impact-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}