        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --electric-blue: #0072FF;
            --deep-yellow: #FFD700;
            --midnight-navy: #001F3F;
            --white: #FDFDFD;
            --gold: #FFD700;
            --dark-navy: #001F3F;
            --orange: #FF8C42;
            --bright-pink: #FF3399;
            --deep-pink: #FF0066;
        }

        html {
            scroll-padding-top: 100px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--midnight-navy);
            color: var(--white);
            overflow-x: hidden;
            min-height: 100vh;
        }

        h1, h2, h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* --- NEW GALLERY STYLE HEADER CSS --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            padding: 0.8rem 3%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem; /* Logo aur Menu ke beech fasla */
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(255, 17, 104, 0.3);
            border-bottom: 2px solid rgba(255, 69, 161, 0.3);
        }

        .logo {
            font-size: clamp(0.9rem, 1.8vw, 1.3rem);
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 0.6rem; 
            text-shadow: 0 0 20px rgba(255, 17, 104, 0.8);
            text-decoration: none;
            white-space: nowrap;
        }

        .logo .truck-img {
            width: clamp(35px, 4.5vw, 55px);
            height: auto;
            animation: truckBounce 2s ease-in-out infinite;
            filter: drop-shadow(0 0 15px rgba(255, 0, 102, 0.8));
        }
        @keyframes truckBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
}

        /* Nav Menu */
        .nav-menu {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
            background: linear-gradient(90deg, var(--deep-pink), var(--bright-pink)); transition: width 0.3s;
        }
        .nav-menu a:hover::after { width: 100%; }

        /* Header Buttons */
        .call-buttons { display: flex; gap: 0.5rem; align-items: center; }
        
        .call-btn {
            background: linear-gradient(135deg, #0072FF, #00C6FF) !important;
            color: var(--white);
            padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 700; text-decoration: none;
            display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0, 114, 255, 0.5); font-size: 0.9rem;
        }

        .btn-whatsapp-header {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: var(--white);
            padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 700; text-decoration: none;
            display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); font-size: 0.9rem;
        }

        .btn-quote-nav { display: none; }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1002;
        }
        .menu-toggle span {
            width: 30px; height: 3px; background: var(--bright-pink); border-radius: 3px; transition: all 0.3s;
        }

        /* --- MOBILE HEADER & MENU --- */
        @media (max-width: 1100px) {
            header { padding: 1rem 3%; }
            
            .nav-menu {
                position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
                background: var(--dark-navy); flex-direction: column; justify-content: center;
                padding: 2rem; gap: 2rem; z-index: 1001; opacity: 0; pointer-events: none;
                transform: translateY(-100%); transition: all 0.4s ease-out;
            }
            .nav-menu.active { opacity: 1; pointer-events: all; transform: translateY(0); }
            .nav-menu a { font-size: 1.5rem; padding: 0; border-bottom: none; }
            
            .call-buttons { flex-direction: column; width: 100%; max-width: 300px; margin-top: 1rem; gap: 1rem; }
            .call-btn, .btn-whatsapp-header { width: 100%; justify-content: center; font-size: 1.1rem; padding: 0.8rem 1.2rem; }
            
            .btn-quote-nav {
                display: flex; background: linear-gradient(135deg, var(--gold), #FFB700);
                color: var(--dark-navy) !important; font-weight: 800; padding: 0.8rem 1.2rem;
                border-radius: 50px; font-size: 1.1rem; width: 100%; max-width: 300px;
                justify-content: center;
            }
            
            .menu-toggle { display: flex; }
            .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .menu-toggle.active span:nth-child(2) { opacity: 0; }
            .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
        }
        
        /* Laptop Fix */
        @media (min-width: 1024px) and (max-width: 1350px) {
            header { padding: 0.8rem 2%; }
            .logo { font-size: 1rem; }
            .nav-menu { gap: 0.7rem; }
            .nav-menu a { font-size: 0.85rem; }
            .call-btn, .btn-whatsapp-header { padding: 0.5rem 0.8rem; font-size: 0.8rem; }
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, var(--midnight-navy) 0%, #002855 50%, var(--midnight-navy) 100%);
            overflow: hidden;
        }

        .wave {
            position: absolute;
            width: 200%;
            height: 200%;
            opacity: 0.1;
            animation: wave 20s linear infinite;
        }

        .wave:nth-child(1) {
            background: radial-gradient(circle, var(--electric-blue) 0%, transparent 70%);
            animation-duration: 15s;
        }

        .wave:nth-child(2) {
            background: radial-gradient(circle, var(--deep-yellow) 0%, transparent 70%);
            animation-duration: 20s;
            animation-delay: -5s;
        }

        @keyframes wave {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Neon Lines */
        .neon-line {
            position: absolute;
            height: 2px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--electric-blue), var(--deep-yellow), transparent);
            animation: neonMove 3s linear infinite;
        }

        @keyframes neonMove {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            padding-top: 80px;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .hero-content {
            z-index: 2;
            animation: fadeInUp 1s ease-out;
            max-width: 900px;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem); 
            font-weight: 800;
            background: linear-gradient(135deg, var(--electric-blue), var(--deep-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            text-shadow: 0 0 30px rgba(0, 114, 255, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
            line-height: 1.2;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 10px rgba(0, 114, 255, 0.5)); }
            to { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: var(--deep-yellow);
            margin-bottom: 2rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 1.8rem;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        /* Dynamic Shimmer Effect */
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: transform 0.6s ease;
            z-index: -1;
            transform: skewX(-25deg);
        }

        .btn:hover::before {
            transform: skewX(-25deg) translateX(250%);
        }

        /* Primary Button (Yellow) */
        .btn-primary {
            background: linear-gradient(135deg, var(--deep-yellow), #FFA500);
            color: var(--midnight-navy);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            animation: pulse-yellow 2s infinite;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 45px rgba(255, 215, 0, 0.9);
        }

        /* Secondary/Call Button (Blue) */
        .btn-secondary, .btn-call {
            background: linear-gradient(135deg, var(--electric-blue), #0056CC);
            color: var(--white);
            box-shadow: 0 0 20px rgba(0, 114, 255, 0.5);
        }

        .btn-secondary:hover, .btn-call:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 40px rgba(0, 114, 255, 0.8);
        }

        @keyframes pulse-yellow {
            0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
            50% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.8); }
            100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
        }

        /* Particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--electric-blue);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
            box-shadow: 0 0 10px var(--electric-blue);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Service Section */
        .service-section {
            padding: 6rem 2rem;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        .service-section:nth-child(even) {
            background: linear-gradient(135deg, rgba(0, 114, 255, 0.05), rgba(255, 215, 0, 0.05));
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .service-text h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--electric-blue), var(--deep-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(253, 253, 253, 0.9);
            margin-bottom: 2rem;
        }

        .service-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .highlight-item {
            background: rgba(0, 114, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 114, 255, 0.3);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .highlight-item:hover {
            background: rgba(0, 114, 255, 0.2);
            border-color: var(--electric-blue);
            box-shadow: 0 0 20px rgba(0, 114, 255, 0.3);
            transform: translateX(5px);
        }

        .service-icon {
            font-size: 8rem;
            text-align: center;
            animation: pulse 3s ease-in-out infinite;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .service-icon i {
            color: var(--deep-yellow);
            filter: drop-shadow(0 0 20px var(--electric-blue));
        }

        .service-icon img {
            width: 100%;
            max-width: 450px;
            height: auto;
            border-radius: 15px;
            border: 2px solid var(--electric-blue);
            box-shadow: 0 0 20px rgba(0, 114, 255, 0.3);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        /* City Grid */
        .city-grid {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(0, 114, 255, 0.1), rgba(255, 215, 0, 0.1));
        }

        .city-grid h2 {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--electric-blue), var(--deep-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .city-grid-desc {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            color: rgba(253, 253, 253, 0.8);
        }

        .cities-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .city-card {
            background: rgba(0, 31, 63, 0.6);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(0, 114, 255, 0.3);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .city-card:hover {
            border-color: var(--electric-blue);
            box-shadow: 0 0 30px rgba(0, 114, 255, 0.5), 0 0 60px rgba(255, 215, 0, 0.3);
            transform: translateY(-10px);
        }

        .city-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--deep-yellow);
        }

        .city-card p {
            color: rgba(253, 253, 253, 0.7);
            margin-bottom: 1.5rem;
        }

        .city-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .city-buttons .btn {
            width: 100%;
            padding: 0.6rem;
            font-size: 0.8rem;
            justify-content: center;
        }

        /* Quote Form */
        .quote-form {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(0, 114, 255, 0.05), rgba(255, 215, 0, 0.05));
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0, 31, 63, 0.6);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 114, 255, 0.3);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 0 50px rgba(0, 114, 255, 0.2);
        }

        .form-container h2 {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--electric-blue), var(--deep-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-desc {
            text-align: center;
            margin-bottom: 3rem;
            color: rgba(253, 253, 253, 0.8);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--deep-yellow);
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid rgba(0, 114, 255, 0.3);
            background: rgba(0, 31, 63, 0.8);
            color: var(--white);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-group select option {
            background: var(--midnight-navy);
            color: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--electric-blue);
            box-shadow: 0 0 20px rgba(0, 114, 255, 0.4);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* CAPTCHA CSS */
        .captcha-group {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .captcha-display {
            padding: 1rem;
            background: rgba(0, 31, 63, 0.8);
            border: 2px solid rgba(0, 114, 255, 0.3);
            border-radius: 10px;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 5px;
            user-select: none;
            font-family: 'Courier New', Courier, monospace;
            text-decoration: line-through;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            color: var(--electric-blue);
            flex-grow: 1;
            min-width: 120px;
            text-align: center;
        }
        .captcha-input {
            padding: 1rem;
            border: 2px solid rgba(0, 114, 255, 0.3);
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            background: rgba(0, 31, 63, 0.8);
            color: var(--white);
            transition: all 0.3s;
            flex-grow: 1;
            min-width: 150px;
        }
         .captcha-input:focus {
            outline: none;
            border-color: var(--electric-blue);
            box-shadow: 0 0 20px rgba(0, 114, 255, 0.4);
         }
        .refresh-captcha {
            background: transparent;
            border: none;
            color: var(--deep-yellow);
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .refresh-captcha:hover {
            transform: rotate(180deg);
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            background: linear-gradient(135deg, var(--deep-yellow), #FFA500);
            color: var(--midnight-navy);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            animation: pulse-yellow 2s infinite;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 45px rgba(255, 215, 0, 0.9);
        }
        
        .submit-btn:disabled {
            background: #aaa;
            cursor: not-allowed;
            animation: none;
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 2rem;
            background: rgba(0, 255, 0, 0.1);
            border: 2px solid #00FF00;
            border-radius: 15px;
            margin-top: 2rem;
            color: #00FF00;
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--midnight-navy);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                display: flex;
                opacity: 0;
                pointer-events: none;
                transform: translateY(-100%);
                transition: all 0.4s ease-out;
            }

            .main-nav.active {
                opacity: 1;
                pointer-events: all;
                transform: translateY(0);
            }

            .main-nav ul {
                flex-direction: column;
                gap: 2.5rem;
                text-align: center;
            }

            .main-nav a {
                font-size: 1.5rem;
            }

            .nav-toggle {
                display: block;
            }
            
            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 0 1rem;
            }

            .service-content {
                grid-template-columns: 1fr;
            }

            .service-content:nth-child(even) .service-icon {
                order: -1;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .service-highlights {
                grid-template-columns: 1fr;
            }
            
            .captcha-group { 
                flex-direction: column; 
                align-items: stretch; 
            } 
            .captcha-display, .captcha-input { 
                width: 100%; 
                text-align: center;
            }
            .refresh-captcha { 
                align-self: center; 
                margin-top: 0.5rem;
            } 
            .form-container {
                padding: 2rem 1.5rem;
            }
        }

        /* Scroll reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: rgba(10, 14, 39, 0.95);
            color: var(--white);
            padding: 3rem 5% 1rem;
            border-top: 2px solid rgba(255, 69, 161, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem; 
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #00F5FF, #FF0066);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: footerTitle 4s ease infinite;
            filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.7));
        }

        @keyframes footerTitle {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: var(--bright-pink);
            text-decoration: underline;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap; 
        }

        .social-links a {
            color: var(--white);
            font-size: 1.5rem;
            transition: all 0.3s;
            filter: drop-shadow(0 0 10px rgba(255, 69, 161, 0.5));
            display: inline-block;
            margin-bottom: 0;
        }

        .social-links a:hover {
            color: var(--bright-pink);
            transform: translateY(-3px);
            filter: drop-shadow(0 0 20px rgba(255, 17, 104, 1));
            padding-left: 0;
            text-decoration: none;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 69, 161, 0.2);
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-section p {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-section p:has(i) {
            display: flex;          
            align-items: flex-start;  
            gap: 0.75rem;          
            margin-bottom: 0.8rem;  
        }

        .footer-section p:has(i) a {
            display: inline;
            margin-bottom: 0;     
            line-height: 1.6;     
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }
        .footer-section p:has(i) a:hover {
            color: var(--bright-pink);
            text-decoration: underline;
            padding-left: 0;
        }

        .footer-section p:has(i) i {
            width: 18px;          
            flex-shrink: 0;        
            text-align: center;    
            margin-top: 6px;      
            background: linear-gradient(135deg, #00F5FF, #FF0066);
            background-size: 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.7));
        }

        /* Chat Widget */
        .chat-widget-toggle {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: auto;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), #FFB700);
            color: var(--dark-navy);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
            z-index: 1003;
            transition: all 0.3s ease;
            overflow: hidden;
            padding: 0 1.2rem;
            font-weight: 700;
        }
        .chat-widget-toggle:hover {
            box-shadow: 0 8px 40px rgba(255, 215, 0, 0.8); 
            transform: scale(1.05); 
        }
        .chat-widget-toggle i {
            display: inline-block;
            transition: transform 0.3s ease, display 0s;
            position: relative; 
            font-size: 1.3rem; 
        }

        .chat-widget-toggle span {
            margin-left: 0.5rem;
            transition: all 0.3s ease;
        }
        .chat-widget-toggle.active span {
            display: none;
        }
        
        .chat-widget-toggle .icon-open {
            animation: iconWiggle 1.5s ease-in-out infinite;
            transform: scale(1);
        }
        .chat-widget-toggle .icon-close { 
            display: none;
            transform: scale(0);
        }
        .chat-widget-toggle.active {
            transform: none; 
            animation: none; 
        }
        .chat-widget-toggle.active:hover {
            transform: scale(1.05); 
        }
        .chat-widget-toggle.active .icon-open { 
            transform: scale(0);
            display: none; 
        }
        .chat-widget-toggle.active .icon-close { 
            transform: scale(1);
            display: inline-block; 
        }

        @keyframes iconWiggle {
            0%, 100% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(-10deg) scale(1); }
            75% { transform: rotate(10deg) scale(1); }
        }

        .chat-widget-menu {
            position: fixed;
            bottom: 85px;
            right: 25px;
            width: 250px;
            background: rgba(10, 14, 39, 0.95); 
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 215, 0, 0.4); 
            border-radius: 20px;
            box-shadow: 0 5px 40px rgba(255, 215, 0, 0.3); 
            z-index: 1002; 
            transform: scale(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
            overflow: hidden;
        }
        .chat-widget-menu.active {
            transform: scale(1);
        }
        .chat-widget-header {
            padding: 1rem;
            text-align: center;
            font-weight: 700;
            font-size: 1.1rem;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 183, 0, 0.2)); 
            color: var(--gold); 
            border-bottom: 2px solid rgba(255, 215, 0, 0.3); 
        }
        .chat-widget-menu a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 69, 161, 0.2);
            transition: background 0.3s, transform 0.3s ease, opacity 0.3s ease;
            
            transform: translateX(20px);
            opacity: 0;
        }
        .chat-widget-menu.active a {
            transform: translateX(0);
            opacity: 1;
        }
        
        .chat-widget-menu.active a:nth-of-type(1) { transition-delay: 0.05s; }
        .chat-widget-menu.active a:nth-of-type(2) { transition-delay: 0.1s; }
        .chat-widget-menu.active a:nth-of-type(3) { transition-delay: 0.15s; }
        .chat-widget-menu.active a:nth-of-type(4) { transition-delay: 0.2s; }
        .chat-widget-menu.active a:nth-of-type(5) { transition-delay: 0.25s; }

        .chat-widget-menu a:last-child {
            border-bottom: none;
        }
        .chat-widget-menu a:hover {
            background: rgba(255, 69, 161, 0.1);
        }
        .chat-widget-menu a i {
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
            color: var(--orange);
            transition: color 0.3s ease;
        }
        .chat-widget-menu a:nth-of-type(3) i,
        .chat-widget-menu a:nth-of-type(4) i {
            color: #25D366; /* WhatsApp Green */
        }
        
        .chat-widget-menu a#chat-widget-quote-link {
            background: linear-gradient(135deg, var(--gold), #FFB700);
            color: var(--dark-navy);
            font-weight: 800;
        }
        .chat-widget-menu a#chat-widget-quote-link i { 
            color: var(--dark-navy); 
        }
        .chat-widget-menu a#chat-widget-quote-link:hover {
            background: rgba(255, 255, 255, 0.05); 
            color: var(--gold);
            text-shadow: 0 0 10px var(--gold);
        }
        .chat-widget-menu a#chat-widget-quote-link:hover i { 
            color: var(--gold); 
        }
        /* Custom WhatsApp Button Style (Resized to match Call/Quote button size) */
.btn-whatsapp {
    /* Custom Green Background (Kept for the unique color/style) */
    background: linear-gradient(135deg, #1DBE73 0%, #00AE61 100%) !important; 
    color: #fff !important; 
    
    /* *** KEY CHANGE: Reduced Padding and Font Size for Uniformity *** */
    padding: 0.8rem 1.8rem !important; /* Matches the standard size of .btn */
    font-size: 0.95rem !important; /* Matches the standard size of .btn */
    
    border-radius: 50px; 
    font-weight: 800; 
    text-decoration: none;
    
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 0.8rem; 
    
    min-width: 250px; /* Kept wide for impact, but responsive */
    transition: all 0.3s ease-in-out; 
    
    /* Shadow and Animation */
    box-shadow: 0 10px 30px rgba(29, 190, 115, 0.6); 
    animation: none !important; 
}

/* Hover effect for the new WhatsApp button */
.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05); /* Reduced lift on hover */
    box-shadow: 0 15px 40px rgba(29, 190, 115, 0.8); 
}

.btn-whatsapp i {
    font-size: 1em; /* Reduced icon size to match other buttons */
}

/* Mobile Responsiveness remains the same: stack them and use 100% width */
@media (max-width: 768px) {
    .hero-buttons {
        /* ... existing stacking rules ... */
    }
    /* Set all buttons to the same reduced mobile size */
    .hero-buttons a {
        width: 100%;
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem !important; /* Consistent mobile padding */
    }
}
/* --- FINAL MOBILE BUTTON FIX (Index Page) --- */
@media (max-width: 1100px) {
    .cta-buttons {
        display: flex;
        flex-direction: column; /* Upar-Neeche */
        align-items: center;    /* Bilkul Center */
        width: 100%;
        gap: 15px;              /* Beech ka fasla */
        max-width: 100% !important;
        margin-top: 1rem;
    }

    /* Buttons ka Smart Size */
    .cta-buttons a, 
    .cta-buttons .btn-primary, 
    .cta-buttons .btn-whatsapp, 
    .cta-buttons .btn-quote {
        width: auto !important;      /* Full width khatam */
        min-width: 250px !important; /* Smart Size (Gallery jaisa) */
        max-width: 90% !important;   /* Screen se bahar na jaye */
        display: inline-flex;
        justify-content: center;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
}
/* --- HERO BUTTONS FIX (Smart Size & Centered) --- */
@media (max-width: 1100px) {
    .hero-buttons {
        display: flex;
        flex-direction: column; /* Upar-Neechay */
        align-items: center;    /* Bilkul Center */
        width: 100%;
        gap: 15px;              /* Thoda khula faasla */
        margin-top: 1rem;
    }

    /* Target links inside hero-buttons */
    .hero-buttons a,
    .hero-buttons .btn {
        width: auto !important;      /* Full width khatam */
        min-width: 250px !important; /* Smart Size (Na chota, na lamba) */
        max-width: 90% !important;   /* Screen se bahar nahi jayega */
        display: inline-flex;
        justify-content: center;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
}
/* --- HERO MOBILE FIX (Shift Content to Top) --- */
@media (max-width: 1100px) {
    .hero {
        /* Flexbox settings ko change karke content UPAR bheja */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* Center se hata kar Start (Top) kar diya */
        align-items: center !important;         /* Left-Right Center rahega */
        
        /* Padding adjust ki */
        padding-top: 120px !important;      /* Header ke foran baad shuru hoga */
        padding-bottom: 150px !important;   /* Neeche Widget ke liye jagah chori */
        
        /* Height control */
        min-height: 80vh !important;        /* Screen size maintain karega */
        height: auto !important;
    }

    .hero-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Heading thodi adjust ki taake aur upar fit ho */
    .hero h1 {
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }
}



/* --- FINAL MOBILE ADJUSTMENT: Small Title & Spacing --- */
@media (max-width: 1100px) {
    
    /* 1. Hero Section ki setting (Content ko Upar rakha) */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* Content Upar (Top) shuru hoga */
        padding-top: 110px !important;      /* Header ke foran baad */
        padding-bottom: 200px !important;   /* Neeche Widget ke liye KAAFI jagah chori */
        height: auto !important;
        min-height: 80vh !important;
    }

    /* 2. Title (24/7...) ka Size Chota kiya */
    .hero h1 {
        font-size: 1.7rem !important;  /* Pehle se kaafi chota kiya */
        line-height: 1.3 !important;   /* Lines ke beech gap kam kiya */
        margin-bottom: 0.5rem !important; 
        margin-top: 0 !important;
    }

    /* 3. Subtitle (Fast Reliable...) ka size adjust */
    .hero p, .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
}
/* --- FIX: TRUCK ANIMATION & SIZE (DESKTOP) --- */

/* 1. Ye code Truck ko chalayega (Move karega) */
@keyframes truckMove {
    0% { left: -250px; transform: scaleX(-1) translateY(0); }
    50% { transform: scaleX(-1) translateY(-5px); }
    100% { left: 110%; transform: scaleX(-1) translateY(0); }
}

/* 2. Desktop par Size aur Position Set ki */
@media (min-width: 1101px) {
    .truck-animation {
        position: absolute !important;
        bottom: 8% !important; /* Road ke upar set kiya */
        left: -250px;
        width: clamp(300px, 30vw, 450px) !important; /* Size control kiya */
        z-index: 5 !important; /* Text ke peeche, background ke aage */
        animation: truckMove 15s linear infinite !important; /* 15 second mein cross karega */
        display: block !important;
    }
    
    .truck-animation img {
        width: 100%;
        height: auto;
        display: block;
    }
}
/* --- DESKTOP HERO BUTTONS FIX (Equal & Smart Size) --- */
@media (min-width: 1101px) {
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 15px; /* Buttons ke beech faasla */
    }

    /* Teeno buttons ko target karke size fix kiya */
    .hero-buttons a, 
    .hero-buttons .btn {
        width: 220px !important;         /* Fixed Width: Teeno barabar honge */
        padding: 0.8rem 1rem !important; /* Padding kam ki taake button chota lage */
        font-size: 0.9rem !important;    /* Text size neat kiya */
        display: inline-flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
}
/* --- FINAL FIX: 3 Buttons in One Line (Small & Compact) --- */

/* 1. Container ko Row (Line) mein force karein */
.service-text .hero-buttons {
    display: flex !important;
    flex-direction: row !important;       /* Ek Line mein */
    flex-wrap: wrap !important;           /* Agar jagah na ho to adjust kare */
    justify-content: flex-start !important; /* Left side se shuru ho */
    align-items: center !important;
    gap: 8px !important;                  /* Beech ka fasla kam kiya */
    margin-top: 1rem !important;
    width: 100% !important;
}

/* 2. Buttons ka Size Bilkul Chota Karein */
.service-text .hero-buttons a {
    width: auto !important;               /* Zabardasti failna band */
    min-width: auto !important;           /* Fixed width khatam */
    padding: 0.5rem 0.8rem !important;    /* Padding bohot kam ki */
    font-size: 0.8rem !important;         /* Text size chota kiya */
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    flex: 0 1 auto !important;            /* Jitna text hai bas utna button bane */
}

/* 3. Icon aur Text ke beech fasla kam karein */
.service-text .hero-buttons a i {
    margin-right: 4px !important;
    font-size: 0.9rem !important;
}
/* --- FINAL FIX: 3 Buttons SAME SIZE & ONE LINE --- */

/* 1. Container ko Row (Line) mein set kiya */
.service-text .hero-buttons {
    display: flex !important;
    flex-direction: row !important;       /* Ek Line mein */
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 6px !important;                  /* Beech ka faasla kam kiya taake fit ayen */
    width: 100% !important;
    margin-top: 1rem !important;
}

/* 2. Buttons ko SAME SIZE aur COMPACT kiya */
.service-text .hero-buttons a {
    flex: 1 !important;                   /* Ye command sabko BARABAR size degi */
    max-width: 140px !important;          /* Size Chota (Compact) rahega */
    min-width: 100px !important;          /* Bohot chota bhi nahi hone dega */
    height: 40px !important;              /* Sabki Height same kar di */
    padding: 0 !important;                /* Padding khatam karke center kiya */
    
    font-size: 0.75rem !important;        /* Text size thoda chota kiya taake fit aye */
    white-space: nowrap !important;       /* Text toot kar niche nahi jayega */
    
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

/* 3. Icon ka size adjust kiya */
.service-text .hero-buttons a i /* --- FINAL BUTTON FIX: Green Style Shape, But Different Colors --- */

/* 1. Container (Ek Line mein) */
.service-text .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
}

/* 2. Common Shape & Size (Sab Green button jaise dikhenge size mein) */
.service-text .hero-buttons a {
    flex: 1 !important;
    min-width: 100px !important;
    max-width: 160px !important;
    height: 45px !important;          /* Height fix ki (Green style) */
    border-radius: 50px !important;   /* Round Shape (Green style) */
    padding: 0 !important;            /* Padding 0 taake center ho */
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

/* 3. Icon Gap (Thoda fasla) */
.service-text .hero-buttons a i {
    margin-right: 8px !important;
    font-size: 1rem !important;
}

/* --- 4. COLORS (Alag Alag Rahenge) --- */

/* Call Button -> BLUE */
.service-text .hero-buttons .btn-call {
    background: linear-gradient(135deg, #0072FF, #00C6FF) !important;
    color: #fff !important;
}

/* WhatsApp Button -> GREEN */
.service-text .hero-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #fff !important;
}

/* Quote Button -> YELLOW */
.service-text .hero-buttons .btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
}
/* --- FINAL FIX: SERVICE BUTTONS (Match Major City Size) --- */
@media (max-width: 1100px) {
    
    /* 1. Container */
    .service-text .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;              /* Gap thoda khula kiya */
        margin-top: 1.5rem !important;
        width: 100% !important;
    }

    /* 2. Buttons Size (Mota aur Bhara hua) */
    .service-text .hero-buttons a,
    .service-text .hero-buttons .btn {
        width: 100% !important;
        max-width: 320px !important;    /* Chaudai City buttons jaisi ki */
        
        /* Height Fix Hata di, Padding se Mota kiya */
        height: auto !important;        
        padding: 14px 20px !important;  /* Ye button ko MOTA karega */
        min-height: 55px !important;    /* Kam se kam itna mota rahega */
        
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        
        font-size: 1.1rem !important;   /* Text bhi thoda bada kiya */
        font-weight: 700 !important;
        border-radius: 50px !important;
        border: none !important;
        margin: 0 !important;
        
        /* Shadow thodi heavy ki taake button utha hua lage */
        box-shadow: 0 8px 25px rgba(0,0,0,0.25) !important; 
    }

    /* 3. Colors (Hero Style) */
    .service-text .btn-call {
        background: linear-gradient(135deg, #0072FF, #00C6FF) !important;
        color: #fff !important;
    }
    .service-text .btn-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E) !important;
        color: #fff !important;
    }
    .service-text .btn-primary {
        background: linear-gradient(135deg, #FFD700, #FFA500) !important;
        color: #000 !important;
    }
    
    /* 4. Icon Spacing */
    .service-text .hero-buttons a i {
        margin-right: 10px !important;
        font-size: 1.2rem !important;
    }
}