/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 50%, #f4c632 100%);
    color: white;
    padding: 180px 5% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Content Section */
.about-content {
    padding: 120px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #2b4e87;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #2b4e87;
    font-weight: 700;
}

/* Values Section */
.about-values h2 {
    color: #2b4e87;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(43, 78, 135, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(43, 78, 135, 0.15);
    border-color: rgba(43, 78, 135, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(43, 78, 135, 0.3);
}

.value-content h3 {
    color: #2b4e87;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 5%;
    background: white;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(43, 78, 135, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(43, 78, 135, 0.15);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4c632 0%, #f8d96c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 25px rgba(244, 198, 50, 0.4);
}

.mission-card h3, .vision-card h3 {
    color: #2b4e87;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Stats Section */
.about-stats {
    padding: 80px 5%;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
}

/* About CTA Section */
.about-cta {
    padding: 120px 5%;
    background: linear-gradient(135deg, #2b4e87 0%, #77c7b5 100%);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-container p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active Navigation Link */
.nav-links > li > a.active {
    color: #2b4e87;
    font-weight: 600;
}

/* Remove blue color on hover for active link */
.nav-links > li > a.active:hover {
    color: #2b4e87 !important; /* Keep blue even on hover */
}

/* Ensure other links change color on hover */
.nav-links > li > a:not(.active):hover {
    color: #2b4e87;
}

/* Responsive Design for About Page */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-text h2,
    .about-values h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 140px 5% 80px;
        margin-top: 60px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .value-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .value-icon {
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary-dark {
        width: 100%;
        max-width: 300px;
    }
}