/* Team Card */
.team-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-name a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.team-name a:hover {
    color: #337ab7;
}

.team-role {
    font-size: 14px;
    color: #777;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #555;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    background: #337ab7;
    color: #fff;
}
