.team-img-wrapper {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-img-wrapper:hover {
    transform: scale(1.05);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}