﻿/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(2, 12, 27, 0.8), rgba(2, 12, 27, 0.8)), 
                url('/images/about-bg.jpg') no-repeat center center/cover;
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 20px;
    font-weight: 800;
}

/* Overview Section */
.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin-top: 10px;
}

.overview-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495670;
}

/* Vision & Mission Cards */
.bg-dark-navy {
    background-color: var(--primary);
    color: var(--white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Specialized Card Styling for About Page */
.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--gold);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--primary);
}

/* Why Choose Us Grid */
.responsive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* --- MOBILE RESPONSIVENESS FOR ABOUT --- */

@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr; /* Stack Overview side-by-side */
        gap: 40px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr; /* Stack Vision/Mission */
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-card {
        padding: 30px 20px;
    }
}

/* --- SHARED UTILITIES --- */
.bg-light { background-color: var(--bg-light); }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 1.5rem; }