/* ============================================
   ABOUT US PAGE - about_us.css
   ============================================ */

/* Page content headings */
.section h2,
.section h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: rgb(90, 20, 10);
    margin-bottom: 15px;
}

/* Page content body text */
.section p,
.styled-list li {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgb(10, 0, 0);
}

.styled-list {
    padding-left: 20px;
    margin-bottom: 1em;
}

.styled-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    list-style: disc;
}

/* Zoom-out image effect (Vision & Mission) - triggered on scroll */
.zoom-out-img {
    overflow: hidden;
    border-radius: 4px;
}

.zoom-out-img img {
    transform: scale(1.15);
    transition: transform 1.2s ease;
}

.zoom-out-img.zoomed img {
    transform: scale(1);
}

/* Team Section */
.team-section {
    padding: 60px 0;
}

.team-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.team-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #ed1c24;
    margin: 15px auto 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-card {
    flex: 0 0 calc(50% - 20px);
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    text-align: center;
}

.team-photo {
    width: 170px;
    height: 170px;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #ccc;
    border-radius: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgb(10, 0, 0);
}

.team-title {
    color: #ed1c24;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.team-card p {
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: rgb(10, 0, 0);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .team-card {
        flex: 1 1 100%;
    }
}
