/* TEAM & CARDS */
.team-card-premium {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.team-card-premium:hover {
    transform: translateY(-10px);
}

.team-section-modern {
    background: radial-gradient(circle at top right, rgba(13, 202, 240, 0.05), transparent);
}

.team-card-premium {
    position: relative;
    background: white;
    border-radius: 20px;
    padding-top: 20px;
    padding-bottom: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.team-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(13, 202, 240, 0.15);
    border-color: rgba(13, 202, 240, 0.2);
}

.team-card-image {
    position: relative;
    width: 180px;
    height: 180px;
    margin: -60px auto 20px auto; /* Inafanya picha ichomoze kwa juu */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card-premium:hover .team-card-image img {
    transform: scale(1.1);
}

/* Social Overlay inapotokea ukigusa picha */
.team-social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(13, 202, 240, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
    transition: bottom 0.3s ease;
}

.team-card-premium:hover .team-social-overlay {
    bottom: 0;
}

.team-social-overlay a {
    color: white;
    text-decoration: none;
}

.team-card-info h5 {
    font-size: 1.15rem;
    color: #212529;
}

.team-card-info p {
    letter-spacing: 0.5px;
    margin-top: 5px;
}
