/* Navigation Components */

/* Nav link underline animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00CDFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.current-menu-item .nav-link::after {
    width: 100%;
}
