/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(107, 75, 166, 0.7) 0%, rgba(139, 95, 191, 0.6) 100%), url('../Images/About/HeroBg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 2rem 2rem;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-hero .hero-subtitle {
    font-size: 20px;
    color: #c8ff00;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Stats Bar */
.about-stats {
    background: linear-gradient(135deg, #6b46c1 0%, #9b59b6 100%);
    padding: 2rem 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
    color: white;
}

.about-stats .stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-stats .stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Mission & Vision */
.mission-vision {
    background: #f8f9fa;
    padding: 60px 20px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.mv-card h2 {
    font-size: 26px;
    color: #2d1b4e;
    margin-bottom: 16px;
    font-weight: 700;
}

.mv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Core Values */
.core-values {
    background: #FFF4FF;
    padding: 70px 20px;
    text-align: center;
}

.core-values h2 {
    font-size: 38px;
    color: #2d1b4e;
    font-weight: 700;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, #e8d5ff 0%, #d4b5f0 100%);
    border-radius: 20px;
    padding: 35px 20px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.value-card h3 {
    font-size: 17px;
    color: #2d1b4e;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* Leadership Section */
.leadership {
    background: linear-gradient(135deg, #6b46c1 0%, #9b59b6 100%);
    padding: 70px 20px;
    text-align: center;
}

.leadership h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.leadership .section-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 50px;
}

.leaders-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 35px 40px;
    text-align: left;
    backdrop-filter: blur(6px);
}

.leader-card.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.leader-info {
    flex: 1;
}

.leader-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.leader-info .role {
    font-size: 16px;
    color: #c8ff00;
    font-weight: 600;
    margin-bottom: 14px;
}

.leader-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.leader-photo {
    width: 180px;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .mv-grid,
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-card,
    .leader-card.reverse {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-hero h1 { font-size: 32px; }
    .mv-grid,
    .values-grid { grid-template-columns: 1fr; }
    .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
