/* --- HERO SECTION --- */
.about-hero {
    background: url('https://source.unsplash.com/1600x900/?office,code') center/cover no-repeat;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
    /* Header height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 179, 0.85);
    /* VTS Blue Overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- MISSION & VISION --- */
.mission-section {
    padding: 80px 0;
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 40px;
    border-radius: 12px;
    background: #f9f9f9;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.mv-card h2 {
    margin-bottom: 15px;
    color: #333;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

/* --- STATS SECTION --- */
.stats-section {
    background: var(--dark-color);
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
    opacity: 0.8;
}

/* --- TEAM SECTION --- */
.team-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
}

.section-title p {
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.img-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.team-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.socials a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}