.vlead-nav {
            background-color: #f3ffde;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .vlead-nav-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            background-color: #f3ffde;
            height: 110px;
            width: 1200px;
        }

        .vlead-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: fit-content;
        }

        .vlead-logo img {
            height: 100px;
            width: auto;
            padding: 10px 10px;
        }

        .vlead-logo-text {
            color: white;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
        }

        .vlead-nav-center {
            display: flex;
            list-style: none;
            gap: 0;
            align-items: center;
            justify-content: center;
            flex: 1;
            margin: 0;
        }

        .vlead-nav-item {
            position: relative;
            height: 70px;
            display: flex;
            align-items: center;
        }

        .vlead-nav-link {
            color: #06666b;
            text-decoration: none;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            font-size: 16px;
            font-weight: 700;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .vlead-nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .vlead-nav-item > .vlead-nav-link.has-dropdown::after {
            content: '▼';
            font-size: 10px;
            margin-left: 6px;
            transition: transform 0.3s ease;
        }

        .vlead-nav-item:hover > .vlead-nav-link.has-dropdown::after {
            transform: rotate(-180deg);
        }

        /* Dropdown Styles */
        .vlead-dropdown {
            position: absolute;
            top: 100%;
            left: -60px;
            background-color: #245039;
            list-style: none;
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border-top: 3px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
            z-index: 1001;
        }

        .vlead-nav-item:hover > .vlead-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .vlead-dropdown-item {
            position: relative;
        }

        .vlead-dropdown-link {
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
            transition: background-color 0.3s ease;
            min-height: 45px;
        }

        .vlead-dropdown-link:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }

        .vlead-dropdown-link.has-subdropdown::after {
            content: '▶';
            font-size: 10px;
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        /* Subdropdown Styles */
        .vlead-subdropdown {
            position: absolute;
            left: 100%;
            top: 0;
            background-color: #1e3d33;
            list-style: none;
            min-width: 350px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            border-left: 3px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
            z-index: 1001;
        }

        .vlead-dropdown-item:hover > .vlead-subdropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .vlead-subdropdown-link {
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            transition: background-color 0.3s ease;
            min-height: 45px;
            position: relative;
        }

        .vlead-subdropdown-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .vlead-subdropdown-link.has-child-dropdown::after {
            content: '▶';
            font-size: 9px;
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        /* Child Dropdown Styles */
        .vlead-child-dropdown {
            position: absolute;
            left: 100%;
            top: 0;
            background-color: #152a23;
            list-style: none;
            min-width: 205px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            border-left: 3px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
            z-index: 1001;
        }

        .vlead-subdropdown-item:hover > .vlead-child-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .vlead-child-dropdown-link {
            color: white;
            text-decoration: none;
            padding: 11px 18px;
            display: flex;
            align-items: center;
            font-size: 12px;
            transition: background-color 0.3s ease;
            min-height: 40px;
        }

        .vlead-child-dropdown-link:hover {
            background-color: rgba(255, 255, 255, 0.25);
        }

        .vlead-nav-right {
            display: flex;
            align-items: center;
            gap: 30px;
            min-width: fit-content;
        }

        .vlead-phone {
            color: #07666b;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 700;
            white-space: nowrap;
        }

        .vlead-phone-icon {
            font-size: 18px;
        }

        .vlead-quote-btn {
            background-color: #ff6b35;
            color: white;
            padding: 0px 20px;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            white-space: nowrap;
        }

        .vlead-quote-btn:hover {
            background-color: #e55a28;
            transform: translateY(-2px);
        }

        .vlead-quote-btn:active {
            transform: translateY(0);
        }

        /* Hamburger Menu */
        .vlead-hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            min-width: fit-content;
        }

        .vlead-hamburger span {
            width: 25px;
            height: 3px;
            background-color: rgb(0, 0, 0);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .vlead-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .vlead-hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .vlead-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .vlead-nav-container {
                height: auto;
                padding: 10px 20px;
                gap: 15px;
                flex-wrap: wrap;
            }

            .vlead-logo img {
                height: 40px;
            }

            .vlead-logo-text {
                font-size: 16px;
            }

            .vlead-nav-link {
                padding: 0 15px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .vlead-hamburger {
                display: flex;
            }

            .vlead-nav-container {
                padding: 0 15px;
                height: 60px;
                flex-wrap: nowrap;
            }

            .vlead-logo img {
                height: 40px;
            }

            .vlead-logo-text {
                font-size: 15px;
            }

            .vlead-nav-center {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background-color: #2d5044;
                width: 100%;
                justify-content: flex-start;
                z-index: 999;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
                margin: 0;
            }

            .vlead-nav-center.active {
                max-height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .vlead-nav-item {
                width: 100%;
                height: auto;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                position: relative;
            }

            .vlead-nav-link {
                width: 100%;
                padding: 15px 20px;
                height: auto;
                position: relative;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .vlead-nav-link.has-dropdown::after {
                content: '▶';
                font-size: 10px;
                margin-left: 10px;
                transition: transform 0.3s ease;
            }

            .vlead-dropdown {
                position: static;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transform: none;
                border-top: none;
                background-color: #245039;
                transition: all 0.3s ease;
                width: 100%;
                box-shadow: none;
            }

            .vlead-dropdown-item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .vlead-dropdown-link {
                padding: 12px 20px 12px 40px;
                min-height: auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .vlead-dropdown-link.has-subdropdown::after {
                content: '▶';
                font-size: 10px;
                margin-left: 10px;
                transition: transform 0.3s ease;
            }

            .vlead-nav-item.active > .vlead-dropdown {
                opacity: 1;
                visibility: visible;
                max-height: 2000px;
            }

            .vlead-subdropdown {
                position: static;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transform: none;
                border-left: none;
                background-color: #1e3d33;
                transition: all 0.3s ease;
                width: 100%;
                box-shadow: none;
            }

            .vlead-subdropdown-item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .vlead-subdropdown-link {
                padding: 12px 20px 12px 60px;
                min-height: auto;
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .vlead-subdropdown-link.has-child-dropdown::after {
                content: '▶';
                font-size: 10px;
                margin-left: 10px;
                transition: transform 0.3s ease;
            }

            .vlead-dropdown-item.active > .vlead-subdropdown {
                opacity: 1;
                visibility: visible;
                max-height: 2000px;
            }

            .vlead-child-dropdown {
                position: static;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transform: none;
                border-left: none;
                background-color: #152a23;
                transition: all 0.3s ease;
                width: 100%;
                box-shadow: none;
            }

            .vlead-subdropdown-item.active > .vlead-child-dropdown {
                opacity: 1;
                visibility: visible;
                max-height: 2000px;
            }

            .vlead-child-dropdown-link {
                padding: 11px 18px 11px 80px;
                min-height: auto;
                width: 100%;
            }

            .vlead-nav-item.active > .vlead-nav-link.has-dropdown::after,
            .vlead-dropdown-item.active > .vlead-dropdown-link.has-subdropdown::after,
            .vlead-subdropdown-item.active > .vlead-subdropdown-link.has-child-dropdown::after {
                transform: rotate(90deg);
            }

            .vlead-nav-right {
                position: fixed;
                top: 60px;
                right: 15px;
                gap: 10px;
                flex-direction: column;
                align-items: flex-end;
                z-index: 998;
            }

            .vlead-phone {
                font-size: 13px;
            }

            .vlead-quote-btn {
                padding: 8px 16px;
                font-size: 13px;
            }
            body #pagetitle {
            padding-top: 30px !important;
            padding-bottom: 30px !important;
            }
            #pagetitle .page-title {
            font-size: 28px !important;
            margin-bottom: 0;
            color: #fff;
            }
        }

        @media (max-width: 480px) {
            .vlead-nav-container {
                padding: 0 10px;
            }

            .vlead-logo img {
                height: 75px;
            }

            .vlead-logo-text {
                font-size: 14px;
                display: flex;
            }

            .vlead-nav-link {
                padding: 12px 15px;
                font-size: 13px;
                color: #fff;
            }

            .vlead-dropdown-link {
                padding: 10px 15px 10px 35px;
                font-size: 12px;
            }

            .vlead-subdropdown-link {
                padding: 10px 15px 10px 50px;
                font-size: 11px;
            }

            .vlead-child-dropdown-link {
                padding: 9px 13px 9px 65px;
                font-size: 10px;
            }

            .vlead-phone {
                display: none;
            }

            .vlead-quote-btn {
                padding: 7px 12px;
                font-size: 12px;
                display: none;
            }

            .vlead-nav-right {
                right: 10px;
            }
            body #pagetitle {
            padding-top: 30px;
            padding-bottom: 30px;
            }
        }



        .elementor-6582 .elementor-element.elementor-element-c222503 .elementor-heading-title {
            font-family: roboto !important;
            font-size: 28px !important;
            font-weight: 700;
            line-height: 31px;
            letter-spacing: 1.9px;
            word-spacing: 5px;
            -webkit-text-stroke-color: #000;
            stroke: #000;
            text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
            color: #0000008A;
            text-align: center;
        }

        .elementor-6582 .elementor-element.elementor-element-9f5d0e4 {
            --container-widget-width: 118.115%;
            --container-widget-flex-grow: 0;
            font-family: roboto !important;
            font-size: 13px !important;
            line-height: 31px;
            text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
            color: #0201019E;
        }

        .elementor-6592 .elementor-element.elementor-element-c222503 .elementor-heading-title {
            font-family: roboto !important;
            font-size: 28px !important;
            font-weight: 700;
            line-height: 31px;
            letter-spacing: 0px !important;
            word-spacing: 0px !important;
            -webkit-text-stroke-color: #000;
            stroke: #000;
            text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
            color: #0000008A;
            text-align: center !important;
        }

        .elementor-6621 .elementor-element.elementor-element-c222503 .elementor-heading-title {
            font-family: roboto !important;
            font-size: 28px !important;
            font-weight: 700;
            line-height: 31px;
            letter-spacing: 1.9px;
            word-spacing: 5px;
            -webkit-text-stroke-color: #000;
            stroke: #000;
            text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
            color: #0000008A;
            text-align: center;
            }


        .phone-number {
            font-weight: bold;
            color: #e74c3c;
            font-size: 1.2rem;
        }
        
        /* Floating buttons container */
        .floating-buttons {
            position: fixed;
            right: 32px;
            bottom: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            z-index: 99999;
        }
        
        /* Base button styles */
        .floating-button {
            position: relative;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 25px;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        /* WhatsApp button specific */
        .whatsapp-btn {
            background-color: #25D366;
            background-image: linear-gradient(to bottom right, #25D366, #128C7E);
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Call button specific */
        .call-btn {
            background-color: #3498db;
            background-image: linear-gradient(to bottom right, #3498db, #2980b9);
        }
        
        .call-btn:hover {
            background-color: #2980b9;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
        }
        
        /* Button animations */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        @keyframes ring {
            0% {
                transform: rotate(0);
            }
            10% {
                transform: rotate(-15deg);
            }
            20% {
                transform: rotate(15deg);
            }
            30% {
                transform: rotate(-15deg);
            }
            40% {
                transform: rotate(15deg);
            }
            50% {
                transform: rotate(0);
            }
            100% {
                transform: rotate(0);
            }
        }
        
        /* Pulsing animation for WhatsApp */
        .whatsapp-btn.pulse {
            animation: pulse 2s infinite;
        }
        
        /* Ringing animation for call button */
        .call-btn.ring {
            animation: ring 1.5s ease-in-out infinite;
        }
        
        /* Tooltip styles */
        .tooltip {
            position: absolute;
            right: 70px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            pointer-events: none;
        }
        
        .tooltip:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            margin-top: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
        }
        
        .floating-button:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }


         /* Responsive adjustments */
        @media (max-width: 768px) {
            .floating-buttons {
                right: 15px;
                bottom: 15px;
            }
            
            .floating-button {
                width: 55px;
                height: 55px;
                font-size: 24px;
            }
            
           
        }
        
        @media (max-width: 480px) {
            .floating-buttons {
                right: 10px;
                bottom: 160px;
            }
            
            .floating-button {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }
            
            
        }