/* Custom Styles for Fabrimach */

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom Text Selection Color */
::selection {
    background-color: #F6A647;
    color: white;
}

/* Clean Dark Sections - Solid Steel Grey */
#services, #markets {
    background-color: #494552;
}

/* Utility to ensure the hero text doesn't jump */
[x-text="currentWord"] {
    display: inline-block;
}

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

::-webkit-scrollbar-track {
    background: #f3f4f6; 
}
 
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0D9488;
}