/* ==========================
   TEAM SECTION
========================== */

.team-section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: #444;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
}

.team-image {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    transition: 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #222;
    margin-bottom: 5px;

}

.team-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.profile-btn {
    display: inline-block;
    background: #f3b318;
    color: #111;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.profile-btn:hover {
    background: #d89a10;
    color: #111;
}

/* ==========================
   1200
========================== */

@media (max-width:1200px) {

    .section-header h2 {
        font-size: 40px;
    }

    .team-content h3 {
        font-size: 24px;
    }

    .team-image img {
        height: 280px;
    }
}

/* ==========================
   991
========================== */

@media (max-width:991px) {

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-image img {
        height: 250px;
    }
}

/* ==========================
   767
========================== */

@media (max-width:767px) {

    .team-section {
        margin: 40px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 15px;
    }

    .team-content h3 {
        font-size: 22px;
    }

    .team-content p {
        font-size: 15px;
    }
}

/* ==========================
   545
========================== */

@media (max-width:545px) {

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image img {
        height: 200px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* ==========================
   320
========================== */

@media (max-width:320px) {

    .section-header h2 {
        font-size: 22px;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .team-content p {
        font-size: 13px;
    }

    .profile-btn {
        width: 100%;
    }

    .team-image img {
        height: 200px;
    }
}
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background: #0d4f8b;
    color: #fff;
}

.modal-title {
    font-weight: 700;
}

#modalProfileName {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

#modalProfileRole {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

#modalProfileDescription {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}