body {
            background-color: #f8fafc;
            height: 200vh;
        }

        /* --- NAVBAR STYLES --- */
        #navbar {
            transition: all 0.3s ease-in-out;
            background: transparent;
            z-index: 40;
        }

        #navbar.nav-active {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
            /* Scroll hone per thoda compact rahega */
            /* padding-top: 0.5rem;
            padding-bottom: 0.5rem; */
        }

        /* --- DESKTOP HOVER & ACTIVE --- */
        .desktop-link {
            position: relative;
            color: #64748b;
            transition: all 0.3s;
        }

        /* Orange Line Animation on Hover */
        .desktop-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 50%;
            background-color: #FF7D29;
            transition: all 0.3s ease-in-out;
            transform: translateX(-50%);
        }

        .desktop-link:hover::after {
            width: 80%;
        }

        .desktop-link:hover {
            color: #FF7D29;
        }

        /* Active State (Permanent Orange) */
        .desktop-link.active-link {
            color: #FF7D29;
            font-weight: 800;
        }

        .desktop-link.active-link::after {
            width: 80%;
        }

        /* --- MOBILE SIDEBAR --- */
        #sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(3px);
            z-index: 50;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        #sidebar-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        #mobile-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 380px;
            height: 100vh;
            background-color: #fffaf5;
            background-image: linear-gradient(180deg, rgba(255, 248, 242, 0.92) 0%, rgba(255, 243, 235, 0.96) 100%),
                url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 60;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            overflow-y: auto;
        }

        #mobile-sidebar.active {
            transform: translateX(0);
        }

        /* --- MOBILE MENU ITEM STYLES --- */
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mobile-nav-item {
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.2s ease;
        }

        #mobile-sidebar.active .mobile-nav-item {
            animation: slideInRight 0.5s forwards ease-out;
        }

        #mobile-sidebar.active .mobile-nav-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        #mobile-sidebar.active .mobile-nav-item:nth-child(2) {
            animation-delay: 0.15s;
        }

        #mobile-sidebar.active .mobile-nav-item:nth-child(3) {
            animation-delay: 0.2s;
        }

        #mobile-sidebar.active .mobile-nav-item:nth-child(4) {
            animation-delay: 0.25s;
        }

        #mobile-sidebar.active .mobile-nav-item:nth-child(5) {
            animation-delay: 0.3s;
        }

        .mobile-nav-item:hover {
            background-color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transform: translateX(5px);
        }

        .mobile-nav-item:hover .icon-box {
            background-color: #FF7D29;
            color: white;
        }

        .mobile-nav-item:hover .link-text {
            color: #FF7D29;
        }

        .mobile-nav-item.active-page {
            background-color: white;
            border: 1px solid #ffe4d6;
            box-shadow: 0 4px 12px rgba(255, 125, 41, 0.15);
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-nav-item.active-page .icon-box {
            background-color: #FF7D29;
            color: white;
        }

        .mobile-nav-item.active-page .link-text {
            color: #E06518;
        }

        .toggle-btn {
            cursor: pointer;
        }

        .dots-icon {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4px;
            width: 24px;
            height: 24px;
            align-items: center;
            justify-items: center;
            transition: transform 0.4s;
        }

        .dots-icon span {
            display: block;
            width: 5px;
            height: 5px;
            background-color: #334155;
            border-radius: 50%;
            transition: 0.3s;
        }

        .toggle-btn:hover .dots-icon {
            transform: rotate(90deg);
        }

    .toggle-btn:hover .dots-icon span {
        background-color: #FF7D29;
        border-radius: 2px;
    }