.navbar-main {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 60px;
    box-shadow: none !important;
}

.nav-link {
    font-weight: 500;
    color: var(--slate-700);
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--brand-blue);
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.home-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.search-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 8px 16px;
    font-size: 0.9rem;
    width: 350px;
    transition: all 0.2s;
}

.search-box:focus {
    background: white;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}