/* PREMIUM TECH ANIMATIONS */

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 197, 94, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(22, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(22, 197, 94, 0);
    }
}

.pulse-btn {
    animation: pulse-green 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating-effect {
    animation: float 6s ease-in-out infinite;
}

/* Glass card glow */
.glass-glow {
    position: relative;
    overflow: hidden;
}

.glass-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.glass-glow:hover::after {
    left: 100%;
    opacity: 1;
    transition: 1s ease-in-out;
}

/* Green dot pulse indicator */
@keyframes dot-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.online-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: dot-pulse 1.8s infinite;
}

/* Custom Text Underline Hover Effect */
.hover-underline-custom {
    position: relative;
    display: inline-block;
}

.hover-underline-custom::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-custom:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* AI VIDEO HERO LASER GLOW & PULSE */
@keyframes laser-scan {
    0% {
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.3), inset 0 0 15px rgba(6, 182, 212, 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(16, 133, 53, 0.6), inset 0 0 25px rgba(16, 133, 53, 0.4);
    }
    100% {
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.3), inset 0 0 15px rgba(6, 182, 212, 0.2);
    }
}

.hero-video-card {
    animation: laser-scan 4s infinite ease-in-out;
}

