   .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #000;
            padding: 0 2rem;
            height: 70px;
            width: 100%;
            position: fixed !important;
            top: 0;
            z-index: 1000;
        }

        /* Logo styling */
        .logo {
            display: flex;
            align-items: center;
            height: 65px;
            width:145px;
        }

        .logo img {
            width: 100%;
            height: 100%;
        }

        .img-responsive {
            max-width: 100%;
            height: auto;
        }

        /* Navigation menu styling */
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .mobile-phone{display: none;}

        .nav-item {
            margin: 0 15px;
            position: relative;
        }

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 10px 0;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #c08830;
        }

        /*.nav-link.active {*/
        /*    color: #c08830;*/
        /*}*/

        /* Phone number styling */
        .contact-phone {
            background-color: #1a1a1a;
            color: #fff;
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: background-color 0.3s ease;
            border: 1px solid #fff;
        }

        .contact-phone:hover {
            background-color: #c08830;
        }

        /* Mobile toggle button */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            position: relative;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 3px 0;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        .nav-link{color:#fff !important;}

        /* Mobile toggle animation */
        .mobile-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* Mobile overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Desktop styles */
        @media (min-width: 769px) {
            .mobile-toggle {
                display: none !important;
            }
            
            .mobile-overlay {
                display: none !important;
            }
        }

        /* Tablet styles */
        @media (max-width: 992px) and (min-width: 769px) {
            .nav-item {
                margin: 0 10px;
            }
            
            .nav-link {
                font-size: 13px;
            }
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .navbar {
                padding: 0 1rem;
                position: relative;
            }
            .mobile-phone{display: block;}

            /* Show mobile toggle */
            .mobile-toggle {
                display: flex;
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
            }

            /* Hide desktop nav menu */
            .nav-menu {
                position: fixed;
                top: 0;
                left:-1050px;
                width: 280px;
                height: 100vh;
                background-color: #000;
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 30px;
                transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                z-index: 999;
                overflow-y: auto;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 0 0 20px 0;
                width: 100%;
            }

            .nav-link {
                font-size: 16px;
                padding: 15px 0;
                display: block;
                border-bottom: 1px solid #333;
                width: 100%;
                color: #fff;
            }

            .nav-link:hover {
                color: #c08830;
                padding-left: 10px;
            }

            /* Hide desktop phone number, show in mobile menu */
            .contact-phone {
                display: none;
            }

            /* Mobile close button */
            .mobile-close {
                position: absolute;
                top: 25px;
                right: 25px;
                color: #fff;
                font-size: 28px;
                cursor: pointer;
                z-index: 1001;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: background-color 0.3s ease;
            }

            .mobile-close:hover {
                background-color: #333;
            }

            /* Mobile phone in menu */
            .mobile-phone {
                background-color: #c08830;
                color: #fff;
                padding: 12px 20px;
                border-radius: 8px;
                font-weight: 600;
                font-size: 14px;
                text-decoration: none;
                display: block;
                text-align: center;
                margin-top: 20px;
                transition: background-color 0.3s ease;
            }

            .mobile-phone:hover {
                background-color: #a0721a;
            }
        }

        /* Very small mobile devices */
        @media (max-width: 480px) {
            .navbar {
                padding: 0 0.5rem;
            }

            .logo {
                height: 50px;
            }

            .mobile-toggle {
                right: 0.5rem;
            }

            .nav-menu {
                width:100%;
                padding: 90px 20px 20px;
            }
        }

        /* Demo content */
        .demo-content {
            padding: 50px 20px;
            text-align: center;
            min-height: 100vh;
        }

        .demo-content h1 {
            color: #333;
            margin-bottom: 20px;
        }

        .demo-content p {
            color: #666;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }