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

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

::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8860B;
}

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

/* Navigation highlight on scroll */
.nav-active {
    color: #D4AF37 !important;
}
