/* Custom overrides or specific animations */
body {
    scroll-behavior: smooth;
}

/* Smooth fade in for elements if needed */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
