/* Enhanced Header Menu Styles */
.navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-nav .nav-item .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    opacity: 0;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
    opacity: 1;
}

.navbar-nav .nav-item .nav-link.active {
    color: #ffffff !important;
    font-weight: 500;
}

.navbar-nav .nav-item .nav-link.active:before {
    width: 100%;
    opacity: 1;
}

/* Add a subtle glow effect on hover */
.navbar-nav .nav-item:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Improve button styling in navbar */
.navbar-nav .nav-item .btn {
    transition: all 0.3s ease;
}

.navbar-nav .nav-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
