.team-card {
    background: #fff;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    transition: transform 0.3s ease-in-out;
}
.team-card:hover .team-img img {
    transform: scale(1.05);
}

.social-links .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}
.social-links .social-icon:hover {
    background: #007bff;
    color: #fff;
}


.cta-section {
    background-color: #3e5c9a; 
    color: #fff;
}