/* =========================================
   OVISOFT - ANIMATIONS
   ========================================= */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    /* Hidden by default until JS triggers or if pure CSS used with delay */
    animation: fadeInUp 0.8s ease forwards;
}

/* Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Scroll Reveal Class */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Effect for Buttons */
@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 144, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 144, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 144, 255, 0);
    }
}

.btn-pulse:hover {
    animation: pulse-soft 1.5s infinite;
}