/* Custom Global Utility Architecture */

/* Custom Smooth Link Indicator */
.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F57C20; /* Orange Accent */
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

/* Glass effect for modern digital procurement asset presentation */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F9FAFB;
}

::-webkit-scrollbar-thumb {
    background: #4B8E86;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a6f69;
}

/* Base modifications for active state menu handling */
.active-nav {
    color: #4B8E86 !important;
    font-weight: 700;
}