/* animations.css - Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.animation-fade-in { animation: fadeIn 0.8s ease forwards; }
.animation-slide-up { animation: slideUp 0.8s ease forwards; }
