        :root {
            --primary-color: #1a365d;
            --secondary-color: #2d4d8c;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-light: #666;
            --border-color: #e0e0e0;
            --gradient-start: #1a365d;
            --gradient-end: #2d4d8c;
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lexend', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-area {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow-light);
            z-index: 1000;
            transition: var(--transition);
            padding: 15px 0;
        }

        .header-area.stick {
            padding: 10px 0;
            box-shadow: var(--shadow-medium);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            display: inline-block;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .header-area.stick .logo-img {
            height: 40px;
        }
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin-left: auto;
            margin-right: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 8px 0;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--secondary-color);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

           
 .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
}

.social-icons {
    order: 2;
}

.enquiry-btn {
    order: 1; 
}

.header-area {
    width: 100%;
}




.header-container {
    display: flex;
    align-items: center;
    width: 100%;
       max-width: 100%;
    padding-right: 30px !important;
    padding-left: 150px; /* optional */
    margin-right: 0;
} 


        .enquiry-btn {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--shadow-light);
        }

        .enquiry-btn:hover {
            background: linear-gradient(to right, var(--secondary-color), #3a5da0);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            color: white;
            text-decoration: none;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            list-style: none;
            margin-bottom: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #2d4d8c;
            color:white;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-light);
        }

        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition);
        }

        .hamburger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--primary-color);
            border-radius: 3px;
            transition: var(--transition);
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100%;
            background: white;
            z-index: 999;
            box-shadow: var(--shadow-heavy);
            transition: var(--transition);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
background: rgba(75, 106, 164, 0.65);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px;
            border-bottom: 1px solid var(--border-color);
            background-color: white;
        }

        .sidebar-logo {
            height: 40px;
            width: auto;
        }

        .sidebar-close {
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .sidebar-close:hover {
            background-color: rgba(26, 54, 93, 0.1);
            color: var(--secondary-color);
        }

        .sidebar-nav {
            padding: 30px 20px;
            flex-grow: 1;
        }

        .sidebar-links {
            list-style: none;
            padding: 0;
        }

        .sidebar-links li {
            margin-bottom: 10px;
        }

        .sidebar-links a {
            display: block;
            text-decoration: none;
            color: var(--text-color);
            font-size: 18px;
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 10px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .sidebar-links a:hover,
        .sidebar-links a.active {
            background-color: rgba(26, 54, 93, 0.1);
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .sidebar-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
            transform: translateX(-100%);
            transition: var(--transition);
        }

        .sidebar-links a:hover::before,
        .sidebar-links a.active::before {
            transform: translateX(0);
        }

        .sidebar-footer {
            padding: 25px 20px;
            border-top: 1px solid var(--border-color);
            background-color: white;
        }

        .sidebar-footer .enquiry-btn {
            display: block;
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
            font-size: 16px;
            padding: 12px;
        }

        .sidebar-social {
            text-align: center;
        }

        .sidebar-social h4 {
            color: var(--primary-color);
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .sidebar-social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            list-style: none;
            padding: 0;
        }

        .sidebar-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            transition: var(--transition);
            text-decoration: none;
            font-size: 18px;
        }

        .sidebar-social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-light);
        }

        /* Main Content Styles */
        .section-spacing {
            padding: 100px 0;
        }

        /* Services Hero Section */
        .services-hero {
            padding: 120px 0 80px;   /* sirf required space */
    background:
        linear-gradient(
            rgba(12, 45, 87, 0.65),
            rgba(12, 45, 87, 0.65)
        ),
        url('../img2/maruti2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
        }

        .services-hero::before {
            content: none;
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 54, 93, 0.03)"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        .services-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .services-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
        }

        .services-subtitle {
            font-size: 18px;
            color: white;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* Services Grid - IMPROVED: Full content visible */
        .services-grid-section {
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .section-main-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-main-title::after {
            content: none;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            min-height: 320px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 36px;
            transition: var(--transition);
            position: relative;
            z-index: 2;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
        }

        .service-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
            line-height: 1.3;
        }

        .service-description {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }

        .service-features-list {
            list-style: none;
            padding: 0;
            margin: 15px 0 25px;
            text-align: left;
            width: 100%;
        }

        .service-features-list li {
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            align-items: flex-start;
        }

        .service-features-list li i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .service-cta {
            margin-top: auto;
            width: 100%;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            width: 100%;
            max-width: 200px;
        }

        .service-btn:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-light);
        }

        .service-btn i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .service-btn:hover i {
            transform: translateX(5px);
        }

        /* Service Detail Modal */
        .service-detail-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1002;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            padding: 20px;
        }

        .service-detail-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .service-detail-content {
            background: white;
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(50px);
            transition: transform 0.5s ease;
        }

        .service-detail-modal.active .service-detail-content {
            transform: translateY(0);
        }

        .service-detail-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: var(--transition);
        }

        .service-detail-close:hover {
            background: var(--secondary-color);
            transform: rotate(90deg);
        }

        .service-detail-image {
            width: 100%;
            height: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .service-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-detail-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(26, 54, 93, 0.7));
        }

        .service-detail-body {
            padding: 40px;
            position: relative;
            margin-top: -60px;
            background: white;
            border-radius: 20px 20px 0 0;
        }

        .service-detail-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .service-detail-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .service-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .service-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(26, 54, 93, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .feature-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Fleet Section */
        .fleet-section {
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.03) 0%, rgba(45, 77, 140, 0.03) 100%);
        }

        .fleet-category {
            margin-bottom: 50px;
        }

        .category-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--primary-color);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .category-title::after {
            content: none;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .fleet-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }

        .fleet-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .fleet-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            filter: grayscale(30%);
            transition: var(--transition);
        }

        .fleet-card:hover .fleet-img {
            filter: grayscale(0%);
        }

        .fleet-info {
            padding: 25px;
            text-align: center;
        }

        .fleet-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .fleet-type {
            font-size: 14px;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(45, 77, 140, 0.05) 100%);
            text-align: center;
        }

        .cta-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .cta-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cta-btn {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
        }

        .cta-btn:hover {
            background: linear-gradient(to right, var(--secondary-color), #3a5da0);
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
            color: white;
            text-decoration: none;
        }

      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
       
        @media (max-width: 768px) {
            .services-hero {
                padding: 150px 0 80px;
            }
            
            .services-title {
                font-size: 32px;
            }
            
            .section-spacing {
                padding: 80px 0;
            }
            
            .section-main-title {
                font-size: 32px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .service-card {
                min-height: 300px;
            }
            
            .service-features-grid {
                grid-template-columns: 1fr;
            }
            
            .fleet-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .footer-social {
                justify-content: center;
                margin-top: 20px;
            }
            
            .footer-social li:first-child {
                margin-left: 0;
            }
        }
        
        @media (max-width: 576px) {
            .services-title {
                font-size: 28px;
            }
            
            .services-subtitle {
                font-size: 16px;
            }
            
            .section-main-title {
                font-size: 28px;
            }
            
            .service-card {
                padding: 30px 25px;
                min-height: 280px;
            }
            
            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 32px;
            }
            
            .service-title {
                font-size: 22px;
            }
            
            .service-detail-body {
                padding: 25px 20px;
            }
            
            .service-detail-title {
                font-size: 24px;
            }
            
            .service-detail-text {
                font-size: 15px;
            }
            
            .category-title {
                font-size: 24px;
            }
            
            .cta-title {
                font-size: 28px;
            }
        }



        
             /* WhatsApp Button with relative/absolute positioning */
       .whatsapp-container {
    position: fixed !important;
    left: 20px !important;    
    bottom: 20px !important; 
    right: auto !important;   
    
    z-index: 99999;
}


        .whatsapp-scroll {
            position: relative;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            font-size: 30px;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-scroll:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
        }

        /* Tooltip */
        .whatsapp-tooltip {
            position: absolute;
            left: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #333;
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 9999;
        }

        .whatsapp-tooltip:before {
            content: '';
            position: absolute;
            left: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 6px 6px 6px 0;
            border-style: solid;
            border-color: transparent #333 transparent transparent;
        }

        .whatsapp-scroll:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* For demo page content */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            min-height: 200vh; /* Extra height for scrolling */
            background: linear-gradient(to bottom, lab(94.8% 0.01 -0.01), #e0e0e0);
        }
        
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section {
            background: white;
            padding: 40px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        h1, h2 {
            color: #333;
        }
        
        p {
            line-height: 1.6;
            color: #666;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .whatsapp-container {
                left: 15px;
                bottom: 15px;
            }
            
            .whatsapp-scroll {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
            
            .whatsapp-tooltip {
                left: 60px;
                font-size: 12px;
                padding: 6px 12px;
            }
  

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.social-icons li a {
    color: #ccc;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-icons li a:hover {
    color: #fff;
}

















/* 480px Media Query for Mobile */
@media (max-width: 480px) {
    /* Header fix for 480px */
    .header-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-left: 20px !important; /* Mobile के लिए adjust */
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-right {
        gap: 8px;
        margin-left: 15px;
        display: none; /* Mobile पर header-right छिपाएं */
    }
    
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Hamburger menu fix */
    .hamburger-menu {
        margin-left: auto;
        display: flex;
    }
    
    /* Services Hero Section */
    .services-hero {
        padding: 100px 0 50px;
    }
    
    .services-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .services-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .enquiry-btn.animate__fadeInUp {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Services Grid Section */
    .services-grid-section {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .services-intro {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
        min-height: 280px;
        border-radius: 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service-features-list {
        margin: 10px 0 15px;
    }
    
    .service-features-list li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .service-features-list li i {
        font-size: 12px;
        margin-right: 8px;
    }
    
    .service-btn {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 180px;
    }
    
    /* Service Detail Modal */
    .service-detail-modal {
        padding: 10px;
    }
    
    .service-detail-content {
        max-height: 85vh;
        border-radius: 15px;
    }
    
    .service-detail-image {
        height: 180px;
    }
    
    .service-detail-body {
        padding: 25px 15px;
        margin-top: -40px;
    }
    
    .service-detail-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .service-detail-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }
    
    .service-feature-item {
        gap: 12px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
    
    /* Fleet Section */
    .fleet-section {
        padding: 50px 0;
    }
    
    .fleet-category {
        margin-bottom: 40px;
    }
    
    .category-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fleet-card {
        border-radius: 12px;
    }
    
    .fleet-img {
        height: 160px;
    }
    
    .fleet-info {
        padding: 20px;
    }
    
    .fleet-name {
        font-size: 18px;
    }
    
    .fleet-type {
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Footer for 480px */
    .footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* WhatsApp Button */
    .whatsapp-container {
        left: 10px;
        bottom: 10px;
    }
    
    .whatsapp-scroll {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        left: 55px;
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* Mobile Sidebar width fix */
    .mobile-sidebar {
        width: 85%;
        max-width: 280px;
    }
    
    .sidebar-header {
        padding: 20px 15px;
    }
    
    .sidebar-logo {
        height: 35px;
    }
    
    .sidebar-links a {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .sidebar-footer {
        padding: 20px 15px;
    }
    
    .sidebar-footer .enquiry-btn {
        font-size: 14px;
        padding: 10px;
    }
    
    .sidebar-social h4 {
        font-size: 14px;
    }
    
    .sidebar-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* 768px से कम width के लिए hamburger menu show करें */
@media (max-width: 768px) {
    .desktop-nav .nav-links {
        display: none;
    }
    
    .desktop-nav .header-right {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }
    
    /* Header container fix */
    .header-container {
        justify-content: space-between;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile view में sidebar overlay fix */
@media (max-width: 480px) {
    .sidebar-overlay.active {
        backdrop-filter: blur(2px);
    }
    
    .service-detail-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Bootstrap grid fix for mobile */
@media (max-width: 576px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col-6, .col-12, .col-sm-4, .col-md-6, .col-lg-4, .col-lg-5, .col-lg-7, .col-md-4, .col-md-8 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Footer columns fix */
    .footer .row > [class*="col-"] {
        margin-bottom: 25px;
    }
}

/* Mobile Sidebar for very small screens */
@media (max-width: 360px) {
    .mobile-sidebar {
        width: 95%;
        max-width: 260px;
    }
    
    .sidebar-header {
        padding: 18px 12px;
    }
    
    .sidebar-logo {
        height: 30px;
    }
    
    .sidebar-links a {
        padding: 10px 12px;
        font-size: 15px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Services grid adjustment for small tablets */
@media (max-width: 992px) and (min-width: 577px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Prevent horizontal scrolling */
@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        overflow-x: hidden;
        padding: 0 15px;
    }
    
    .services-grid {
        width: 100%;
    }
}

/* Fix for services intro text */
@media (max-width: 480px) {
    .services-intro {
        text-align: left;
        padding: 0;
        font-size: 14px;
        line-height: 1.6;
        margin-top: 15px;
    }
}

/* Fix for fleet images on mobile */
@media (max-width: 480px) {
    .fleet-img {
        object-fit: cover;
        height: 180px;
    }
}

/* Fix for modal on small screens */
@media (max-width: 480px) {
    .service-detail-modal {
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .service-detail-content {
        max-height: 80vh;
    }
}

/* Adjust service features list for mobile */
@media (max-width: 480px) {
    .service-features-list li {
        align-items: flex-start;
        line-height: 1.4;
    }
    
    .service-features-list li i {
        margin-top: 2px;
    }
}









































































































}


























.footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-top: 80px;
}

.footer-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: rgba(75, 106, 164, 0.65);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 15px;
}

.footer p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00bfff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.link-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-contact a {
    display: block;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 8px;
    color: #00bfff;
}

.footer-copyright {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 0;
    margin-top: 50px;
    font-size: 14px;
}

.footer-copyright a {
    color: #00bfff;
    text-decoration: none;
}

@media (min-width: 992px) {
    .footer-copyright .footer-links {
        text-align: right;
    }
}

@media (max-width: 991px) {

    .footer {
        padding-top: 50px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-copyright .row {
        text-align: center;
    }

    .footer-copyright .footer-links {
        margin-top: 10px;
    }
}
.footer-copyright p {
    margin: 0;
    white-space: nowrap;   
}

.footer-copyright .row {
    align-items: center;
}

.footer-copyright .col-lg-6 {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-copyright p {
        white-space: normal;
        text-align: center;
    }
}
.footer a {
    color: #ddd;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #00bfff;  
}

.social-icons a {
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #00bfff;
    transform: translateY(-3px) scale(1.15);
    text-shadow: 0 0 10px rgba(0,191,255,0.9),
                 0 0 20px rgba(0,191,255,0.7);
}
.footer-contact i {
    transition: all 0.3s ease;
}

.footer-contact a:hover i {
   color: #00bfff; 
}

