.team-section{
    padding:60px 0;
    background:#f8f9fa;
}

.team-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:0.3s;
    background:#fff;
    padding:10px;
}

.team-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.team-img{
    width: 100%;
    height: 260px; /* passport size */
    object-fit: cover;
    object-position: top;
    border-radius: 10px 10px 0 0;
}

.team-name{
    font-size:16px;
    font-weight:600;
}

.team-designation{
    color:#6c757d;
    font-size:14px;
}


.profile-card{
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    padding:30px;
}

.profile-img{
    width: 100px;
    height: 100px; /* passport size */
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    display:block;
}

.profile-info p{
    margin-bottom:10px;
    font-size: 15px;
}

.profile-info i{
    color:#0d6efd;
    margin-right:8px;
}

.profile-bio h5{
    font-weight:600;
    margin-bottom:10px;
}

