/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Base Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Animation Classes (if not covered by Tailwind config completely) */
.animate-scale-slow {
    animation: scaleSlow 20s infinite alternate;
}

@keyframes scaleSlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Utilities */
.nav-link {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f4c81; 
}