:root {
    /* Modern & Bright Color Palette */
    --primary-color: #4361ee;
    /* Vibrant Blue */
    --primary-hover: #3f37c9;
    --primary-light: #e2eaff;
    --accent-color: #4cc9f0;
    /* Bright Cyan */
    --secondary-color: #7209b7;
    /* Purple accent */

    --bg-light: #ffffff;
    --bg-soft: #f8faff;
    /* Very subtle cool white */
    --text-dark: #1b263b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;

    /* Modern Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(67, 97, 238, 0.1), 0 4px 6px -2px rgba(67, 97, 238, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(67, 97, 238, 0.15), 0 10px 10px -5px rgba(67, 97, 238, 0.1);
    --shadow-hover: 0 25px 50px -12px rgba(67, 97, 238, 0.25);

    /* Modern Radius */
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 100px;
    /* Pill shape */

    --container-width: 1200px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-soft);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar Modernization */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    /* Glassmorphism */
    backdrop-filter: blur(16px);
    padding: 20px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    margin-right: 15px;
}

/* Modern Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    padding: 14px 40px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
    filter: brightness(1.05);
}

/* Animations */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Hero Section Modernization */
.hero-section {
    background: linear-gradient(120deg, #4361ee 0%, #4cc9f0 100%);
    /* Blue to Cyan */
    background-size: 200% 200%;
    animation: gradientBG 6s ease infinite;
    color: #fff;
    border-radius: 30px;
    padding: 80px 40px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.2);
}

.hero-content {
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.hero-search input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hero-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.hero-image img {
    max-width: 320px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

/* Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    /* Left Sidebar, Main */
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

/* Left Sidebar Menu */
.left-sidebar {
    background: transparent;
}

.menu-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.menu-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #444;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.menu-item:hover,
.menu-item.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    border-color: #cfe2ff;
    transform: translateX(5px);
}

.menu-item.active {
    background: #eef5ff;
}

.icon-box {
    width: 35px;
    height: 35px;
    background: #f1f3f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #666;
    transition: all 0.2s;
}

.menu-item:hover .icon-box,
.menu-item.active .icon-box {
    background: var(--primary-color);
    color: #fff;
}

/* Main Content */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Cards */
.category-card {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

/* Borders */
.category-card:nth-child(1) {
    border-top: 4px solid #FF6B6B;
}

.category-card:nth-child(2) {
    border-top: 4px solid #4ECDC4;
}

.category-card:nth-child(3) {
    border-top: 4px solid #45B7D1;
}

.category-card:nth-child(4) {
    border-top: 4px solid #FFA07A;
}

.category-card:nth-child(5) {
    border-top: 4px solid #96CEB4;
}

.category-card:nth-child(6) {
    border-top: 4px solid #D4A5A5;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.cat-icon-box {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Inherit icon color */
.category-card:nth-child(1) .cat-icon-box {
    color: #FF6B6B;
    background: #FFF0F0;
}

.category-card:nth-child(2) .cat-icon-box {
    color: #4ECDC4;
    background: #F0FFF9;
}

.category-card:nth-child(3) .cat-icon-box {
    color: #45B7D1;
    background: #F0FBFF;
}

/* ... */

.card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.cat-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.cat-info span {
    font-size: 0.85rem;
    color: #888;
}

.topic-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.topic-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.topic-list li i {
    margin-right: 10px;
    font-size: 0.8em;
    color: #ccc;
}

.topic-list a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
}

.topic-list a:hover {
    color: var(--primary-color);
}

.btn-view-more {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-view-more:hover {
    text-decoration: underline;
}

.btn-view-more i {
    transition: transform 0.2s;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

.welcome-text-mobile {
    display: none;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #0d6efd;
    color: #fff;
    padding: 50px 0;
    margin-top: auto;
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Off-Canvas Backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {

    /* Stack Layout */
    .content-wrapper {
        display: block;
    }

    /* Navbar Adjustments */
    .mobile-toggle {
        display: block;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    /* Hide desktop nav */

    /* Off-Canvas Sidebar */
    .left-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100%;
        background: #fff;
        z-index: 1050;
        padding: 20px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .left-sidebar.active {
        left: 0;
    }

    /* Adjust sidebar content for mobile */
    .menu-box {
        flex-direction: column;
        width: 100%;
    }

    .menu-item {
        width: 100%;
        justify-content: flex-start;
    }

    .menu-item:hover {
        transform: none;
    }

    /* Disable hover slide on mobile */

    /* Hero */
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-search input {
        text-align: left;
        /* Keep left alignment for icon */
        padding-left: 50px;
        /* Keep padding for icon */
    }

    .hero-search i {
        display: block;
        /* Show icon */
    }

    .welcome-text-mobile {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Force 2 columns */
        gap: 10px;
        /* Tighter gap */
    }

    .category-card {
        padding: 15px;
        /* Compact padding */
    }

    .cat-icon-box {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .card-header {
        margin-bottom: 10px;
        gap: 10px;
    }

    .cat-info h3 {
        font-size: 0.9rem;
        /* Smaller title */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.footer {
    background: #0d6efd;
    color: #fff;
    padding: 50px 0;
    margin-top: auto;
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-links a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Off-Canvas Backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {

    /* Stack Layout */
    .content-wrapper {
        display: block;
    }

    /* Navbar Adjustments */
    .mobile-toggle {
        display: block;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    /* Hide desktop nav */

    /* Off-Canvas Sidebar */
    .left-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100%;
        background: #fff;
        z-index: 1050;
        padding: 20px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .left-sidebar.active {
        left: 0;
    }

    /* Adjust sidebar content for mobile */
    .menu-box {
        flex-direction: column;
        width: 100%;
    }

    .menu-item {
        width: 100%;
        justify-content: flex-start;
    }

    .menu-item:hover {
        transform: none;
    }

    /* Disable hover slide on mobile */

    /* Hero */
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-search input {
        text-align: center;
        padding-left: 20px;
    }

    .hero-search i {
        display: none;
    }

    .welcome-text-mobile {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Mobile Menu Grid - Forced Refactor */
.mobile-menu-grid {
    display: none !important;
    /* Hidden by default on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
    overflow-x: auto;
    padding-bottom: 5px;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    padding: 15px 5px;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-size: 0.75rem;
    font-weight: 600;
    transition: transform 0.2s;
    min-width: 70px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Base styles for sidebar items */
.menu-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Spacing between items */
}

/* Base styles for sidebar items */
.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border: 1px solid transparent;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s;
}



/* Documentation: 1st item -> Peach */
.menu-item:nth-child(1) {
    background-color: #ffe0d6;
    color: #d64d2e;
    border-left: none;
}

.menu-item:nth-child(1) .icon-box {
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent white */
    color: #d64d2e;
}

.menu-item:nth-child(1):hover {
    filter: brightness(0.95);
    /* Slight darken on hover */
    color: #d64d2e;
}

/* Support: 2nd item -> Blue */
.menu-item:nth-child(2) {
    background-color: #e0f0ff;
    color: #0d6efd;
    border-left: none;
}

.menu-item:nth-child(2) .icon-box {
    background: rgba(255, 255, 255, 0.5);
    color: #0d6efd;
}

.menu-item:nth-child(2):hover {
    filter: brightness(0.95);
    color: #0d6efd;
}

/* Changelog: 3rd item -> Purple */
.menu-item:nth-child(3) {
    background-color: #f3e5f5;
    color: #9c27b0;
    border-left: none;
}

.menu-item:nth-child(3) .icon-box {
    background: rgba(255, 255, 255, 0.5);
    color: #9c27b0;
}

.menu-item:nth-child(3):hover {
    filter: brightness(0.95);
    color: #9c27b0;
}

/* FAQs: 4th item -> Teal/Green */
.menu-item:nth-child(4) {
    background-color: #e0f2f1;
    color: #00897b;
    border-left: none;
}

.menu-item:nth-child(4) .icon-box {
    background: rgba(255, 255, 255, 0.5);
    color: #00897b;
}

.menu-item:nth-child(4):hover {
    filter: brightness(0.95);
    color: #00897b;
}

.mobile-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Documentation: Orange/Peach */
.item-docs {
    background-color: #ffe0d6;
    color: #d64d2e;
}

.item-docs .mobile-icon-box {
    border-color: #d64d2e;
    color: #d64d2e;
}

/* Get Support: Blue */
.item-support {
    background-color: #e0f0ff;
    color: #0d6efd;
}

.item-support .mobile-icon-box {
    border-color: #0d6efd;
    color: #0d6efd;
}

/* Changelog: Purple */
.item-changelog {
    background-color: #f3e5f5;
    color: #9c27b0;
}

.item-changelog .mobile-icon-box {
    border-color: #9c27b0;
    color: #9c27b0;
}

/* FAQs: Green/Teal */
.item-faqs {
    background-color: #e0f2f1;
    color: #00897b;
}

.item-faqs .mobile-icon-box {
    border-color: #00897b;
    color: #00897b;
}


@media (max-width: 992px) {
    .mobile-menu-grid {
        display: grid !important;
        /* Visible as grid on mobile */
    }
}

@media (max-width: 480px) {
    .mobile-menu-grid {
        gap: 8px;
    }

    .mobile-icon-box {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .mobile-menu-item {
        font-size: 0.7rem;
        padding: 12px 2px;
        min-width: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        padding: 0 10px;
    }
}

/* Off-Canvas Global Menu Styles - Re-applied */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -280px;
    /* Hidden by default */
    width: 260px;
    height: 100%;
    background-color: #ffffff !important;
    /* Force solid white */
    z-index: 9999;
    /* Ensure on top */
    padding: 20px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
    /* Stronger shadow */
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.active {
    left: 0;
}

.offcanvas-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 40px;
    /* Add spacing since header is removed */
}

.offcanvas-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.2s;
}

.offcanvas-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Ensure left-sidebar is hidden on mobile overrides */
@media (max-width: 992px) {
    .left-sidebar {
        display: none !important;
    }

    .menu-box {
        display: none !important;
    }
}

/* Mobile Notification Bell */
.mobile-notification-bell {
    display: none;
    /* Hidden by default on desktop */
}

@media (max-width: 992px) {
    .mobile-notification-bell {
        display: inline-block;
        /* Show on mobile */
        margin-right: 15px;
        /* Adjust spacing near toggle */
    }
}