/* =========================================
   Animations & Keyframes
   ========================================= */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

/* Pulse for Call to Actions */
@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 169, 245, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(63, 169, 245, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(63, 169, 245, 0);
    }
}

.animate-pulse {
    animation: pulse-soft 2s infinite;
}

/* Glassmorphism Background Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-animated {
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}