        /* Navbar Styles */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0 2rem;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(227, 194, 5, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-container.scrolled {
            background: rgba(0, 0, 0, 0.98);
            height: 100px;
            border-bottom: 1px solid rgba(227, 194, 5, 0.2);
        }

        /* Logo Section */
        .nav-logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .nav-logo {
            height: 85px;
            width: auto;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link {
            display: flex;
            flex-direction: row;
            text-decoration: none;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .nav-link:hover {
            text-decoration: none;
        }

        .nav-container.scrolled .nav-logo {
            height: 38px;
        }

        .nav-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
        }

        .nav-tagline {
            color: white;
            text-align: center;
            font-style: italic;
        }

        /* Right Side Container */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        /* Phone CTA */
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgb(0, 0, 0);
            text-decoration: none !important;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #FFD700 0%, #ffec8b 100%);
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(227, 194, 5, 0.2);
            position: relative;
            font-size: 10px;
            overflow: hidden;
        }
        .nav-phone span {
            font-style: italic;
            text-transform: uppercase;
        }

        .nav-phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .nav-phone:hover::before {
            left: 100%;
        }

        .nav-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(227, 194, 5, 0.4);
        }

        .phone-icon {
            font-size: 1.1rem;
        }

        .nav-phone img {
            height: 25px;
            width: 25px;
        }


        /* Hamburger Menu */
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            background: black;
            z-index: 1001;
        }

        .hamburger:hover {
            background: rgba(227, 194, 5, 0.1);
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: #E3C205;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
            background: #E3C205;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 100px;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 2rem 0;
            border-bottom: 1px solid rgba(227, 194, 5, 0.2);
            /* NEW SCROLLING RULES */
            max-height: calc(100vh - 80px);
            /* Prevent from going off screen */
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #E3C205 transparent;
        }

        /* Optional: style scrollbar for WebKit browsers */
        .mobile-menu::-webkit-scrollbar {
            width: 6px;
        }

        .mobile-menu::-webkit-scrollbar-track {
            background: transparent;
        }

        .mobile-menu::-webkit-scrollbar-thumb {
            background: #E3C205;
            border-radius: 3px;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(227, 194, 5, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .mobile-menu a:hover::before {
            left: 100%;
        }

        .mobile-menu a:hover {
            color: #E3C205;
            border-left-color: #E3C205;
            background: rgba(227, 194, 5, 0.05);
            transform: translateX(2px);
        }

        /* Mobile Phone CTA */
        .mobile-phone {
            margin: 1rem 2rem 0;
            padding: 1rem;
            background: linear-gradient(135deg, #E3C205 0%, #d4af04 100%);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            max-width: 300px;
        }

        .mobile-phone a {
            color: black !important;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0;
            border: none;
            background: none;
            transform: none;
        }

        .mobile-phone:hover {
            transform: scale(0.92);
            box-shadow: 0 8px 25px rgba(227, 194, 5, 0.3);
        }

        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(0, 0, 0);
            backdrop-filter: blur(4px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Demo Content */
        .demo-content {
            margin-top: 100px;
            padding: 2rem;
            text-align: center;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, white 0%, #E3C205 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .demo-content p {
            color: #ccc;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .existing-customer {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

        }

        .existing-customer p {
            color: white;
            margin-top: 7px;
            font-size: 8px;
            max-width: 300px;
            text-align: center;
        }

        .existing-customer-buttons {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 10px;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
             .nav-phone img {
                height: 15px;
                width: 15px;
             }
            .nav-phone {
                max-width: 105px;
                padding: 0.5rem 1rem;
            }
            .nav-tagline {
                display: none
            }

            .nav-container {
                padding: 0 1rem;
            }

            .nav-title {
                display: none;
            }

            .nav-logo {
                height: 75px;
            }

            .nav-right {
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .nav-title {
                display: none;
            }

            .nav-logo {
                height: 65px;
            }
        }