/* Visual Effects - Simplified */

/* Glow effect on hover for cards */
.unit-9::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.unit-9:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0.2;
}

/* Floating animation for team member cards */
@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.team-member {
    animation: float-card 6s ease-in-out infinite;
}

.team-member:nth-child(2) {
    animation-delay: 1s;
}

.team-member:nth-child(3) {
    animation-delay: 2s;
}

.team-member:nth-child(4) {
    animation-delay: 3s;
}

.team-member:nth-child(5) {
    animation-delay: 4s;
}

.team-member:nth-child(6) {
    animation-delay: 5s;
}

/* Gradient border animation */
@keyframes rotate-gradient {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.w-border h2::after {
    animation: rotate-gradient 3s linear infinite;
}