/* mission.css - Modern Mission Page Styles */


/* Mission Page Base Styles */

.mission-main {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}


/* Hero Section */

.mission-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(30, 64, 175, 0.85) 100%), url('mission-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.mission-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #f8f9fa, transparent);
    z-index: 1;
}

.mission-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.mission-hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.mission-hero-content .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}


/* Mission Statement Section */

.mission-statement {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

.statement-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.statement-container h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0a2463;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.statement-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 3px;
}

.statement-container>p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-weight: 300;
}


/* Mission Points Grid */

.mission-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, #0a2463, #1e40af);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.mission-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.2) rotate(10deg);
}

.mission-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a2463;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.mission-card:hover h3::after {
    width: 80px;
}

.mission-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}


/* Approach Section */

.approach-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a2463 0%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="rgba(255,255,255,0.05)" d="M0,500 C150,350 350,350 500,500 C650,650 850,650 1000,500 L1000,1000 L0,1000 Z"/></svg>');
    background-size: cover;
}

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.approach-container h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.approach-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    margin: 2rem auto 3rem;
    border-radius: 2px;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.approach-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.approach-features {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}


/* Impact Section */

.impact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.impact-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0a2463;
    margin-bottom: 4rem;
    position: relative;
}

.impact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 2px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0a2463, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
    transition: all 0.4s ease;
}

.impact-card:hover .impact-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a2463;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Call to Action */

.mission-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0a2463;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.3rem;
    color: #0a2463;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: #0a2463;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.3);
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 36, 99, 0.4);
    color: white;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}


/* Animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */

@media (max-width: 992px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .mission-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-hero {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }
    .mission-hero-content h1 {
        font-size: 2.5rem;
    }
    .statement-container h2 {
        font-size: 2.5rem;
    }
    .statement-container>p {
        font-size: 1.2rem;
    }
    .mission-points-grid {
        grid-template-columns: 1fr;
    }
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mission-card,
    .impact-card {
        padding: 2.5rem 2rem;
    }
    .approach-section,
    .mission-statement,
    .impact-section,
    .mission-cta {
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .mission-hero-content h1 {
        font-size: 2.2rem;
    }
    .statement-container h2 {
        font-size: 2rem;
    }
    .approach-container h3 {
        font-size: 2rem;
    }
    .impact-section h2,
    .cta-container h2 {
        font-size: 2.2rem;
    }
    .mission-icon {
        font-size: 3rem;
    }
    .impact-number {
        font-size: 3rem;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}