/* Custom Scrollbar for a sleek look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

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

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

html {
    scroll-behavior: smooth;
}

/* Utility to ensure sections have enough scroll padding so header doesn't cover them */
section {
    scroll-margin-top: 5rem;
}