/* Smooth scrolling for all anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced smooth scrolling for better user experience */
body.scrolling {
    overflow-x: hidden;
}

/* Smooth transition for anchor link scrolling */
a[data-hash] {
    transition: all 0.3s ease;
}

/* Ensure smooth scrolling works on all browsers */
* {
    scroll-behavior: smooth;
}

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

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

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

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


