/* Custom Utility Styles for CLTech */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* Sticky Header 높이 + 쾌적한 상단 여백 확보 */
}

/* Ensure all anchor sections have scroll offset margin */
section[id] {
    scroll-margin-top: 110px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #0056E0;
}
