
        :root {
            --primary-color: #0b081b;
            --primary-dark: #100b2c;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --accent-teal: #00d4aa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
        
            color: var(--text-dark);
            background-color: #fff;
            padding-top: 85px;
            margin: 0;
        }

         *{
            font-family:  'Alfa Slab One', serif;
    
        }
        /* Header Styles */
        .header-custom {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            height: 85px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2.5rem;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        /* Logo Styling */
        .logo-custom {
            font-weight: 1200;
            font-size: 1.5rem;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .logo-custom:hover {
            transform: scale(1.02);
        }

        .logo-img {
            height: 90px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            display: none;
        }

        /* Desktop Navigation */
        .nav-menu-custom {
            display: flex;
            list-style: none;
            gap: 0.25rem;
            align-items: center;
            margin: 0;
            padding: 0;
            flex-wrap: nowrap;
            flex: 1;
            justify-content: center;
        }

        .nav-item-custom {
            position: relative;
            white-space: nowrap;
            flex-shrink: 0;
        }
        

        .nav-link-custom {
            font-weight: 900;
            color: var(--text-dark);
            font-size: 4 rem;
            padding: 0.65rem 1rem;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            cursor: pointer;
            border-radius: 8px;
            position: relative;
        }

        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: 0.25rem;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: transform 0.2s ease;
        }

        .nav-link-custom:hover,
        .nav-link-custom.active {
            color: var(--primary-color);
            background: rgba(11, 8, 27, 0.03);
        }

        .nav-link-custom:hover::after,
        .nav-link-custom.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-link-custom i {
            font-size: 0.65rem;
            opacity: 0.7;
            transition: transform 0.2s ease;
        }

        .nav-item-custom:hover .nav-link-custom i {
            transform: rotate(180deg);
        }

        /* Mega Menu Dropdown */
        .mega-dropdown {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 720px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            border-radius: 16px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            display: flex;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .nav-item-custom:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Mega Menu Left Panel - Categories */
        .mega-menu-categories {
            width: 280px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-right: 1px solid #e2e8f0;
            padding: 1.25rem 0;
        }

        .mega-category-item {
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-left: 3px solid transparent;
            margin: 0.15rem 0;
        }

        .mega-category-item:hover {
            background-color: white;
            color: var(--primary-color);
            border-left-color: var(--primary-color);
            padding-left: 1.75rem;
        }

        .mega-category-item.active {
            background-color: white;
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }

        .mega-category-item i {
            font-size: 0.7rem;
            opacity: 0.5;
            transition: transform 0.2s ease;
        }

        .mega-category-item:hover i {
            transform: translateX(3px);
            opacity: 0.8;
        }

        /* Mega Menu Right Panel - Services */
        .mega-menu-services {
            flex: 1;
            padding: 1.5rem;
            background: white;
            display: none;
        }

        .mega-menu-services.active {
            display: block;
        }

        .mega-service-header {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .mega-service-item {
            padding: 0.85rem 1.25rem;
            border-radius: 8px;
            font-weight: 500;
            color: var(--text-dark);
            transition: all 0.2s ease;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            margin-bottom: 0.35rem;
            border-left: 2px solid transparent;
        }

        .mega-service-item:hover {
            background-color: #f8fafc;
            color: var(--primary-color);
            transform: translateX(5px);
            border-left-color: var(--primary-color);
        }

        .mega-service-item strong {
            display: block;
            font-weight: 600;
            margin-bottom: 0.15rem;
        }

        .mega-service-item small {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* Buttons */
        .nav-buttons-custom {
            display: flex;
            gap: 0.75rem;
            align-items: center;
            flex-shrink: 0;
        }

        .btn-login-custom {
            color: var(--text-dark);
            font-weight: 600;
            padding: 0.65rem 1.25rem;
            transition: all 0.2s ease;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.9rem;
        }
        
        .btn-login-custom:hover {
            color: var(--primary-color);
            background: rgba(11, 8, 27, 0.05);
        }

        .btn-apply-custom {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            font-weight: 600;
            padding: 0.65rem 1.75rem;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 14px rgba(11, 8, 27, 0.25);
            text-decoration: none;
            display: inline-block;
            border: none;
            font-size: 0.9rem;
        }

        .btn-apply-custom:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 6px 20px rgba(11, 8, 27, 0.35);
        }

        /* Mobile Toggle */
        .mobile-toggle-custom {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-toggle-custom span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-toggle-custom.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

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

        .mobile-toggle-custom.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu-custom {
            display: none;
            position: fixed;
            top: 85px;
            right: -100%;
            width: 320px;
            height: calc(100vh - 85px);
            background: white;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 999;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0;
            flex-direction: column;
        }

        .mobile-menu-custom.active {
            right: 0;
        }

        .mobile-overlay-custom {
            display: none;
            position: fixed;
            top: 85px;
            left: 0;
            width: 100%;
            height: calc(100vh - 85px);
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
        }

        .mobile-overlay-custom.active {
            display: block;
        }

        .mobile-nav-item-custom {
            padding: 0;
            width: 100%;
        }

        .mobile-nav-link-custom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.2s ease;
            border-bottom: 1px solid #f1f5f9;
            width: 100%;
            cursor: pointer;
        }

        .mobile-nav-link-custom:hover {
            background: #f8fafc;
            color: var(--primary-color);
        }

        .mobile-dropdown-custom {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #f8fafc;
            width: 100%;
        }

        .mobile-dropdown-custom.active {
            max-height: 1000px;
        }

        .mobile-category-header {
            padding: 1rem 1.5rem 0.5rem 2rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 0.5rem;
        }

        .mobile-category-header:first-child {
            margin-top: 0.75rem;
        }

        .mobile-dropdown-item-custom {
            padding: 0.75rem 1.5rem 0.75rem 2.5rem;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            display: block;
            transition: all 0.2s ease;
            width: 100%;
            border-left: 3px solid transparent;
        }

        .mobile-dropdown-item-custom:hover {
            background: #eff6ff;
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }

        .mobile-buttons-custom {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: auto;
            border-top: 1px solid #e2e8f0;
            background: white;
            width: 100%;
        }

        .mobile-buttons-custom .btn-login-custom,
        .mobile-buttons-custom .btn-apply-custom {
            width: 100%;
            text-align: center;
            display: block;
            padding: 0.75rem 1.5rem;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .nav-menu-custom,
            .nav-buttons-custom {
                display: none;
            }

            .mobile-toggle-custom {
                display: flex;
            }
            
            .mobile-menu-custom {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 75px;
            }

            .header-custom {
                height: 75px;
            }

            .header-container {
                padding: 0 1.25rem;
            }

            .mobile-menu-custom {
                width: 85%;
                max-width: 320px;
                top: 75px;
                height: calc(100vh - 75px);
            }

            .mobile-overlay-custom {
                top: 75px;
                height: calc(100vh - 75px);
            }

            .logo-img {
                height: 45px;
            }

            .mega-dropdown {
                min-width: 90vw;
                flex-direction: column;
            }

            .mega-menu-categories {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu-custom {
                width: 90%;
            }

            .mobile-nav-link-custom {
                padding: 1rem 1.25rem;
                font-size: 0.95rem;
            }

            .mobile-dropdown-item-custom {
                padding: 0.65rem 1.25rem 0.65rem 2rem;
                font-size: 0.85rem;
            }

            .mobile-category-header {
                padding: 0.75rem 1.25rem 0.5rem 1.75rem;
                font-size: 0.7rem;
            }

            .logo-img {
                height: 42px;
            }
        }
    