
/* Team Section Styles - Clean & Modern */

/* Reset/Base for Team Card */
.team-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    cursor: default; /* Not clickable as a whole, specific elements are */
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Avatar Wrapper & Image */
.team-avatar-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px; /* Center horizontally, margin bottom */
    position: relative;
    border-radius: 50%;
    padding: 3px; /* Space for border effect */
    background: linear-gradient(135deg, #0f7bd3, #00d2ff); /* Gradient border ring */
}

.team-card .team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Or contain, depending on logo vs face */
    border-radius: 50%;
    background: #fff; /* White background inside the ring */
    border: 3px solid #fff; /* White gap between ring and image */
    display: block;
    cursor: default; /* Avatar is not clickable */
}

/* Card Info Area */
.team-card .card-info {
    padding: 0;
    background: transparent; /* Remove gray background from generic card-info */
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* WhatsApp Button - Pill Style with Outline */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    color: #0f7bd3; /* Blue text to match theme, or #25D366 for WA green */
    border: 1px solid #0f7bd3;
    padding: 8px 20px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Green variation specifically for WhatsApp */
.whatsapp-link {
    color: #0f7bd3;
    border-color: #0f7bd3;
}

.whatsapp-link:hover {
    background-color: #0f7bd3;
    color: #fff;
    box-shadow: 0 4px 10px rgba(15, 123, 211, 0.3);
    transform: translateY(-1px);
}

.whatsapp-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    width: 18px !important; 
    height: 18px !important;
    padding: 0 !important;
    background: none !important;
    pointer-events: none;
}
