
html {
    /* Explicitly enforces smooth scrolling behavior for anchor links */
    scroll-behavior: smooth;
    /* Prevents horizontal scrolling on the entire document */
    overflow-x: hidden;
}
/* Custom scrollbar*/
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
/* Track color matches the dark background */
background: #051429;
}

::-webkit-scrollbar-thumb {
/* Thumb color matches the light blue accent */
background: #185a81;
border-radius: 4px;
}

.partners-scroll-btn {
background-color: transparent;
border: 2px solid #fff;
color: #fff;
transition: background-color 0.3s, color 0.3s;
}

.partners-scroll-btn:hover {
background-color: #fff;
color: #051429;
}

.text-shadow-subtle {
/* Added Tailwind custom utility to tailwind.config.js for text-shadow-subtle */
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
