/* about.css - Professional About Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, #0a1a3a 0%, #1a3a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 41px;
    overflow: hidden;
    margin-top: -8px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=2000') center/cover;
    opacity: 0.15;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* About Intro Section */
.about-intro {
    background: var(--bg-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #ffc107;
    border-radius: 2px;
}

.about-intro-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 30px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--nav-bg);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    background: linear-gradient(135deg, #f4f4f0 0%, #e8e8e0 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--nav-bg) 0%, #1a4a8e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon ion-icon {
    font-size: 2.5rem;
    color: #ffc107;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.mission-card p,
.vision-card p {
    color: #555;
    line-height: 1.7;
}

/* Core Values Section */
.core-values {
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(21, 58, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon ion-icon {
    font-size: 2rem;
    color: var(--nav-bg);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, #f4f4f0 0%, #e8e8e0 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-icon ion-icon {
    font-size: 2rem;
    color: #4CAF50;
}

.why-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.why-text p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Leadership Section */
.leadership {
    background: var(--bg-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.leader-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leader-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #ffc107;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.leader-card p {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leader-social a {
    color: var(--nav-bg);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.leader-social a:hover {
    color: #ffc107;
}

/* Call to Action Section */
.about-cta {
    background: linear-gradient(135deg, var(--nav-bg) 0%, #1a4a8e 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-content .btn {
    background: #ffc107;
    color: #000;
    font-size: 1.1rem;
    padding: 16px 40px;
}

.cta-content .btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        margin-top: 75px;
        min-height: 300px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-intro-text h2 {
        font-size: 2rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-intro-stats {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
}