/* ============================================================
   navbar.css — Chaungeni Technologies
   ============================================================ */

.navbar {
    background-color: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    color: var(--corporate-blue) !important;
    display: flex;
    align-items: center;
}
.navbar-brand img { height: 32px; margin-right: 10px; }

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    margin: 0 5px;
    position: relative;
}
.nav-link:after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover:after,
.nav-link.active:after  { width: 100%; }
.nav-link.active        { color: var(--primary) !important; font-weight: 600; }

.nav-link .badge {
    font-size: 0.62rem;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}

/* Category dropdown */
.category-dropdown .dropdown-menu {
    width: 280px;
    padding: 10px 0;
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.category-dropdown .dropdown-item {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--corporate-gray);
    transition: all 0.2s;
}
.category-dropdown .dropdown-item:hover {
    background-color: #f3f4f6;
    color: var(--primary);
}
.category-dropdown .dropdown-item i {
    width: 20px; text-align: center;
    margin-right: 10px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .category-dropdown .dropdown-menu { width: 100%; }
}
