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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #141E61; /* Navy 900 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2b3ca3;
}

/* Utilities */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}