/* Scroll Animation Styles */

/* Step number bounce animation */
.step-number {
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-number.animate-bounce {
    animation: subtleBounce 0.4s ease-out;
}

@keyframes subtleBounce {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-2px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Stagger the animations for each step */
.process-step:nth-child(1) .step-number.animate-bounce {
    animation-delay: 0s;
}

.process-step:nth-child(2) .step-number.animate-bounce {
    animation-delay: 0.15s;
}

.process-step:nth-child(3) .step-number.animate-bounce {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) .step-number.animate-bounce {
    animation-delay: 0.45s;
}