/* About Page Specific Styles */

.about-header {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(15, 118, 110, 0.9), rgba(15, 118, 110, 0.7)), url('../images/about.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.about-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.about-header h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.about-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.about-header .breadcrumb-item, 
.about-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.about-header .breadcrumb-item.active {
    color: var(--white);
}

/* Mission & Vision */
.mission-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 2.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--primary);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    width: 90px;
    height: 90px;
    background: var(--slate-950);
    color: var(--white);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-section {
    background: var(--slate-950);
    padding: 80px 0;
    border-radius: 3rem;
    margin: 50px 20px;
    color: var(--white);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../images/about.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    border-radius: 3rem;
    margin: 50px 20px;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .about-header h1 { font-size: 3rem; }
    .cta-banner h2 { font-size: 2.5rem; }
    .cta-buttons { flex-direction: column; }
}
