    nav {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            padding: 15px 30px;
            margin-top: 20px;
            background: rgba(0, 0, 0, 0.203);
            backdrop-filter: blur(15px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-size: 34px;
            font-weight: bold;
            color: #4a90ff;
            z-index: 1001;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: #4a90ff;
        }


        .get-quote-btn {
            background: linear-gradient(135deg, #4a90ff, #6366f1);
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(74, 144, 255, 0.3);
            white-space: nowrap;
        }

        .get-quote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(74, 144, 255, 0.4);
        }

        #mobile-quote-btn {
                display: none;
            }

    
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
        }

        .hamburger {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Hamburger Animation */
        .mobile-menu.active .hamburger:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
        }

        .mobile-menu.active .hamburger:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active .hamburger:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
        }

        /* Tablet Styles */
        @media screen and (max-width: 1024px) {
            nav {
                width: 95%;
                padding: 15px 25px;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .logo {
                font-size: 30px;
            }
        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {
            nav {
                width: 80%;
                padding: 15px 20px;
                margin-top: 10px;
            }

            .mobile-menu {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -120%;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transition: right 0.4s ease;
                z-index: 1000;
                position: fixed;
          
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 24px;
                font-weight: 600;
            }

            .get-quote-btn {
                display: none;
            }

            /* Show quote button in mobile menu */
            .nav-links.active::after {
                content: '';
                position: absolute;
                bottom: 20%;
            }

            #mobile-quote-btn {
                display: flex;
                background: linear-gradient(135deg, #4a90ff, #6366f1);
                padding: 15px 30px;
                border-radius: 25px;
                text-decoration: none;
                color: white;
                font-weight: 600;
                font-size: 18px;
                margin-top: 30px;
                box-shadow: 0 4px 15px rgba(74, 144, 255, 0.3);
            }

            #mobile-quote-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(74, 144, 255, 0.4);
        }

            .nav-links.active .mobile-quote-btn {
                display: inline-block;
            }
        }

        /* Small Mobile Styles */
        @media screen and (max-width: 480px) {
            nav {
                padding: 12px 15px;
            }

            .logo {
                font-size: 28px;
            }

            .hamburger {
                width: 22px;
                height: 2px;
            }

            .nav-links a {
                font-size: 22px;
            }
        }