.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 14px;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
    padding: 6px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    z-index: 1001;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo:hover .logo-icon {
    transform: rotate(8deg) scale(1.05);
}

.logo-text {
    display: flex;
    align-items: baseline;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}

.logo-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

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

.nav-link:hover i {
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    border-radius: 1px;
}

/* Mega Menu */
.mega-menu {
    position: relative;
}

.mega-menu-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    background: rgba(121, 105, 210, 0.08);
    border: 2px solid rgba(121, 105, 210, 0.15);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mega-menu-toggle:hover {
    background: rgba(121, 105, 210, 0.15);
    border-color: rgba(121, 105, 210, 0.3);
    transform: translateY(-1px);
}

.mega-menu-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mega-menu:hover .mega-menu-toggle i {
    transform: rotate(180deg);
}

.mega-menu-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 850px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 20px;
}

.mega-menu-section h4 {
    color: var(--dark);
    margin-bottom: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mega-menu-section a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.4;
}

.mega-menu-section a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.mega-menu-section a i {
    width: 14px;
    height: 14px;
    color: var(--primary);
    opacity: 0.7;
    font-size: 0.85rem;
}

.mega-menu-section a:hover i {
    opacity: 1;
}

.mega-menu-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text);
    margin: 0;
}

.contact-info i {
    color: var(--text);
    width: 12px;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Search */
.search-container {
    position: relative;
}

.search-toggle {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 0.95rem;
    padding: 0;
    flex-shrink: 0;
}

.search-toggle:hover {
    color: var(--primary);
    background: rgba(121, 105, 210, 0.08);
    transform: scale(1.06);
}

.search-box {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-container.active .search-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-box input {
    width: 100%;
    padding: 9px 12px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background: white;
}

.search-box input::placeholder {
    color: var(--gray);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(121, 105, 210, 0.02);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--primary);
}

/* ...existing search-results... */

/* Theme Toggle */
.theme-toggle {
    width: 36px;
    height: 36px;
    background: var(--gray-light);
    border: none;
    border-radius: 6px;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
    transform: rotate(18deg);
}

/* ...existing theme-toggle icons... */

/* Notifications */
.notification-container {
    position: relative;
    flex-shrink: 0;
}

.notification-toggle {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 1rem;
    padding: 0;
    flex-shrink: 0;
    overflow: visible;
}

.notification-toggle:hover {
    color: var(--primary);
    background: rgba(121, 105, 210, 0.08);
    transform: scale(1.06);
}

.notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: white;
    font-size: 0.65rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: pulse 2.5s infinite;
    border: 2px solid white;
    padding: 0 5px;
    height: 19px;
    min-width: 19px;
    line-height: 1;
    z-index: 2200;
    pointer-events: none;
}

/* Slightly smaller on small screens */
@media (max-width: 576px) {
    .notification-badge {
        top: -5px;
        right: -5px;
        font-size: 0.6rem;
        height: 18px;
        padding: 0 5px;
        min-width: 18px;
    }
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 340px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.notification-container.active .notification-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-light);
    gap: 12px;
}

.notification-header h4 {
    margin: 0;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.mark-all-read {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 0;
}

.mark-all-read:hover {
    opacity: 0.8;
}

.notification-list {
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.notification-item:hover {
    background: rgba(121, 105, 210, 0.04);
}

.notification-item.unread {
    background: rgba(121, 105, 210, 0.08);
}

.notification-icon {
    width: 36px;
    height: 36px;
    background: rgba(121, 105, 210, 0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-content p {
    margin: 0 0 4px 0;
    color: var(--dark);
    font-size: 0.85rem;
    line-height: 1.35;
    word-break: break-word;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--gray);
}

.notification-footer {
    padding: 12px 16px;
    text-align: center;
    border-top: 1px solid var(--gray-light);
}

.notification-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.notification-footer a:hover {
    opacity: 0.8;
}

/* CTA Button */
.btn-sm {
    padding: 8px 14px;
    font-size: 0.8rem;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-sm i {
    font-size: 0.85rem;
}

.btn-sm span {
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 20px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    padding: 16px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
    gap: 12px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.user-status {
    font-size: 0.8rem;
    color: var(--gray);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--gray-light);
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.mobile-nav-link.active {
    background: var(--gradient);
    color: white;
}

.mobile-nav-link:hover:not(.active) {
    background: rgba(121, 105, 210, 0.12);
    transform: translateX(5px);
    color: var(--primary);
}

.mobile-nav-link i:first-child {
    width: 18px;
    font-size: 0.95rem;
}

.mobile-nav-link i:last-child {
    font-size: 0.75rem;
}

.mobile-submenu {
    margin-top: 10px;
}

.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    background: var(--gray-light);
    border: none;
    border-radius: 8px;
    color: var(--dark);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-submenu-toggle:hover {
    background: rgba(121, 105, 210, 0.12);
}

.mobile-submenu-toggle i:last-child {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mobile-submenu.active .mobile-submenu-toggle i:last-child {
    transform: rotate(180deg);
}

.mobile-submenu-content {
    padding: 10px;
    background: rgba(121, 105, 210, 0.05);
    border-radius: 8px;
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-submenu.active .mobile-submenu-content {
    display: flex;
}

.mobile-submenu-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--gray);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.mobile-submenu-content a:hover {
    background: rgba(121, 105, 210, 0.15);
    color: var(--primary);
}

.mobile-menu-footer {
    position: relative;
    padding: 16px 0;
    border-top: 1px solid var(--gray-light);
}

.mobile-actions {
    margin-bottom: 14px;
}

.mobile-actions .btn {
    width: 100%;
    justify-content: center;
}

.mobile-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.mobile-contact a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 8px;
    background: var(--gray-light);
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 500;
}

.mobile-contact a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.mobile-contact a i {
    font-size: 1.1rem;
}

/* Progress Bar */
.nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    z-index: 999;
}

#navProgress {
    height: 100%;
    background: var(--gradient);
    width: 0%;
    transition: width 0.2s ease;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.search-overlay-content {
    width: 100%;
    max-width: 750px;
    background: white;
    border-radius: 12px;
    padding: 36px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 18px;
}

.search-header h3 {
    color: var(--dark);
    margin: 0;
    font-size: 1.2rem;
}

.close-search {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--gray);
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.close-search:hover {
    color: var(--dark);
    transform: rotate(90deg);
}

.search-input-large {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.search-input-large input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input-large input::placeholder {
    color: var(--gray);
}

.search-input-large input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(121, 105, 210, 0.1);
}

.search-btn-large {
    padding: 0 32px;
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.search-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(121, 105, 210, 0.3);
}

.search-suggestions h4 {
    color: var(--dark);
    margin: 0 0 14px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-tags a {
    padding: 7px 16px;
    background: var(--gray-light);
    border-radius: 50px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.suggestion-tags a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 105, 210, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .mega-menu-content {
        width: 780px;
        max-width: calc(100vw - 40px);
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .notification-dropdown {
        width: 280px;
        right: 0;
    }
    
    .search-box {
        width: 260px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 0;
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .nav-actions {
        gap: 7px;
    }
    
    .btn-sm span {
        display: none;
    }
    
    .search-toggle,
    .theme-toggle,
    .notification-toggle {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    
    .notification-badge {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -5px;
        right: -5px;
    }
    
    .notification-dropdown {
        width: 270px;
        right: 0;
    }
    
    .search-box {
        width: 250px;
        right: 0;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 10px 0;
        gap: 6px;
    }
    
    .logo {
        gap: 5px;
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .logo-icon {
        width: 34px;
        height: 34px;
    }
    
    .nav-actions {
        gap: 5px;
    }
    
    .search-toggle,
    .theme-toggle,
    .notification-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .btn-sm {
        padding: 6px 10px;
        height: 32px;
        font-size: 0.7rem;
    }
    
    .notification-badge {
        width: 17px;
        height: 17px;
        font-size: 0.55rem;
        top: -4px;
        right: -4px;
    }
    
    .notification-dropdown {
        width: 240px;
        right: 0;
    }
    
    .search-box {
        width: 230px;
        right: 0;
    }
}

/* Dark theme styles */
body.dark-theme .navbar {
    background: rgba(26, 26, 46, 0.95);
    color: white;
}

body.dark-theme .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

body.dark-theme .nav-link:hover,
body.dark-theme .nav-link.active {
    color: white;
}

/* Logo text white in dark mode */
body.dark-theme .logo-text {
    color: white;
}

body.dark-theme .logo-highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-theme .mega-menu-content,
body.dark-theme .notification-dropdown,
body.dark-theme .search-box,
body.dark-theme .search-overlay-content {
    background: #1a1a2e;
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme .mobile-menu {
    background: #1a1a2e;
    color: white;
}

body.dark-theme .search-box input,
body.dark-theme .search-input-large input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

body.dark-theme .search-box input:focus,
body.dark-theme .search-input-large input:focus {
    background: rgba(121, 105, 210, 0.1);
}