/* Navbar Styles - Stylish Corporate Theme */
.navbar {
    background: var(--primary-gradient) !important;
    backdrop-filter: blur(25px);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    height: 60px;
    min-height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    border-radius: 0;
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
    transform: translateY(-2px);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(30, 58, 138, 0.05) 0%, 
        rgba(30, 64, 175, 0.08) 50%, 
        rgba(30, 58, 138, 0.05) 100%);
    pointer-events: none;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
    transform: translateY(-1px);
}

.navbar-toggler {
    border-radius: 10px;
}

/* Login/Register links styling */
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
    transform: translateY(-1px);
}