 :root{
    --body:linear-gradient(135deg, #667eea 0%, #764ba2 100%)
 }
 /* Header Styles */
        .header-main {
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--shadow-sm);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            transition: all 0.3s ease;
        }

        .header-main.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-700);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: var(--primary-600);
        }

        /* Desktop Navigation */
        .navbar-nav .nav-link {
            color: #374151;
            font-weight: 500;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 0.25rem;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-600);
            background: var(--primary-50);
        }

        /* CTA Button */
        .btn-cta {
            background: var(--body);
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: white;
        }

        /* Dropdown Styles */
        .dropdown-menu {
            border: none;
            border-radius: 12px;
           
            
            background: transparent;
            padding-top: 10px;
            margin-top: 0.5rem;
        }
        .real_menu_one{
transform: translateX(-110px);
        }
        .real_menu{
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            box-shadow: var(--shadow-xl);
            backdrop-filter: blur(20px);
           
            padding: 1rem;
            margin-top: 0.5rem;
        }

        .dropdown-item {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: all 0.2s ease;
            color: #374151;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: var(--primary-50);
            color: var(--primary-700);
        }

        /* Mega Menu Styles */
        .mega-menu {
            width: 1000px;
            max-width: 90vw;
        }

        .mega-menu-column {
            padding: 0 1rem;
        }

        .mega-menu-title {
            font-weight: 700;
            color: var(--primary-700);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-100);
        }

        .mega-menu-item {
            display: block;
            padding: 0.5rem 0;
            color: #6b7280;
            text-decoration: none;
            transition: all 0.2s ease;
            border-radius: 6px;
            padding-left: 0.75rem;
        }

        .mega-menu-item:hover {
            color: var(--primary-600);
            background: var(--primary-50);
            padding-left: 1rem;
        }

        /* Mobile Sidebar */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-2xl);
            transition: right 0.3s ease;
            z-index: 1040;
            overflow-y: auto;
        }

        .mobile-sidebar.open {
            right: 0;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            z-index: 1035;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #6b7280;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .sidebar-close:hover {
            background: var(--primary-50);
            color: var(--primary-600);
        }

        .sidebar-nav {
            padding: 1rem 0;
        }

        .sidebar-nav-item {
            margin: 0.5rem 1rem;
        }

        .sidebar-nav-link {
            display: flex;
            align-items: center;
            justify-content: between;
            padding: 1rem;
            color: #374151;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .sidebar-nav-link:hover {
            background: var(--primary-50);
            color: var(--primary-700);
        }

        .sidebar-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .sidebar-dropdown.show {
            max-height: 500px;
        }

        .sidebar-dropdown-item {
            padding: 0.75rem 2rem;
            color: #6b7280;
            text-decoration: none;
            display: block;
            transition: all 0.2s ease;
        }

        .sidebar-dropdown-item:hover {
            color: var(--primary-600);
            background: var(--primary-25);
        }

        .menu-toggle {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #374151;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .menu-toggle:hover {
            background: var(--primary-50);
            color: var(--primary-600);
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
        }

        @media (min-width: 992px) {
            .desktop-nav {
                display: flex;
            }
            
            .mobile-nav {
                display: none;
            }
        }

        /* Body padding to account for fixed header */
        body {
            padding-top: 80px;
            background: var(--body);
            min-height: 100vh;
        }

        /* Demo content styling */
        .demo-content {
            padding: 3rem 0;
            color: white;
        }
        .dropdown:hover .dropdown-menu{
            display: block;
                position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
        transform: translateY(50px);
    
        }

        .dropdown:hover .dropdown-menu.mega-menu{
            display: block;
                position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(529px, 47px);
    padding-top: 25px;
        }