/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #325045;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #507266;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

body {
    overflow-x: hidden;
    /* Double protection */
    width: 100%;
    position: relative;
    /* Ensure containment */
}

/* Text Selection Color */
::selection {
    background-color: #ECAF30;
    color: white;
}

/* Animation Utilities */
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #325045;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ECAF30;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}