: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;
             flex: 1;
        }

        .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: var(--primary-color);
            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 */
        .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-color: rgba(0, 0, 0, 0.5);
            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;
        }

        /* Hero Section */
        .hero-section {
            padding: 120px 0 80px;   
    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;
        }

        .hero-section::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;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 20px;
            color: white;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 18px;
            color: white;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .section-main-title {
            font-size: 42px;
            font-weight: 500;
            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;
        }

        .alternating-cards-section {
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.03) 0%, rgba(45, 77, 140, 0.03) 100%);
        }

        .alt-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            margin-bottom: 80px;
            display: flex;
            flex-wrap: wrap;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
             align-items: stretch;
        }

        .alt-card.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .alt-card:hover {
            box-shadow: var(--shadow-heavy);
            transform: translateY(-5px);
        }

        .alt-card-image {
            flex: 0 0 50%;
            max-width: 50%;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }

        .alt-card-image img {
            width: 100%;
            height: 100%;
             object-fit: cover; 
            transition: transform 0.8s ease;
            
        }

        .alt-card:hover .alt-card-image img {
            transform: scale(1.05);
        }

        .alt-card-content {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .alt-card.reverse .alt-card-image {
            order: 2;
        }

        .alt-card.reverse .alt-card-content {
            order: 1;
        }

        .card-title {
            font-size: 36px;
            font-weight: 500;
            margin-bottom: 25px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }

        .card-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .card-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .card-text:last-child {
            margin-bottom: 0;
        }

        /* CEO Section */
        .ceo-section {
            background-color: white;
        }

        .ceo-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            display: flex;
            flex-wrap: wrap;
            transition: var(--transition);
        }

        .ceo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .ceo-image {
            flex: 0 0 40%;
            max-width: 40%;
            position: relative;
            overflow: hidden;
        }

        .ceo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .ceo-card:hover .ceo-image img {
            transform: scale(1.05);
        }

        .ceo-content {
            flex: 0 0 60%;
            max-width: 60%;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ceo-role {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: block;
        }

        .ceo-name {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--primary-color);
        }

        .ceo-bio {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .ceo-bio:last-child {
            margin-bottom: 0;
        }

        /* Partners Section */
        .partners-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #0f203c 100%);
            color: white;
            border: radius 4px;
            border-color:white;
        }

        .partners-section .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .partners-section .section-main-title {
            color: white;
        }

        .partners-section .section-main-title::after {
            background: white;
        }

        .partners-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 30px 0;
        }

        .partners-track {
            display: flex;
            width: max-content;
            animation: slideLogos 40s linear infinite;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

        .partner-box {
            flex: 0 0 auto;
            width: 200px;
            margin: 0 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }

        .partner-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .partner-name {
            color: white;
            font-size: 18px;
            font-weight: 500;
            text-align: center;
        }

        @keyframes slideLogos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* 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: 500;
            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;
        }

       
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .fleet-slide-text {
                padding: 40px;
            }
            
            .alt-card-content {
                padding: 40px;
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hamburger-menu {
                display: flex;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .section-main-title {
                font-size: 36px;
            }
            
            .fleet-slide-content {
                flex-direction: column;
            }
            
            .fleet-slide-image,
            .fleet-slide-text {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .fleet-slide-text {
                padding: 40px;
            }
            
            .fleet-slider-container {
                height: auto;
                min-height: 600px;
            }
            
            .alt-card-image,
            .alt-card-content {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .alt-card-image {
                height: 300px;
            }
            
            .ceo-image,
            .ceo-content {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .ceo-image {
                height: 400px;
            }
            
            .ceo-content {
                padding: 40px 30px;
            }
            
            .cta-title {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .section-spacing {
                padding: 80px 0;
            }
            
            .section-main-title {
                font-size: 32px;
            }
            
            .slide-title {
                font-size: 28px;
            }
            
            .card-title {
                font-size: 28px;
            }
            
            .ceo-name {
                font-size: 28px;
            }
            
          
        .ceo-image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* desktop ke liye */
}

/* Mobile view */
@media (max-width: 768px) {
    .ceo-image {
        max-width: 220px;   /* image thodi choti */
        margin: 0 auto 15px; /* center align */
    }

    .ceo-image img {
        width: 100%;
        height: auto;
        object-fit: contain; /* poori image dikhegi */
    }
}

        @media (max-width: 576px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .section-main-title {
                font-size: 28px;
            }
            
            .fleet-slide-text {
                padding: 30px 20px;
            }
            
            .slide-title {
                font-size: 24px;
            }
            
            .slide-description {
                font-size: 16px;
            }
            
            .alt-card-content {
                padding: 30px 20px;
            }
            
            .card-title {
                font-size: 24px;
            }
            
            .card-text {
                font-size: 16px;
            }
            
            .ceo-content {
                padding: 30px 20px;
            }
            
            .ceo-name {
                font-size: 24px;
            }
            
            .ceo-bio {
                font-size: 16px;
            }
            
            .cta-title {
                font-size: 28px;
            }
        }

       .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);
            }
        }
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            min-height: 200vh; 
            background: linear-gradient(to bottom, #f0f0f0, #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;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-right {
        gap: 8px;
        margin-left: 15px;
        display: none; 
    }
    
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .hamburger-menu {
        margin-left: auto;
        display: flex;
    }
    
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .enquiry-btn.animate__fadeInUp {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .fleet-slider-section {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .fleet-slider-container {
        height: auto;
        min-height: 400px;
        margin-bottom: 40px;
    }
    
    .fleet-slide-text {
        padding: 20px 15px;
    }
    
    .slide-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .slider-controls {
        gap: 10px;
        margin-top: 20px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .alternating-cards-section {
        padding: 50px 0;
    }
    
    .alt-card {
        margin-bottom: 40px;
        border-radius: 15px;
    }
    
    .alt-card-image {
        height: 200px;
    }
    
    .alt-card-content {
        padding: 25px 15px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .card-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .ceo-section {
        padding: 50px 0;
    }
    
    .ceo-card {
        border-radius: 15px;
    }
    
    .ceo-image {
        height: 250px;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ceo-content {
        padding: 25px 15px;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ceo-role {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .ceo-name {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .ceo-bio {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-section .section-main-title {
        font-size: 22px;
    }
    
    .partner-box {
        width: 150px;
        margin: 0 15px;
        padding: 20px;
    }
    
    .partner-name {
        font-size: 14px;
    }
    
    .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;
    }
    
    
    .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: 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;
    }
}

@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 {
        justify-content: space-between;
    }
    
    .logo {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .sidebar-overlay.active {
        backdrop-filter: blur(2px);
    }
}

@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;
    }
    
    
}

@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;
    }
}


}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        overflow-x: hidden;
    }
}



.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(153, 183, 239, 0.65);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 15px;
}

.footer p {
    color: rgb(239, 241, 245);
    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;  /* simple blue */
}

.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; 
}
.whatsapp-container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    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);
}

.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: 'Lexend', 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);
    }
}

@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;
    }
}

@media (max-width: 480px) {
    .whatsapp-container {
        left: 10px;
        bottom: 10px;
    }
    
    .whatsapp-scroll {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        left: 50px;
        font-size: 11px;
        padding: 5px 10px;
    }
}.whatsapp-container {
    position: fixed !important;
    left: 20px !important;    
    bottom: 20px !important; 
    right: auto !important;   
}


.footer-copyright a :hover {
  color: #4DA3FF;
  text-decoration: none;
  font-weight: 600;
}

/* --- General Section Styles --- */
.section-spacing {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
}

.section-main-title {
    font-size: 36px;
    color: #333;
}

/* --- Fleet Slider Layout --- */
.fleet-slider-container {
    height: auto;
    min-height: 600px;
    margin-bottom: 40px;
}

.fleet-slide-content {
    display: flex; /* Implied by flex-direction in media queries */
}

.fleet-slide-image,
.fleet-slide-text {
    flex: 0 0 50%; /* Implied desktop state */
}

.fleet-slide-text {
    padding: 40px;
}

.slide-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

/* --- Slider Controls & Dots --- */
.slider-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.slider-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    /* transition and background-color styles usually go here */
}

.slider-dot.active {
    /* active state color */
}

/* --- Responsive Media Queries --- */

/* Tablet / Small Desktop (1200px) */
@media (max-width: 1200px) {
    .fleet-slide-text {
        padding: 40px;
    }
}

/* Mobile Landscape / Tablet (992px) */
@media (max-width: 992px) {
    .section-main-title {
        font-size: 36px;
    }

    .fleet-slide-content {
        flex-direction: column;
    }

    .fleet-slide-image,
    .fleet-slide-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .fleet-slide-text {
        padding: 40px;
    }

    .fleet-slider-container {
        height: auto;
        min-height: 600px;
    }
}

/* Mobile Portrait (768px) */
@media (max-width: 768px) {
    .section-spacing {
        padding: 80px 0;
    }

    .section-main-title {
        font-size: 32px;
    }

    .slide-title {
        font-size: 28px;
    }
}

/* Small Mobile (576px) */
@media (max-width: 576px) {
    .section-main-title {
        font-size: 28px;
    }

    .fleet-slide-text {
        padding: 30px 20px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-description {
        font-size: 16px;
    }
}

/* Tiny Mobile (480px) */
@media (max-width: 480px) {
    .fleet-slider-section {
        padding: 50px 0;
    }

    .section-main-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .fleet-slider-container {
        height: auto;
        min-height: 400px;
        margin-bottom: 40px;
    }

    .fleet-slide-text {
        padding: 20px 15px;
    }

    .slide-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .slider-controls {
        gap: 10px;
        margin-top: 20px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}