/* Fade-in animation for the card */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply the animation to the card */
.card-fade-in {
    animation: fadeIn 0.5s ease-out;
}