/* Custom styles for Team Glitterati Showcase */
.team-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    border-color: #FFD700;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #002366;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FFD700;
    color: #002366;
    transform: translateY(-3px);
}

.social-icon i {
    width: 20px;
    height: 20px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #002366;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #001a4d;
}