/* Card Container */
.about-team {
    margin-bottom: 60px;
}

.our-team-card {
    transition: transform 0.3s ease;
    background: #FFFFFF;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}
.our-team-card.card-shadow {
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 10px 10px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
}

.our-team-card:hover {
    transform: translateY(-5px);
}

/* Image container aur styling */
.profile-pic-container {
    width: 100%;
    height: 190px;
    border-radius: 8px;
    background-color: #EBF5FF;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}


.read-bio-link {
    color: #1C64F2;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.read-bio-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #1C64F2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scaleX(1);
    transform-origin: bottom center;
}

.read-bio-link:hover::after {
    opacity: 0;
    transform: scaleX(0);
}

@media (max-width: 1199px) {
    .our-team-card {
        height: 100%;
    }
    .profile-img {
        object-fit: cover;
    }
}