/* ==========================================================================
           Base Styles & Variables (SCROLLBAR FIX APPLIED HERE)
           ========================================================================== */
        :root {
            --primary-red: #d9232d;
            --primary-red-hover: #b81d26;
            --text-dark: #222;
            --text-light: #666;
            --bg-light: #f9f9f9;
            --white: #fff;
            --border: #eaeaea;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* STRICT OVERFLOW CONTROL to kill horizontal scrollbars */
        html, body {
            max-width: 100vw;
            width: 100%;
            overflow-x: hidden;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }

        /* Image safeguard */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a { text-decoration: none; }
        ul { list-style: none; }
        .text-red { color: var(--primary-red); }
        .text-center { text-align: center; }
        
        /* Layout Utilities */
        .section-padding { padding: 80px 6%; }
        .subheading {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 15px;
        }

        /* ==========================================================================
           Navigation
           ========================================================================== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 6%;
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo h2 { font-size: 1.5rem; font-weight: 800; color: #111; }
        .logo span { color: var(--primary-red); }
        
        /* --- Logo Image Styling --- */
        .logo {
            display: flex;
            align-items: center; /* Ensures the logo stays vertically centered in the navbar */
        }

        .logo img {
            height: 45px; /* Adjust this value to make your logo bigger/smaller on desktop */
            width: auto;  /* Maintains the original aspect ratio */
            display: block; /* Removes tiny extra space below the image */
            transition: all 0.3s ease; /* Smooth scaling when resizing window */
        }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .logo img {
                height: 48px; /* Scales the logo down slightly for smaller screens */
            }
        }
        .nav-links { display: flex; gap: 35px; align-items: center; }
        .nav-links li { position: relative; }
        .nav-links a { color: var(--text-dark); font-weight: 500; transition: 0.4s; }
        .nav-links a.active, .nav-links a:hover { color: var(--primary-red); }

        .menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .btn-primary {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background-color: var(--primary-red-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(217, 35, 45, 0.3);
        }

        /* ==========================================================================
           Fullscreen Hero Section
           ========================================================================== */
        .hero-fullscreen {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 0 6%;
            background: url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: var(--white);
            overflow: hidden; /* Contains internal animations */
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(to right, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.4) 60%, transparent 100%);
            z-index: 1;
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 650px;
            padding-top: 50px;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: #e0e0e0;
            margin-bottom: 25px;
            backdrop-filter: blur(5px);
        }
        .badge-dot {
            width: 6px; height: 6px;
            background-color: var(--primary-red);
            border-radius: 50%;
            margin-right: 8px;
        }

        .hero-fullscreen h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
        }
        .hero-fullscreen h1 span { color: var(--primary-red); }
        .hero-fullscreen p {
            color: #d1d1d1;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .hero-action-btns {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }
        .btn-pill-red {
            background-color: var(--primary-red); color: var(--white);
            padding: 6px 6px 6px 24px; border-radius: 50px;
            font-weight: 500; font-size: 0.95rem;
            display: inline-flex; align-items: center; gap: 15px;
            transition: 0.4s ease;
        }
        .btn-pill-red:hover { background-color: var(--primary-red-hover); transform: translateY(-2px); }
        .icon-circle-white {
            background-color: var(--white); color: var(--text-dark);
            width: 36px; height: 36px; border-radius: 50%;
            display: flex; justify-content: center; align-items: center; font-size: 0.9rem;
        }

        .btn-pill-white {
            background-color: var(--white); color: var(--text-dark);
            padding: 6px 6px 6px 24px; border-radius: 50px;
            font-weight: 500; font-size: 0.95rem;
            display: inline-flex; align-items: center; gap: 15px;
            transition: 0.4s ease;
        }
        .btn-pill-white:hover { background-color: #f0f0f0; transform: translateY(-2px); }
        .icon-circle-black {
            background-color: #000; color: var(--white);
            width: 36px; height: 36px; border-radius: 50%;
            display: flex; justify-content: center; align-items: center; font-size: 0.9rem;
        }

        .hero-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 450px;
            margin-bottom: 30px;
        }
        .hero-stats { display: flex; gap: 60px; }
        .stat h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 2px; }
        .stat p { font-size: 0.85rem; color: #b0b0b0; margin: 0; text-transform: capitalize; }

        .load-fade-up {
            animation: fadeUpOnLoad 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            transform: translateY(50px);
        }
        @keyframes fadeUpOnLoad { to { opacity: 1; transform: translateY(0); } }

        /* ==========================================================================
           Features & About Sections
           ========================================================================== */
        .features-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
            background: var(--bg-light);
        }
        .feature-card {
            padding: 40px 30px; background: var(--white); border: 1px solid var(--border);
            border-radius: 12px; transition: 0.4s;
        }
        .feature-card:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.05); transform: translateY(-5px); }
        .icon-wrap {
            width: 50px; height: 50px; background: rgba(217, 35, 45, 0.1);
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: var(--primary-red); margin-bottom: 20px;
        }
        .feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
        .feature-card p { color: var(--text-light); font-size: 0.95rem; }

        .about-section { text-align: center; }
        .about-section h2 { font-size: 2.8rem; max-width: 900px; margin: 0 auto; line-height: 1.3; }

        /* ==========================================================================
           Trusted Partner Section
           ========================================================================== */
        .trusted-partner { display: flex; align-items: center; gap: 60px; }
        
        .partner-image { position: relative; flex: 1; border-radius: 16px; z-index: 1; }
        .partner-image img { width: 100%; height: 550px; object-fit: cover; border-radius: 16px; }
        
        .contact-badge {
            position: absolute;
            bottom: -20px; right: 20px;
            background: var(--white); padding: 25px 30px; border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15); max-width: 340px; z-index: 10;
        }
        .contact-badge p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 10px; font-weight: 500; }
        .contact-badge h4 { font-size: 1.5rem; color: var(--primary-red); font-weight: 700; }
        
        .partner-content { flex: 1; }
        .partner-content h2 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
        .partner-content h2 span { color: var(--primary-red); }
        .partner-desc { color: var(--text-light); font-size: 1.1rem; margin-bottom: 30px; }
        
        .list-item { display: flex; gap: 20px; margin-bottom: 25px; }
        .list-item i { font-size: 1.5rem; margin-top: 5px; }
        .list-item h4 { font-size: 1.2rem; margin-bottom: 5px; }
        .list-item p { color: var(--text-light); }

        /* ==========================================================================
           Fleet Section
           ========================================================================== */
        .fleet { background: var(--bg-light); }
        .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
        .section-header h2 { font-size: 2.8rem; line-height: 1.2; }
        .section-header h2 span { color: var(--primary-red); }
        
        .btn-outline-dark {
            background-color: transparent; color: var(--text-dark);
            padding: 10px 24px; border: 1px solid #ccc; border-radius: 50px; font-weight: 500; transition: 0.4s ease; cursor: pointer;
        }
        .btn-outline-dark:hover { background-color: var(--white); }

        .fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .fleet-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .img-wrapper { width: 100%; height: 250px; overflow: hidden; }
        .img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
        .fleet-card:hover .img-wrapper img { transform: scale(1.08); }
        
        .card-content { padding: 25px; display: flex; justify-content: space-between; align-items: center; }
        .card-content h3 { font-size: 1.1rem; font-weight: 600; }
        .btn-red-sm { background: var(--primary-red); color: #fff; padding: 10px 20px; border-radius: 6px; font-weight: 500; font-size: 0.9rem; transition: 0.4s; }
        .btn-red-sm:hover { background: var(--primary-red-hover); }

        /* ==========================================================================
           How We Work & Testimonials
           ========================================================================== */
        .how-we-work { background: #111; color: var(--white); display: flex; align-items: center; gap: 60px; overflow-x: hidden; }
        .work-image { flex: 1; }
        .work-image img { width: 100%; height: 450px; object-fit: cover; border-radius: 16px; }
        .work-content { flex: 1; }
        .work-content h2 { font-size: 2.8rem; margin-bottom: 40px; }
        .step { display: flex; gap: 20px; margin-bottom: 30px; }
        .step-num { font-size: 2rem; font-weight: 700; color: var(--primary-red); line-height: 1; }
        .step-text h4 { font-size: 1.3rem; margin-bottom: 8px; }
        .step-text p { color: #aaa; }

        .testimonials { text-align: center; }
        .testimonials h2 { font-size: 2.8rem; margin-bottom: 50px; }
        .testimonials h2 span { color: var(--primary-red); }
        .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: left; }
        .test-card { padding: 40px; background: var(--bg-light); border-radius: 12px; }
        .test-card p { font-style: italic; color: var(--text-light); margin-bottom: 25px; }
        .author { display: flex; align-items: center; gap: 15px; }
        .avatar { width: 50px; height: 50px; background: #ddd; border-radius: 50%; }
        .author h4 { font-size: 1rem; }
        .author span { font-size: 0.85rem; color: var(--text-light); }

        /* ==========================================================================
           Footer & CTA
           ========================================================================== */
        .cta-banner {
            background-color: #1a1a1a; color: var(--white); text-align: center; padding: 80px 6%; position: relative; overflow: hidden;
        }
        .cta-banner::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://images.unsplash.com/photo-1503376712351-1c2ecdd9e32b?auto=format&fit=crop&w=1920&q=80') center/cover;
            opacity: 0.15; z-index: 0;
        }
        .cta-content { position: relative; z-index: 1; }
        .cta-banner h2 { font-size: 3rem; margin-bottom: 20px; }
        .cta-banner p { max-width: 600px; margin: 0 auto 35px auto; color: #ccc; }
        .cta-btns { display: flex; justify-content: center; gap: 15px; }
        .btn-white { background: var(--white); color: #111; padding: 12px 28px; border-radius: 50px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.4s; }
        .btn-white:hover { background: #eee; }

        .footer { background: #000; color: #fff; padding-top: 70px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; padding: 0 6% 50px 6%; border-bottom: 1px solid #333; }
        .footer-col h3, .footer-col h4 { margin-bottom: 25px; }
        .footer-col p { color: #aaa; max-width: 300px; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col a { color: #aaa; transition: 0.4s; }
        .footer-col a:hover { color: var(--primary-red); }
        .contact-info li { display: flex; gap: 15px; color: #aaa; }
        .footer-bottom { display: flex; justify-content: space-between; padding: 25px 6%; color: #888; font-size: 0.9rem; flex-wrap: wrap; gap: 15px;}
        .legal-links a { color: #888; margin-left: 20px; transition: 0.4s; }
        .legal-links a:hover { color: var(--white); }

        /* ==========================================================================
           JavaScript Scroll Reveal Classes
           ========================================================================== */
        .reveal-up { opacity: 0; transform: translateY(60px); transition: all 2s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal-right { opacity: 0; transform: translateX(60px); transition: all 2s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal-left { opacity: 0; transform: translateX(-60px); transition: all 2s cubic-bezier(0.2, 0.8, 0.2, 1); }
        
        .reveal-up.active, .reveal-right.active, .reveal-left.active { opacity: 1; transform: translate(0, 0); }

        /* ==========================================================================
           Responsive Design (Mobile & Tablet)
           ========================================================================== */
        @media (max-width: 1024px) {
            .hero-overlay { background: linear-gradient(to right, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%); }
            .hero-fullscreen h1 { font-size: 3.5rem; }
            .trusted-partner, .how-we-work { flex-direction: column; text-align: center; }
            .partner-image { width: 100%; margin-bottom: 30px; }
            .contact-badge { right: 50%; transform: translateX(50%); bottom: -20px; width: 90%; }
            .features-grid, .fleet-grid, .test-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .list-item, .step { text-align: left; }
        }

        @media (max-width: 768px) {
            .section-padding { padding: 60px 5%; }
            
            /* Navbar Mobile Toggle */
            .menu-btn { display: block; }
            .navbar .btn-primary { display: none; }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                transition: max-height 0.4s ease, padding 0.4s ease;
            }
            .nav-links.active {
                max-height: 300px;
                padding: 20px 0;
            }
            .nav-links li { margin: 15px 0; }

            .hero-fullscreen { text-align: center; padding-top: 100px; padding-bottom: 60px; }
            .hero-content-wrapper { margin: 0 auto; padding-top: 20px; }
            .hero-fullscreen h1 { font-size: 2.8rem; }
            .hero-fullscreen p { font-size: 1rem; margin-bottom: 30px; }
            
            .hero-action-btns { flex-direction: column; gap: 15px; align-items: center; }
            .btn-pill-red, .btn-pill-white { width: 100%; max-width: 280px; justify-content: space-between; }
            
            .hero-divider { margin: 30px auto; }
            .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
            .stat h3 { font-size: 1.5rem; }

            .about-section h2, .partner-content h2, .section-header h2, .work-content h2, .testimonials h2, .cta-banner h2 {
                font-size: 2.2rem;
            }

            .section-header { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
            .partner-image img { height: 400px; }
            
            .contact-badge { 
                position: relative; 
                bottom: 0; right: 0; transform: none; 
                width: 100%; max-width: 100%; 
                margin-top: -40px; 
            }
            
            .work-image img { height: 350px; }
            .cta-btns { flex-direction: column; gap: 15px; }
            .cta-btns button { width: 100%; justify-content: center; }
            .footer-bottom { justify-content: center; flex-direction: column-reverse; text-align: center; }
            .legal-links { margin-bottom: 15px; }
            .legal-links a { margin: 0 10px; }
        }
    


        /* MODAL BACKGROUND */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;

  z-index: 99999;
}

/* SHOW MODAL */
.modal.show {
  opacity: 1;
  visibility: visible;
}

/* FORM BOX */
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 400px;
  max-width: 95%;
  transform: translateY(30px);
  transition: 0.3s;
}

.modal.show .modal-content {
  transform: translateY(0);
}

/* CLOSE BUTTON */
.close-btn {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

/* FORM */
.form-group {
  margin-bottom: 12px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* ROW */
.form-row {
  display: flex;
  gap: 10px;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .modal {
    align-items: flex-end;
  }

  .modal-content {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }

  .form-row {
    flex-direction: column;
  }
}




/* --- Base Reset for the Form Context --- */
* {
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- Modal Background (Glassmorphism effect) --- */
.modal {
  display: flex; /* Centers the modal content */
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px); /* Soft blur for modern look */
  z-index: 1000;
  padding: 20px;
}

/* --- Modal Container --- */
.modal-content {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: modalPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Smooth pop-in animation */
@keyframes modalPopIn {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Close Button --- */
.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.close-btn:hover {
  color: #333;
}

/* --- Typography --- */
.modal-content h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  color: #222;
  text-align: center;
  font-weight: 600;
}

/* --- Form Fields --- */
.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.form-row input {
  flex: 1; /* Makes side-by-side inputs take equal space */
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

/* Modern focus state */
input:focus {
  outline: none;
  border-color: #25D366; /* WhatsApp Green to match the button */
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

input::placeholder {
  color: #a0a0a0;
}

/* Fix for date input placeholder appearance on some browsers */
input[type="date"] {
  color: #666;
}
input[type="date"]:valid {
  color: #333;
}

/* --- Call to Action Button --- */
.submit-btn {
  width: 100%;
  background-color: #25D366; /* Official WhatsApp Green */
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.submit-btn:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* Update the flex behavior for the columns instead of the raw inputs */
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.form-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px; /* Space between label and input */
}

/* Style the labels to look modern and subtle */
.form-col label {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  padding-left: 4px;
}

.form-group select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  background-color: #f5f5f5;
  color: #333;
  outline: none;
  appearance: none; /* removes default browser style */
}

/* Optional: add icon spacing like input */
.form-group select {
  padding-left: 16px;
}

.form-group input,
.form-group select {
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  position: relative;
}

.form-group select {
  height: 45px;
}

