/* Avatar styling */
.avatar-circle {
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 50%;
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Role color accents */
.text-purple {
    color: #8b5cf6;
}

.text-pink {
    color: #ec4899;
}

.text-indigo {
    color: #6366f1;
}

.text-teal {
    color: #14b8a6;
}

.text-orange {
    color: #f97316;
}

.text-yellow {
    color: #facc15;
}

.team-sec-heading {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
}

.team-sec-subheading {
    color: #4B5563;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.team-mem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Card styling for team members */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1.5rem !important;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Expertise box styling */
.bg-light {
    background-color: #f3f4f6 !important;
}

.rounded-3 {
    border-radius: 1rem;
}