body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    background: #f8fafc;
}

.about-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}


/* Section Style */

.about-section {
    margin-bottom: 60px;
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}


/* Mission & Vision */

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

.mv-box {
    background: #e0f7f4;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mv-box h2 {
    font-size: 24px;
    color: #0a9a84;
}

.mv-box p {
    color: #334155;
    margin-top: 10px;
}


/* Team Section */

.team-section {
    padding: 30px 0;
}

.team-section h1 {
    text-align: center;
    margin: 20px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.team-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 100px;
    object-fit: cover;
    margin-bottom: 15px;
}


/* OPTIONAL IMAGE – ADDED */

.team-card img:empty,
.team-card img[src=""] {
    display: none;
}


/* OPTIONAL TEXT – ADDED */

.team-text:empty {
    display: none;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.team-role {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
}

.team-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}


/* Responsive */

@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
}