/* animations.css */

/* Keyframe for the counting animation */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Apply animation to elements with .count-up class */
.count-up {
    animation: countUp 1s ease-out forwards;
    /* You can adjust duration and timing function as needed */
}