/* --- Root Variables & Reset --- */
:root {
    --primary-blue: #0066B2;
    --light-blue: #49C5F1;
    --purple: #7B2E8E;
    --green-success: #4CAF50;
    --dark: #1a1a1a;
    --font-family: 'Quicksand', sans-serif;
      --dark-bg: #0a0a0a;
    --input-bg: #1a1a1a;
    --text-gray: #aaa;
    --white: #ffffff;
    --bc-blue: #f0f5f9;


}


html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    font-family: var(--font-family);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}





/* --- Hero Section --- */
.container {
    padding: 0 20px 20px 20px;
        margin-top: 120px;

}
.hero-card {
    height: 90vh;
    border-radius: 100px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url('he1.jpg') center/cover;
    
    display: flex;
    /* Aligns content to the TOP */
    align-items: flex-start; 
    /* Keeps content centered HORIZONTALLY */
    justify-content: center; 
    
    /* Padding prevents the text from hitting the very top edge */
    padding-top: 120px; 
    text-align: center;
}

.overlay {
    text-align: center;
    color: white;
    max-width: 850px;
}

.welcome-text {
    color: var(--green-success);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20PX;
 }

.hero-title {
    font-size: clamp(35px, 6vw, 70px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}




/* --- MOBILE MODE (Max 1024px) --- */
.mobile-actions { display: none; }
/* --- Hero Buttons --- */
.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-main {
    font-family: var(--font-family);
    background: var(--green-success);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.btn-main:hover {
    background: #43a047;
    transform: translateY(-2px);
}

 /* --- Shared Button Styles --- */
.btn-nav, .btn-sub {
    font-family: var(--font-family);
    background: var(--primary-blue); /* You can change this to a different color for 'sub' if needed */
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex; /* Changed to inline-flex so buttons sit nicely in rows */
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
    font-size: 17px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Specific color for Learn More if you want it different */
.btn-sub {
    background: #333; /* For example, a dark grey */
}

/* --- Shared Icon & Hover Logic --- */

.icon-circle {
    background-color: #ffffff; 
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.arrow-img {
    width: 20px;
    height: auto;
    display: block;
    transition: transform 0.3s ease; width: 16px;
 }

/* Hover effects for both buttons */
.btn-nav:hover .arrow-img, 
.btn-sub:hover .arrow-img {
    transform: rotate(420deg);
    filter: brightness(0) invert(1);
}

.btn-nav:hover .icon-circle, 
.btn-sub:hover .icon-circle {
    transform: scale(1.05);
    background-color: var(--green-success); 
}
 


/* --- Scroll Down Animation --- */
.scroll-indicator {
    margin-top: 40px; /* Space below the buttons */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--green-success); /* Matching your brand color */
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll-move 1.6s infinite ease-in-out;
}

.scroll-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Animation Logic */
@keyframes scroll-move {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}
/* Container for the search icon */
.search-circle {
    background-color: #f4f4f4; /* Light grey background */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* The PNG Image styling */
.search-png {
    width: 20px; /* Adjust size as needed */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.search-item a:hover .search-circle {
    background-color: var(--green-success); /* Turns green on hover */
    transform: scale(1.05);
}

.search-item a:hover .search-png {
    transform: rotate(15deg); /* Slight tilt on hover */
    /* If your PNG is black/dark, this makes it white on hover */
    filter: brightness(0) invert(1); 
}






@media (max-width: 1024px) {
 .container {
    padding: 0 0px 0px 0px;
}
    .hero-card {
        height: 85vh; /* Set to full screen height */
        border-radius:    50px; /* Removing radius looks better on full-height mobile screens */
        padding-top: 90px; /* Space for the navbar */
        background-attachment: scroll; /* Better performance on mobile */
        
        /* Ensure the image is fully visible and centered */
        background-position: center center;
        background-size: cover; 
    }

    /* Hide the long description on mobile to reduce text */
    .hero-desc {
      font-size: 15px; /* Slightly smaller for mobile screens */
      margin-bottom: 8px;
      margin-top: -20px;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 38px; /* Slightly smaller for mobile screens */
        margin-bottom: 30px;
        padding: 0 10px;
    }

  
   /* --- Smaller Scroll Down Animation --- */
.scroll-indicator {
    margin-top: 25px; /* Enough space to keep it away from buttons */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.7; /* Slightly more transparent for a modern look */
}

.mouse {
    width: 22px;      /* Reduced from 26px */
    height: 36px;     /* Reduced from 42px */
    border: 1.5px solid white; /* Thinner border */
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 3px;       /* Reduced from 4px */
    height: 6px;      /* Reduced from 8px */
    background: var(--green-success);
    border-radius: 2px;
    margin-top: 5px;
    animation: scroll-move 1.6s infinite ease-in-out;
}

/* Ensure the animation distance matches the new smaller height */
@keyframes scroll-move {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateY(10px); /* Reduced travel distance */
        opacity: 0;
    }
}

}
.btn-main,
.btn-sub {
    text-decoration: none !important;
}

@media (max-width: 1024px) {
    .cta-group {
        display: flex;
        /* Change from row to column to stack them */
        flex-direction: column; 
        width: 100%;
        padding: 0 10px;    
        gap: 12px;          /* Increased gap for better vertical spacing */
        align-items: center; /* Centers the buttons horizontally */
        margin-top: 20px;
    }

    .btn-main, .btn-sub {
        width: 100%;        /* Make buttons full width of the container */
        max-width: 280px;   /* Increased max-width for a better look when stacked */
        height: 54px; 
        padding: 0 10px; 
        font-size: 15px;    
        font-weight: 700;
        display: flex;      
        align-items: center;
        justify-content: center;
        white-space: nowrap; 
        border-radius: 50px;
        text-decoration: none;

    }

    .btn-sub .icon-circle {
        width: 35px;
        height: 35px;
        margin-left: 1px;  /* Adjusted margin for layout flow */
        flex-shrink: 0;     
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-sub .arrow-img {
        width: 15px;        
    }
}


 



/* about section */
/* --- About Section --- */
.about-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Image Composition --- */
.about-images {
    position: relative;
    flex: 1;
    min-height: 500px;
}

.image-wrapper {
    border-radius: 500px; /* Creates the pill/oval shape */
    overflow: hidden;
    border: 5px solid white;
 }

.main-img {
    width: 350px;
    height: 500px;
}

.overlay-img {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 300px;
    height: 300px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Icons */
.decorative-star {
    position: absolute;
    top: 20%;
    right: -20px;
    font-size: 80px;
 }

/* --- Content Styling --- */
.about-content {
    flex: 1.2;
}

.sub-heading {
    color: var(--green-success);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 25px;
}

.section-desc {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* --- Features --- */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background:var(--bc-blue); /* Light tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 30px;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.contact-btn {
    background: var(--primary-blue); /* Matching the image's orange theme */
    padding: 15px 15px 15px 35px;
    margin-top: 20px;
}

/* --- Responsive About Us --- */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .about-images {
        min-height: auto;
        margin-bottom: 50px;
    }

    .main-img {
        width: 250px;
        height: 350px;
        margin: 0 auto;
    }

    .overlay-img {
        width: 200px;
        height: 200px;
        right: 10%;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
    }
}



/* --- Services Section --- */
.services-section {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

.services-header {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

.service-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns content to left within card */
    text-align: left;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}
@media (max-width: 768px) {
    .contact-btn {
        display: block;      /* Required for margin: auto to work */
        margin-left: auto;
        margin-right: auto;
        width: fit-content;  /* Prevents the button from stretching to full width */
        text-align: center;  /* Centers the text inside the button */
     }
}
.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background:var(--bc-blue); /* Light orange tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon-wrapper img {
    width: 35px;
    height: auto;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 15px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Red Arrow Circle in Card */
.service-arrow {
    width: 40px;
    height: 40px;
    background:var(--green-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-arrow img {
    width: 15px;
    filter: brightness(0) invert(1);
}

.service-card:hover .service-arrow {
    transform: rotate(420deg);
            background: var(--primary-blue);

}

/* --- Services Footer --- */
.services-footer p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.view-all-btn {
    margin: 0 auto;
}.no-underline {
    text-decoration: none; /* Removes the underline */
    color: inherit;        /* Keeps the text color from changing to blue */
}

/* Optional: Ensure the button itself doesn't have a default underline */
.view-all-btn {
    text-decoration: none;
    border: none; /* Common for custom buttons */
    cursor: pointer;
}

/* --- Responsive Layout --- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-header h2 {
        font-size: 28px;
    }
}



 

/* --- Fleet Section --- */
.fleet-section {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
    overflow: hidden; /* Prevents shadows from clipping */
}

.fleet-header {
    margin-bottom: 50px;
}

.sub-heading {
    color: var(--green-success);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    line-height: 1.2;
    color: var(--dark);
}
.ctrl-btn:active {
    transform: scale(0.95);
}
/* --- Container (Sliding Enabled) --- */
.fleet-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    
    /* Enable Sliding for all moods */
    overflow-x: auto; 
    scroll-behavior: smooth;
    justify-content: flex-start; /* Must be start for sliding to work */
    
    /* Hide Scrollbar for clean look */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.fleet-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* --- Car Card --- */
.car-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 25px;
    padding: 10px;
    text-decoration: none; /* Removes underline */
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-shrink: 0; /* Prevents cards from squishing */
}

.car-card:hover {
     transform: translateY(-5px);
}

.car-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* Add this to ensure the image doesn't spill out of the rounded corners */
    overflow: hidden; 
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.car-image img {
    width: 100%;
    height: 100%;
    /* Changed from 'contain' to 'cover' */
    object-fit: cover; 
}
.car-badge {
    background: #f8f9fa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
}

.car-card h3 {
    margin: 15px 0;
    font-size: 22px;
    color: var(--dark);
}

.car-specs {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.spec-row i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.price strong {
    font-size: 22px;
    color: var(--dark);
}

.price span {
    font-size: 12px;
    color: #999;
}

.btn-circle-arrow {
    width: 45px;
    height: 45px;
    background: var(--green-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.car-card:hover .btn-circle-arrow {
    transform: rotate(420deg);
        background: var(--primary-blue);


}

.btn-circle-arrow img {
    width: 18px;
    filter: brightness(0) invert(1);
}

/* --- Controls --- */
.fleet-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.ctrl-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.ctrl-btn img {
    width: 30px;
    filter: brightness(0) invert(1);
}

.ctrl-btn:hover {
    background: var(--green-success);
}

/* --- RESPONSIVE MOODS --- */

/* PC MODE: Show exactly 4 cars, hide the rest until scrolled */
@media (min-width: 1025px) {
    .car-card {
        /* Formula: (100% / 4) - (Total Gap / 4) */
        flex: 0 0 calc(25% - 15px); 
    } 
}

/* TABLET MODE: Show 2.5 cars to hint at sliding */
@media (max-width: 1024px) {
    .car-card {
        flex: 0 0 calc(40% - 20px);
    }
}

/* MOBILE MODE: Show 1.2 cars */
@media (max-width: 600px) {
    .car-card {
        flex: 0 0 85%;
    }
}



/* --- Categories Section --- */
.categories-section {
    padding: 60px 5%;
    background-color: #fff;
}

.categories-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-card {
    flex: 1;
    min-width: 280px;
    height: 500px;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start; /* Keeps title and arrow aligned left */
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Dark overlay logic */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.category-title {
    position: relative;
    z-index: 2; /* Sits above overlay */
    color: #fff;
    font-size: 26px;
    font-weight: 700;
}

/* --- Fixed Arrow Button Logic --- */
.category-card .btn-circle-arrow {
    position: relative;
    z-index: 2; /* Essential to stay above the overlay */
    width: 50px;
    height: 50px;
    background: var(--green-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    margin-top: auto; /* Pushes arrow to the bottom */
}

.category-card .btn-circle-arrow img {
    width: 20px;
    height: auto;
    filter: brightness(0) invert(1); /* Makes arrow white */
    transition: transform 0.4s ease;
}

/* --- Hover States --- */
.category-card:hover {
    transform: translateY(-10px); /* Lift instead of massive scale */
}

/* Target the arrow when the CARD is hovered */
.category-card:hover .btn-circle-arrow {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.category-card:hover .btn-circle-arrow img {
    transform: rotate(420deg); /* Optional: dynamic arrow tilt */
}

/* Individual Arrow Hover */
.category-card .btn-circle-arrow:hover {
    transform: rotate(360deg) scale(1.1); /* Fun spin effect */
    background: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .category-card {
        flex: 0 0 100%;
        height: 400px;
    }
}





.process-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Accordion Styling */
.accordion {
    margin-top: 40px;
}

.accordion-item {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.step-num {
    font-weight: 700;
    margin-right: 15px;
    font-size: 18px;
}

.accordion-header h3 {
    font-size: 20px;
    flex-grow: 1;
}

.accordion-body {
    padding-top: 15px;
    padding-left: 35px;
    color: #666;
    line-height: 1.6;
    display: none; /* Hidden by default */
}

.accordion-item.active .accordion-body {
    display: block;
}

/* Image & Badge Styling */
.process-image-area {
    position: relative;
}

.curved-image-wrapper {
    width: 100%;
    height: 550px;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0; /* Creates the oval top */
    overflow: hidden;
    position: relative;
}

.main-process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 

.stats-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary-blue);
    color: white;
    padding: 25px;
    border-radius: 20px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-badge p { font-size: 22px; font-weight: 700; line-height: 1.2; }
.stats-badge span { font-size: 13px; font-weight: 400; opacity: 0.9; }

.client-avatars {
    display: flex;
    margin-top: 15px;
    align-items: center;
}

.client-avatars img, .plus-more {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--green-success);
    margin-left: -10px;
    background: white;
}

.plus-more {
    display: flex;
    align-items: center;
    justify-content: center;
    color:var(--green-success);
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .process-wrapper { grid-template-columns: 1fr; }
    .stats-badge { right: 20px; }

    .curved-image-wrapper {
    width: 100%;
    height: 550px;
    border-radius: 50px 50px 0 0 ; /* Creates the oval top */
    overflow: hidden;
    position: relative;
}

}


 
/* --- Video Section Wrapper --- */
.video-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Main Container --- */
.video-container {
    height: 600px;
    border-radius: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Clips the video to the border-radius */
    background-color: #000; /* Fallback color */
}

/* --- The Video Background --- */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Crucial: makes video act like background-size: cover */
}

/* --- Dark Overlay (For Readability) --- */
.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens video by 40% */
    z-index: 2;
}

/* --- Content Layers (Text & Logos) --- */
.video-overlay {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.white-text {
    color: var(--green-success) !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-title {
    color: white;
    font-size: clamp(30px, 5vw, 55px); /* Fluid typography */
    font-weight: 800;
    margin: 20px 0 40px;
    line-height: 1.1;
}

/* --- Brand Bar (Logos) --- */
.brand-bar {
    position: absolute;
    bottom: 40px;
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    z-index: 3;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    opacity: 0.9;
    font-size: 14px;
}

.brand-logo img {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1); /* Forces logos to be white */
}

/* --- Mobile & Tablet Responsive Adjustments --- */

/* Tablet (Screens under 1024px) */
@media (max-width: 1024px) {
    .video-container {
        height: 500px;
        border-radius: 30px;
    }
    
    .brand-bar {
        bottom: 30px;
        width: 95%;
    }
}

/* Mobile (Screens under 768px) */
@media (max-width: 768px) {
    .video-section {
        padding: 30px 10px;
    }

    .video-container {
        height: 450px; /* Shorter height for mobile screens */
        border-radius: 20px;
    }

    .video-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .brand-bar {
        padding-top: 15px;
        bottom: 20px;
        gap: 10px;
    }

    .brand-logo span {
        display: none; /* Hide text, show only icons for a cleaner look */
    }

    .brand-logo img {
        height: 20px;
    }
}

/* Small Mobile (Screens under 480px) */
@media (max-width: 480px) {
    .video-container {
        height: 400px;
    }
    
    .brand-bar {
        justify-content: center;
        gap: 15px;
    }
}


.why-choose-section {
    padding: 100px 5%;
    text-align: center;
    background-color: #fff;
}

.green-text {
    color: var(--green-success);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: #f0f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-info p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* --- The Arched Center Image --- */
.center-arch-wrapper {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
}

.arch-image {
    width: 350px;
    height: 500px;
    border-radius: 200px 200px 0 0; /* Creates the Arch shape */
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.bg-arch {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-foreground {
    position: absolute;
    bottom: 20px;
    width: 130%; /* Makes car slightly wider than the arch */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
 
.feature-icon-small img {

    width: 25px;       /* Adjust this value to make icons smaller or larger */

    height: 25px;      /* Keep height same as width for aspect ratio */

    object-fit: contain; /* Ensures the icon doesn't stretch */

}
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 20px; /* Reduced padding for smaller screens */
    }

    .features-container {
        flex-direction: column; /* Stack columns vertically */
        gap: 40px;
        margin-top: 40px;
    }

    /* Move the image to the top or middle as preferred */
    .center-arch-wrapper {
        order: -1; /* This places the arch image above the features */
        width: 100%;
    }

    .arch-image {
        width: 280px; /* Scaled down for mobile */
        height: 400px;
    }

    .car-foreground {
        width: 110%; /* Slightly smaller overflow to prevent horizontal scroll */
    }

    .features-column {
        gap: 30px; /* Tighter spacing between feature boxes */
        width: 100%;
    }

    .feature-box {
        flex-direction: column; /* Stack icon on top of text */
        align-items: center;
        text-align: center;
    }

    .feature-info h3 {
        font-size: 18px;
    }

     .feature-icon-small img {

        width: 30px; 
        height: 30px;

    }

}





.faq-section {
    padding: 100px 5%;
    background-color: var(--bc-blue); /* Light creamy background color from image */
    border-radius: 50px;
    margin: 40px 20px;
}

.faq-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Left Side Styling --- */
.faq-image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.decorative-shape {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 450px;
}

.shape-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This creates the slanted 'W' effect seen in the image background */
    clip-path: polygon(25% 0%, 50% 100%, 75% 0%, 100% 100%, 100% 0%, 0% 0%, 0% 100%);
    opacity: 0.8;
}

.floating-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 110%; /* Makes car pop out slightly */
    z-index: 5;
}

/* --- Right Side Styling --- */
.faq-content-side {
    flex: 1;
    text-align: left;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-body {
    padding-top: 15px;
    color: #666;
    line-height: 1.6;
    display: none; /* Hidden by default */
}

/* When the accordion item is open */
.faq-item.active .faq-body {
    display: block;
}

.faq-item.active .faq-header h3 {
    color: #1a1a1a;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .faq-container {
        flex-direction: column;
    }
    
    .faq-image-side {
        width: 100%;
        margin-bottom: 50px;
    }
}







/* --- CTA Banner Section --- */
.cta-banner-section {
    padding: 60px 5%;
    background-color: #fff;
}

.cta-banner-card {
    background-color: #0a0a0a; /* Deep black background */
    /* Subtle Grid Effect */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90px, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    
    border-radius: 60px; /* Highly rounded corners per image */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.cta-content {
    flex: 1;
    z-index: 2;
    max-width: 550px;
}

.cta-title {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-desc {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- Styled Contact Button --- */
.btn-contact {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-blue); /* Matching the orange/red in image */
    color: white;
    text-decoration: none;
    padding: 8px 8px 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    gap: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.icon-circle-small {
    background-color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* The PNG Arrow Image Replacement */
.arrow-img-small {
    width: 20px;          /* Adjust this to make your PNG larger or smaller */
    height: auto;         /* Maintains aspect ratio */
    display: block;
    transition: transform 0.3s ease;
}

.btn-contact:hover .arrow-img-small {
    transform: rotate(420deg);
    filter: brightness(0) invert(1);
}


/* 2. Slightly scale the circle on hover */
.btn-contact:hover .icon-circle-small {
    transform: scale(1.05);
        background-color: var(--green-success); 

 }

/* --- Image Handling --- */
.cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

.cta-image img {
    width: 110%; /* Makes car slightly overflow or fill space */
    height: 350px;
    object-fit: contain;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        border-radius: 40px;
    }
    
    .cta-image {
        margin-top: 40px;
        justify-content: center;
    }
    
    .cta-image img {
        width: 100%;
    }

    .cta-button-wrapper {
        display: flex;
        justify-content: center;
    }
}




