/* CSS Variables for Color Palette */
        :root {
            --primary-blue: #003366; /* Dark blue from header/footer/sections */
            --accent-blue: #0056b3; /* Lighter blue for buttons/highlights */
            --light-blue: #e6f0ff; /* Very light blue for subtle backgrounds */
            --text-dark: #333333;
            --text-light: #f4f4f4;
            --white: #ffffff;
            --gray-bg: #f8f9fa; /* Off-white for section backgrounds */
            --border-color: #dddddd;
            
            /* Typography */
            --font-family: sans-serif;
            --font-title: "Michroma", sans-serif;
            --transition-speed: 0.3s;
        }

        /* Global Reset and Typography */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
            letter-spacing: 2px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            font-family: var(--font-title);
            -webkit-text-stroke: 1px;
            /* letter-spacing: 2px; */
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-speed);
        }
        /* .cta-two{
            display: flex;
            flex-direction: row;
            align-items: center;

        } */
        .cta-box-two a svg{
            /* color: #001a33;
            fill: red!important; */
            stroke: #001a33!important;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-padding {
            padding: 5rem 0; /* Increased padding to make it less cluttered */
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .text-primary { color: var(--primary-blue); }
        .text-accent { color: var(--accent-blue); }
        .bg-primary { background-color: var(--primary-blue); color: var(--white); }
        .bg-gray { background-color: var(--gray-bg); }
        .flex { display: flex; }
        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .grid { display: grid; }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-speed);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #004494; /* Darker accent */
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }

        .section-title {
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 1px;
            color: var(--accent-blue);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .section-heading {
            font-size: 2.25rem;
            color: var(--primary-blue);
            margin-bottom: 3rem;
        }

        /* Header / Navigation */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* .logo svg {
            width: 40px;
            height: 40px;
            fill: var(--primary-blue);
        } */
        .logo img{
            height: 50px;
        }

        /* .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: flex;
            flex-direction: column;
            line-height: 1;
        }
        .logo-text span.sub {
            font-size: 0.7rem;
            letter-spacing: 2px;
            color: var(--text-dark);
            font-weight: 400;
        } */

        nav ul {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            position: relative;
        }

        nav a:hover, nav a.active {
            color: var(--accent-blue);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent-blue);
        }

        .header-contact {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .header-contact .phone {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .header-contact .support {
            font-size: 0.7rem;
            opacity: 0.8;
            display: block;
            line-height: 1;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-blue);
        }

        @media (max-width: 992px) {
            nav ul {
                display: none; /* Hide on mobile initially */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            .header-contact {
                display: none; /* Hide contact button on small screens */
            }
            .mobile-menu-btn {
                display: block;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 6rem 0; /* Increased padding */
            overflow: hidden;
        }

        /* Placeholder for the truck background image */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 60%;
            /* background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
            background-image: url(img/truck-dispatch-3.webp);
            background-size: cover;
            background-position: center left;
            opacity: 0.8;
            mask-image: linear-gradient(to right, transparent, black 40%);
            -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
            z-index: 1;
            font-size: 1.3rem;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            /* text-shadow: 0 0 0 #ff0000; */
            /* -webkit-text-stroke: 4px red; */
        }

        .hero-title .highlight {
            color: #4da6ff; /* Lighter blue highlight */
        }

        .hero-text {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
        }

        .hero-feature {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .hero-feature svg {
            width: 30px;
            height: 30px;
            fill: none;
            stroke: var(--accent-blue);
            stroke-width: 2;
            flex-shrink: 0;
        }

        .hero-feature h4 {
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }
        .hero-feature p {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        @media (max-width: 992px) {
            .hero::before {
                width: 100%;
                mask-image: linear-gradient(to bottom, transparent, black 80%);
                -webkit-mask-image: linear-gradient(to bottom, transparent, black 80%);
                opacity: 0.3;
            }
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            .hero-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }
            .hero-features {
                grid-template-columns: 1fr;
                text-align: left;
            }
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem; /* Increased gap */
        }
         @media (max-width: 520px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
         }

        .service-card {
            background-color: var(--white);
            padding: 2.5rem 1.5rem; /* Increased padding */
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Softer shadow */
            transition: transform var(--transition-speed);
            border: 1px solid var(--border-color);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem auto;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 30px;
            height: 30px;
            /* fill: none; */
            /* stroke: var(--primary-blue); */
            /* stroke-width: 2; */
        }

        .service-card h3 {
            font-size: 1.25rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #666;
        }

        /* How It Works Section */
        .how-it-works {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .how-it-works .section-heading, .how-it-works .section-title {
            color: var(--white);
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 4rem; /* More space above */
            padding-bottom: 2rem;
        }

        /* Connecting Line */
        .timeline::before {
            content: '';
            position: absolute;
            top: 25px; /* Adjust based on circle size */
            left: 10%;
            right: 10%;
            height: 2px;
            background-color: rgba(255,255,255,0.2);
            border-top: 2px dashed rgba(255,255,255,0.5); /* Dashed line effect */
            z-index: 1;
        }

        .timeline-step {
            position: relative;
            z-index: 2;
            text-align: center;
            flex: 1;
            padding: 0 1rem;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--accent-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 auto 1.5rem auto;
            border: 4px solid var(--primary-blue); /* To cover the line */
        }

        .step-icon {
            margin-bottom: 1rem;
        }
        
        .step-icon svg {
            width: 40px;
            height: 40px;
            /* stroke: var(--white);
            fill: none;
            stroke-width: 1.5; */
        }

        .timeline-step h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .timeline-step p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .timeline {
                flex-direction: column;
                gap: 3rem;
            }
            .timeline::before {
                display: none; /* Hide horizontal line on mobile */
            }
        }

        /* Why Choose Us Section */
        .why-choose-us {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .benefit-icon {
            width: 30px;
            height: 30px;
            background-color: var(--light-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .benefit-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--accent-blue);
            stroke-width: 3;
            fill: none;
        }

        .benefit-content h4 {
            font-size: 1.1rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .benefit-content p {
            color: #666;
            font-size: 0.95rem;
        }

        .why-images {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .image-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Call to Action Box within Why Choose Us */
        .cta-box {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 3rem 2rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 1rem;
        }

        .cta-box svg {
            width: 50px;
            height: 50px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
            /* margin-bottom: 1rem; */
        }

        .cta-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .cta-box p {
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        @media (max-width: 992px) {
            .why-choose-us {
                grid-template-columns: 1fr;
            }
        }

        /* Equipment Section */
        .equipment-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
            /* background: red; */
        }

        .equipment-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
            /* min-height: 120px;
            width: 120px;
            height: 120px; */
            /* background: green; */
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .equipment-img-wrapper {
            background-color: var(--white);
            border-radius: 8px;
            /* padding: 1rem; */
            margin-bottom: 1rem;
            /* border: 1px solid var(--border-color); */
            transition: transform 0.3s;
            width: 120px;
            height: 120px;

        }
        
        .equipment-item:hover .equipment-img-wrapper {
            transform: scale(1.05);
            border-color: var(--accent-blue);
        }

        .equipment-img-wrapper img {
            margin: 0 auto;
            /* max-height: 80px; */
            object-fit: contain;
        }

        .equipment-item h4 {
            font-size: 1rem;
            color: var(--text-dark);
            text-transform: uppercase;
        }

        /* Testimonials and Stats Section */
        .testimonials-stats-section {
            background-color: var(--gray-bg);
        }

        .testimonials-stats-container {
            /* display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 4rem; */
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .quote-icon {
            color: var(--accent-blue);
            font-size: 2rem;
            line-height: 1;
            margin-bottom: 1rem;
            font-family: serif;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary-blue);
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 0.5rem;
        }

        .stars {
            color: #FFD700; /* Gold */
            font-size: 1.2rem;
        }

        /* Stats */
        .stats-panel {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 3rem 2rem;
            border-radius: 8px;
        }
        
        .stats-panel h3 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 1rem;
        }

        .stats-grid {
            /* display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem; */
            display: flex;
            flex-direction: row;
            gap: 2rem;
            justify-content: space-evenly;
            /* background: red; */
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            /* background: green; */
            min-width: 200px;
        }

        .stat-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--white);
            fill: none;
            stroke-width: 1.5;
            opacity: 0.8;
        }

        .stat-content h4 {
            font-size: 1.8rem;
            margin-bottom: 0;
            line-height: 1;
        }

        .stat-content p {
            font-size: 0.85rem;
            opacity: 0.8;
            margin: 0;
        }

        @media (max-width: 1100px) {
            .testimonials-stats-container {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        /* Footer */
        footer {
            background-color: #001a33; /* Very dark blue */
            color: var(--white);
            padding: 4rem 0 2rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 2fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-logo .logo-text {
            color: var(--white);
        }
        .footer-logo svg {
            fill: var(--white);
        }
        
        .footer-logo p {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: 1rem;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--accent-blue);
            border-color: var(--accent-blue);
        }

        .social-icon svg {
            width: 16px;
            height: 16px;
            fill: var(--white);
        }

        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul a {
            font-size: 0.9rem;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .footer-col ul a:hover {
            opacity: 1;
            color: var(--accent-blue);
        }
        
        .contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 1rem;
        }
        .contact-list svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: var(--accent-blue);
            stroke-width: 2;
        }

        /* Callback Form */
        .callback-form {
            background-color: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
        }
        
        .callback-form p {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-bottom: 1rem;
        }

        .callback-form input {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 10px;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
            border-radius: 4px;
        }
        
        .callback-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .callback-form .btn-primary {
            width: 100%;
            padding: 0.75rem;
            font-size: 0.9rem;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        
        .footer-bottom-links a {
            margin-left: 15px;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-logo, .callback-form {
                grid-column: span 2;
            }
        }
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-logo, .callback-form {
                grid-column: span 1;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
main {
            flex-grow: 1; /* Pushes footer to bottom */
            padding: 4rem 0;
        }

        .form-section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .form-section-header h1 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .form-section-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .form-container {
            background-color: var(--white);
            max-width: 700px;
            margin: 0 auto;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08); /* Subtle shadow using primary blue */
            border-top: 5px solid var(--accent-blue);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            font-family: var(--font-family);
            transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
            background-color: #fafafa;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
            background-color: var(--white);
        }

        select.form-control {
            cursor: pointer;
            appearance: none; /* Custom arrow */
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23003366%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem top 50%;
            background-size: 0.65rem auto;
        }

        .submit-btn-wrapper {
            margin-top: 2.5rem;
            text-align: center;
        }

        .submit-btn-wrapper .btn {
            width: 100%;
            padding: 1.25rem;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .form-container {
                padding: 2rem 1.5rem;
            }
        }