/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #3b82f6; 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #2563eb; 
}

/* Prevent AOS Overflow */
body {
    overflow-x: hidden;
}

/* Nav Glassmorphism */
nav {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}