

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-reveal {
    animation: revealUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 72, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 72, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 72, 0, 0); }
}

.animate-glow {
    animation: pulseGlow 2s infinite;
}

/* Glassmorphism background with animation */
.glass-animate {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.glass-animate:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scroll Reveal Animations */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left.active, .reveal-right.active, .reveal-up.active {
    opacity: 1;
    transform: translate(0, 0);
}


