/* Global Styles */
:root {
    --primary-color: #E66842;
    --secondary-color: #ffffff;
    --black: #000000;
    --grey: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Font Fix */
body {
    font-family: 'Inter', sans-serif;
    color: #222;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
}

button,
input,
select,
textarea {
    font-family: 'Inter', sans-serif !important;
}

body {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    color: var(--grey);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Utility Classes */
.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Fullscreen loader overlay start */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Loader background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loader animation (spinning circle) */
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Fullscreen loader overlay end */

/* Top bar starts  */
/* Top bar starts */
.top-bar {
    background-color: #4a4848;
    color: var(--secondary-color);
    font-size: 14px;
    padding: 8px 0;
    width: 100%;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Left side: Email + Address */
.top-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Right side: Links */
.top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.top-right a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.top-right a:hover {
    color: var(--primary-color);
}

/* Top bar end */

/* Nav bar start */
.custom-header {
    height: 90px;
    width: 100%;
    background-color: var(--primary-color);
}

.custom-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Flex layout for header */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}

/* Logo left */
.logo img {
    height: 100px;
    padding: 10px 0 !important;
    transition: all 0.3s ease;
}

/* Centered navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 20px 0px 0px 0px;
}

.main-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s;
    padding: 10px 0;
}


/* Active link underline */
.main-nav ul li a.active {
    color: white !important;
    position: relative;
}

.main-nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Right side button */
.header-btn .pickup-btn {
    position: relative;
    top: 7px !important;
    background-color: #4a4848;
    color: var(--secondary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.header-btn .pickup-btn:hover {
    background-color: #333;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991px) {

    .top-bar .container,
    .custom-header .container {
        padding: 0 20px;
    }

    .top-bar-inner {
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .top-left {
        justify-content: center;
        gap: 15px;
    }

    /* Mobile navigation */
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-nav ul li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    .main-nav ul li a {
        color: #333;
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .logo img {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 13px;
        padding: 10px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
    }

    .top-left {
        flex-direction: column;
        gap: 5px;
    }

    .header-inner {
        height: 70px;
        gap: 15px;
    }

    .logo img {
        height: 80px;
    }

    .header-btn .pickup-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {

    .top-bar .container,
    .custom-header .container {
        padding: 0 15px;
    }

    .header-inner {
        height: 65px;
        gap: 10px;
    }

    .logo img {
        height: 70px;
    }

    .header-btn .pickup-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
    }

    .header-inner {
        height: 60px;
    }

    .logo img {
        height: 60px;
    }

    .header-btn .pickup-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* new  */
/* Responsive for screens 320px to 991px */
@media (max-width: 991px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        /* logo left, right side right */
        align-items: center;
        gap: 5px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 5px;
        /* gap between button and toggle */
    }

    .mobile-toggle {
        display: flex;
        /* make toggle visible */
    }

    .header-btn .pickup-btn {
        white-space: nowrap;
        /* prevent text wrapping */
    }
}


/* new 2  */
@media (max-width: 991px) {
    .custom-header .container {
        max-width: 100%;
        padding: 0 10px;
        /* smaller side padding */
    }

    .header-right {
        margin-right: 40px;
        justify-content: flex-end;
    }

    .header-btn {
        margin-right: 0;
    }
}


/* new 3  */
/* ✅ Keep top bar in single row for mobile (320px to 991px) */
@media (max-width: 991px) {
    .top-bar {
        padding: 6px 0;
        font-size: 13px;
        /* slightly smaller for mobile */
    }

    .top-bar .container {
        padding: 0 10px;
        max-width: 100%;
    }

    .top-bar-inner {
        display: flex;
        flex-wrap: nowrap;
        /* prevent wrapping */
        justify-content: space-between;
        /* spread evenly */
        align-items: center;
        gap: 10px;
        overflow-x: auto;
        /* allow scroll if too narrow */
        white-space: nowrap;
        /* keep in one line */
        scrollbar-width: none;
        /* hide scrollbar for Firefox */
    }

    .top-bar-inner::-webkit-scrollbar {
        display: none;
        /* hide scrollbar for Chrome/Safari */
    }

    .top-left,
    .top-right {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .top-left span,
    .top-right a {
        font-size: 13px;
        white-space: nowrap;
    }

    .top-right {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
        padding: 5px 0;
    }

    .top-left span i {
        font-size: 12px;
    }
}

/* new 4  */
/* ✅ Always keep header-right at the far right corner (320px–991px) */
@media (min-width: 320px) and (max-width: 991px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .header-right {
        position: absolute;
        right: 10px;
        /* keeps it fixed to the right edge */
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 8px;
        /* space between button and toggle */
        margin-right: 0 !important;
    }

    .header-btn .pickup-btn {
        padding: 8px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .mobile-toggle {
        display: flex;
    }
}
/* nav bar end */
/* nav bar end  */

/* Hero Section Start */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

/* Swiper container */
.swiper.hero-swiper-slider {
    width: 100%;
    height: 100%;
}

/* Slides */
.swiper.hero-swiper-slider .swiper-slide.hero-swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for better text readability */
.swiper.hero-swiper-slider .swiper-slide.hero-swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Text */
.hero-swiper-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-swiper-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-swiper-content h1 {
    color: white;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-swiper-content span {
    color: var(--primary-color);
}

/* Custom Navigation Buttons - Hidden by default */
.hero-button-prev,
.hero-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.hero-button-prev {
    left: 30px;
}

.hero-button-next {
    right: 30px;
}

.hero-swiper-slide {
    height: 80vh !important;
    /* Reduced from 100vh to 60vh */
    background-size: cover;
    background-position: center;
}

/* Show buttons on hover */
.hero-section:hover .hero-button-prev,
.hero-section:hover .hero-button-next {
    opacity: 1;
    visibility: visible;
}

.hero-button-prev:hover,
.hero-button-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-section {
        margin-top: 0;
    }

    .hero-swiper-content h4 {
        font-size: 20px;
    }

    .hero-swiper-content h1 {
        font-size: 45px;
    }

    .hero-button-prev,
    .hero-button-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        opacity: 1;
        visibility: visible;
    }

    .hero-button-prev {
        left: 15px;
    }

    .hero-button-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-swiper-content h4 {
        font-size: 18px;
    }

    .hero-swiper-content h1 {
        font-size: 36px;
    }

    .hero-button-prev,
    .hero-button-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Hero Section End */

/* Pickup+Brand Section start */
.pickup-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    position: relative;
    margin-top: -310px;
    z-index: 3;
}

.pickup-form {
    text-align: center;
    margin-bottom: 20px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 4;
    max-width: 700px;
    /* adjust as needed */
    margin: 0 auto;
}

.pickup-grid .form-group {
    flex: 1 1 calc(50% - 20px);
    /* 2 columns */
    min-width: 220px;
}

.pickup-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.form-group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.form-control {
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Brand Slider */
.array-button {
    display: flex;
    justify-content: center;
    /* center buttons horizontally */
    gap: 20px;
    /* space between prev and next */
    margin-bottom: 20px;
    /* spacing from slider */
}

.array-button button {
    background: transparent;
    /* remove default button box */
    border: none;
    /* remove border */
    cursor: pointer;
    font-size: 24px;
    /* icon size */
    color: #333;
    /* icon color, change as needed */
    transition: color 0.3s;
}

.array-button button:hover {
    color: var(--primary-color);
    /* hover color */
}

.array-button i {
    pointer-events: none;
    /* ensure clicks register on button, not icon */
}



/* Mobile Responsive */
@media (max-width: 991px) {
    .pickup-section {
        padding: 50px 0;
    }

    .pickup-form {
        padding: 20px;
    }

    .brand-slider .swiper-slide {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .pickup-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .form-group {
        width: 100%;
    }

    .pickup-btn {
        width: 100%;
    }

    .brand-slider .swiper-slide {
        height: 70px;
    }

    .brand-slider img {
        max-height: 60px;
    }
}

@media (max-width: 576px) {
    .pickup-section {
        padding: 40px 0;
    }

    .pickup-form {
        top: 40px !important;
        padding: 15px;
    }

    .brand-slider .swiper-slide {
        height: 60px;
    }

    .brand-slider img {
        max-height: 50px;
    }
}

/* Pickup+Brand Section end */

/* checkout starts */
.checkout-car-section {
    padding: 60px 0;
    /* reduce top/bottom section space */
    background: #f8f8f8;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.checkout-car-section .section-header small {
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-car-section .section-header h2 {
    font-size: 2rem;
    color: var(--black);
    margin: 8px 0 25px;
    /* reduce space below heading */
    line-height: 1.3;
}

.checkout-car-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 15px;
    /* reduce extra bottom space */
}

.checkout-car-card {
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 280px;
    /* fixed total card height */
}

.checkout-car-card:hover {
    transform: translateY(-5px);
}

.checkout-car-card .card-img {
    flex: 1;
    /* image takes proportional space */
    overflow: hidden;
}

.checkout-car-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-car-card .card-content {
    padding: 10px 12px;
    /* smaller padding */
    text-align: center;
    flex-shrink: 0;
    /* content keeps its height */
}

.checkout-car-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.checkout-car-card p {
    font-size: 13px;
    color: var(--grey);
    margin: 0;
}

.checkout-car-card i {
    color: var(--primary-color);
    margin-right: 5px;
}

.checkout-btn {
    margin-top: 20px;
    /* reduced margin above button */
}

.btn-book {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    /* background: var(--primary-color); */
    /* border: 1px solid var(--grey); */
    line-height: 1.2;
    z-index: 1;
    /* text is on top */
}

/* Top row fill */
.btn-book .top-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #4A4848;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
    /* behind the text */
}

/* Bottom row fill */
.btn-book .bottom-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 51%;
    background: #4A4848;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
    /* behind the text */
}

/* Hover effect */
.btn-book:hover .top-fill {
    transform: scaleX(1);
}

.btn-book:hover .bottom-fill {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-car-section .section-header h2 {
        font-size: 24px;
    }

    .checkout-car-card {
        height: 250px;
        /* smaller height on mobile */
    }

    .checkout-car-card .card-img img {
        height: 100%;
    }
}

/* checkout end  */


/* footer starts  */
.text-muted {
    --bs-text-opacity: 1;
    color: white !important;
}

.footer-alt {
    background-color: grey;
    padding: 10px !important;
    /* section padding */
    font-family: 'Inter', sans-serif;
}

.footer-alt-box {
    border-radius: 12px;
    padding: 20px;
    /* optional: uncomment background or shadow if needed */
    /* background-color: #fff; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}

.footer-alt-brand {
    padding: 15px;
    border-radius: 30px;
    display: inline-block;
}

.footer-alt-brand img {
    border-radius: 5px;
}

.footer-alt ul {
    list-style: none;
    padding-left: 0;
}

.footer-alt ul li {
    margin-bottom: 8px;
}

.footer-alt a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-alt a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-alt .footer-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Bottom copyright section */
.footer-alt .footer-bottom {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    /* border-top: 1px solid var(--primary-color); */
    /* margin-top: 2rem; */
}

@media (max-width: 991px) {
    .footer-alt .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Optional: adjust container side padding */
.footer-alt .container {
    padding-left: 60px;
    padding-right: 60px;
}

/* List link hover */
ul.list-unstyled li a {
    text-decoration: none;
    transition: color 0.3s ease;
}

ul.list-unstyled li a:hover {
    color: var(--primary-color) !important;
}

/* footer end  */


/* About Section starts */
.about-section {
    background-color: var(--secondary-color);
    padding: 80px 20px;
    text-align: center;
    padding: 0px 20px 50px;
}

.section-header small {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey);
    max-width: 800px;
    margin: 0 auto;
}

.about-text span {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 30px;
    }

    .about-text {
        font-size: 16px;
    }
}

.about-section .col-lg-6:last-child .about-text {
    background-color: #f5f5f5;
    /* change this to any color you want */
    padding: 20px;
    /* optional: add some padding */
    border-radius: 8px;
    /* optional: rounded corners */
}

/* About Section ends */


/* Responsive starts  */
/* =============================================== */
/* RESPONSIVE STYLES FOR TOP BAR AND HEADER */
/* =============================================== */

/* Large Desktop Screens (1400px and above) */
@media (min-width: 1400px) {

    .top-bar .container,
    .custom-header .container {
        max-width: 1320px;
    }
}

/* Desktop Screens (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {

    .top-bar .container,
    .custom-header .container {
        max-width: 1140px;
    }

    .main-nav ul {
        gap: 50px;
    }
}

/* Tablet Landscape (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {

    .top-bar .container,
    .custom-header .container {
        max-width: 960px;
    }

    /* Header adjustments */
    .main-nav ul {
        gap: 35px;
    }

    .logo img {
        height: 90px;
    }

    .header-btn .pickup-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Tablet Portrait (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {

    .top-bar .container,
    .custom-header .container {
        max-width: 720px;
        margin: 0 15px;
    }

    /* Top bar responsive */
    .top-bar-inner {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        text-align: center;
    }

    .top-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-left span {
        margin: 0 10px;
    }

    /* Header mobile menu activation */
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .main-nav ul li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    .main-nav ul li a {
        color: #333;
        font-size: 16px;
    }

        .main-nav ul li a.active {
            color: rgb(0, 0, 0) !important;
            position: relative;
        }

    .mobile-toggle {
        display: flex;
    }

    .logo img {
        height: 85px;
    }

    .header-btn .pickup-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Mobile Landscape (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {

    .top-bar .container,
    .custom-header .container {
        max-width: 540px;
        margin: 0 15px;
    }

    /* Top bar */
    .top-bar {
        font-size: 13px;
        padding: 10px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
    }

    .top-left span {
        display: block;
        margin: 2px 0;
    }

    .top-left span i {
        margin-right: 5px;
    }

    /* Header */
    .header-inner {
        height: 70px;
    }

    .logo img {
        height: 75px;
    }

    .header-btn .pickup-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }

    /* Mobile menu */
    .main-nav {
        top: 70px;
    }

    .main-nav ul li a {
        color: #333;
        font-size: 16px;
    }
}

/* Mobile Portrait (575px and below) */
@media (max-width: 575px) {

    .top-bar .container,
    .custom-header .container {
        max-width: 100%;
        margin: 0 15px;
    }

    /* Top bar */
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .top-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-left span {
        display: block;
        margin: 3px 0;
    }

    .top-left span i {
        display: inline-block;
        margin-right: 5px;
    }

    .top-right a {
        font-size: 11px;
    }

    /* Header */
    .header-inner {
        height: 65px;
        padding: 0 5px;
    }

    .logo img {
        height: 65px;
        padding: 15px !important;
    }

    .header-btn .pickup-btn {
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .mobile-toggle {
        margin-left: 10px;
    }

    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }

    /* Mobile menu */
    .main-nav {
        top: 65px;
    }

    .main-nav ul {
        padding: 15px;
    }

    .main-nav ul li {
        padding: 10px 0;
    }

    .main-nav ul li a.active {
        color: black !important;
        position: relative;
    }
}

/* Extra Small Mobile Devices (375px and below) */
@media (max-width: 375px) {

    .top-bar .container,
    .custom-header .container {
        margin: 0 10px;
    }

    /* Top bar */
    .top-bar {
        font-size: 11px;
    }

    .top-left span i {
        display: none;
        /* Hide icons on very small screens */
    }

    .top-right a {
        font-size: 10px;
    }

    /* Header */
    .header-inner {
        height: 60px;
    }

    .logo img {
        height: 55px;
        padding: 12px !important;
    }

    .header-btn .pickup-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .mobile-toggle span {
        width: 18px;
    }
}

/* Orientation specific styles for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .main-nav {
        max-height: 70vh;
        overflow-y: auto;
    }

    .main-nav ul li {
        color: black;
        padding: 8px 0;
    }
}

/* Prevent horizontal scrolling on mobile */
@media (max-width: 767px) {

    .top-bar,
    .custom-header {
        overflow-x: hidden;
    }
}

.main-nav,
.mobile-toggle span {
    transition: all 0.3s ease;
}

/* button for about us */

.site-button {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 35px;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
}

/* Animation layers */
.site-button .top-fill,
.site-button .bottom-fill {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--black);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: -1;
}

.site-button .top-fill {
    top: 0;
    transform-origin: left;
}

.site-button .bottom-fill {
    bottom: 0;
    transform-origin: right;
}

/* Hover animation */
.site-button:hover .top-fill {
    transform: scaleX(1);
}

.site-button:hover .bottom-fill {
    transform: scaleX(1);
}

.site-button:hover {
    color: var(--secondary-color);
}

/* Button centered at bottom */
.twm-btn-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .twm-btn-bottom {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .site-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* button for about us end */



/* About us inner page starts  */
/* About us start*/
.about-us-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-us-content .section-small-heading {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
}

.about-us-content .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.about-us-content p {
    color: var(--grey);
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
}

/* Image Wrapper */
.about-us-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-us-image {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-us-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover animation */
.about-us-image:hover img {
    transform: scale(1.05) rotate(1deg);
}

.about-us-image:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .about-us-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-us-content,
    .about-us-image-wrapper {
        height: auto;
    }

    .about-us-image img {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* About us end */

/* card starts  */
.corporate-cards {
    padding: 0px 0px 50px !important;
    background-color: var(--section-bg);
}

.corporate-cards .card {
    background-color: var(--secondary-color);
    border: none;
    padding: 30px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.corporate-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.corporate-cards .card-icon .icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.corporate-cards .card-title {
    color: var(--black);
}

.corporate-cards p,
.corporate-cards ul li {
    color: var(--grey);
}

.corporate-cards ul {
    padding-left: 20px;
    list-style: disc;
}

/* Bottom paragraph style */
.corporate-paragraph p {
    font-size: 1rem;
    color: var(--primary-color);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .corporate-cards .card {
        margin-bottom: 20px;
    }
}

.card-body h5 {
    font-size: 1rem;
    color: #E66842;
    /* Primary color */
    margin-top: 15px;
}

/* bullet start */
.text-start li {
    position: relative;
    padding-left: 20px;
    /* space for custom bullet */
    margin-bottom: 10px;
    list-style: none;
    /* remove default bullets */
}

.text-start li::before {
    content: "•";
    /* custom bullet */
    color: #E66842;
    /* primary color */
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    /* bigger bullet size */
    line-height: 1;
}

/* bullet off */
/* card end */
/* About us inner page end  */


/* fleet inner page start  */
.client-logos {
    background-color: var(--secondary-color);
}

.section-header h2 {
    font-size: 2rem;
    margin: 0.5rem 0 2rem;
    color: var(--black);
}

/* Wrapper to center the grid */
.logo-grid-wrapper {
    max-width: 1300px;
    /* controls the max width of logos */
    margin: 0 auto;
    padding: 0 15px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
    justify-items: center;
}

.logo-item {
    height: 60px;
    /* fixed height */
    padding: 0.5rem;
    /* background-color: #f8f8f8; */
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    /* allow it to scale inside grid */
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* new  */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.vehicle-card {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Individual colors */
.sedan-icon i {
    color: #E66842;
    /* primary color */
}

.suv-icon i {
    color: #4285F4;
    /* blue */
}

.mpv-icon i {
    color: #34A853;
    /* green */
}

/* Responsive */
@media (max-width: 992px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
}


/* fleet card start */
/* 1st design card   */
.fleet-section {
    text-align: center;
}

.fleet-heading {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Fleet Cards Row */
.fleet-cards-row {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    /* Keep single row on large screens */
    justify-content: center;
}

/* Individual Fleet Card */
.fleet-card {
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 0px 70px 70px 70px;
    /* Custom border radius */
    padding: 25px 15px;
    flex: 1 1 18%;
    /* 5 cards per row */
    min-width: 200px;
    max-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--black);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Fleet Card Icon */
.fleet-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Fleet Card Text */
.fleet-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive for smaller screens */
@media (max-width: 1200px) {
    .fleet-cards-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fleet-card {
        flex: 1 1 40%;
        max-width: 300px;
        margin-bottom: 20px;
    }
}

/* fleet card end */
/* fleet inner page end  */




/* inner page services section starts  */
/* service 1st section start */
.services-section {
    background-color: var(--secondary-color);
}

.services-small-heading {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-title {
    font-size: 2rem;
    color: var(--black);
    margin: 0.5rem 0 1rem 0;
}

.services-content p {
    color: var(--grey);
    line-height: 1.6;
}

.services-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
/* service 1st section end */

/* new section rental start */
.rental-section {
    padding: 20px 20px 60px 20px;
    background: #fff;
    text-align: center;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.toggle-btn {
    position: relative;
    width: 280px;
    height: 60px;
    background: transparent;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease;
    border: none;
}

.toggle-btn::before,
.toggle-btn::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.toggle-btn::before {
    top: 0;
}

.toggle-btn::after {
    bottom: 0;
}

.toggle-btn:hover {
    color: var(--secondary-color);
}

.toggle-btn:hover::before,
.toggle-btn:hover::after,
.toggle-btn.active::before,
.toggle-btn.active::after {
    background-color: var(--primary-color);
}

.toggle-btn:hover {
    background: var(--primary-color);
}

.toggle-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.content-item {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    color: var(--grey);
    text-align: center;
}

.content-item.active {
    display: block;
}

.content-item h3 {
    font-size: 2rem;
    color: black;
    margin-bottom: 10px;
}

/* new section rental end */


/* new card with hover  */
.profile-section {
    padding: 80px 0 0px;
    background-color: #f7f7f7;
}

.profile-section .section-head {
    text-align: center;
    margin-bottom: 40px;
}

.profile-section .section-head small {
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 1px;
    display: block;
    text-transform: uppercase;
}

.profile-section .section-head h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.profile-section .section-head p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.profile-box {
    background-color: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.profile-box:hover {
    background-color: var(--grey);
    color: var(--secondary-color);
}

.profile-box .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.profile-box:hover .icon {
    color: var(--secondary-color);
}

.profile-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.profile-box p {
    font-size: 16px;
    color: #555;
    transition: color 0.4s ease;
}

.profile-box:hover p {
    color: var(--secondary-color);
}

.profile-box ul {
    padding-left: 20px;
    color: #555;
    transition: color 0.4s ease;
}

.profile-box ul li {
    list-style-type: disc;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.profile-box ul li::marker {
    color: var(--primary-color);
}

.profile-box:hover ul li::marker {
    color: var(--primary-color);
    /* bullet stays primary even on hover */
}

.profile-box:hover ul li {
    color: var(--secondary-color);
    /* text turns white, bullet remains primary */
}

/* new card with hover end */




/* circle card  new start*/
.why-avirm-section {
    padding: 80px 20px;
    background-color: #f7f7f7;
    text-align: center;
}

.why-avirm-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--black);
}

.circle-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.circle-card {
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.circle-card:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-10px);
}

.circle-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.circle-card:hover i {
    color: var(--secondary-color);
}

.circle-card p {
    font-size: 16px;
    color: var(--black);
    margin: 0;
    transition: color 0.3s ease;
}

.circle-card:hover p {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .circle-card {
        width: 150px;
        height: 150px;
        padding: 15px;
    }

    .why-avirm-section h2 {
        font-size: 28px;
    }
}

/* circle card  new end*/

/* 2 card with background color start  */
.how-it-works-section {
    background-color: #FFEDE5;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

.how-it-works-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Columns */
.left-column,
.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

/* Divider line */
.divider-line {
    width: 1px;
    background-color: #ddd;
}

/* Card styles */
.info-card {
    text-align: left;
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bullet list */
.primary-bullets {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.primary-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
    font-size: 16px;
}

.primary-bullets li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Icon section */
.icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.icon-wrap svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.info-card h6 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.info-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Equal height fix */
.how-it-works-container>div {
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works-container {
        flex-direction: column;
    }

    .divider-line {
        display: none;
    }

    .left-column,
    .right-column {
        padding: 1.5rem;
    }
}

/* 2 card with background color end */
/* inner page services section end  */




/* demo image Section Start */
.fixed-bg-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.fixed-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    /* background-color: rgba(255, 255, 255, 0.8); */
    border-radius: 12px;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.column {
    height: 300px;
    flex: 1;
    min-width: 300px;
    background-color: rgb(207 206 206 / 90%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--grey);
}

/* Lists with primary-colored bullets */
ul {
    padding-left: 20px;
    margin: 0;
}

li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--grey);
}

li::marker {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }

    h1 {
        font-size: 1.8rem;
    }

    .content-container {
        padding: 30px 20px;
    }
}

/* demo image Section end */


/* contact inner page starts  */
.contact-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.contact-form .form-control {
    width: 100%;
    padding: 16px 12px 12px 12px;
    /* space for label inside top border */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.contact-form .form-group label {
    position: absolute;
    top: 0;
    left: 12px;
    background-color: #fff;
    padding: 0 5px;
    font-size: 14px;
    color: #999;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form .form-control:focus+label,
.contact-form .form-control:not(:placeholder-shown)+label {
    color: var(--primary-color);
}

.textarea-large {
    min-height: 140px;
    /* taller textarea for full-width row */
    resize: vertical;
}

.btn-submit {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
/* contact inner page end  */


/* contact page banner  */
.contact-header {
    background-color: #FFEDE5;
    height: 200px;
    width: 100%;
}

.contact-header h1 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #E66842;
    /* primary color */
}

.contact-header p {
    font-size: 2rem;
    margin: 10px 0 0 0;
    color: #333;
    /* secondary text color */
}


/* why choose us start */
.section-header small {
    display: block;
    text-align: center;
}


.split-section {
  display: flex;
  max-width: 1100px;
  margin: 20px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  font-family: 'Inter', Arial, sans-serif;
  padding: 0 0 20px;
}
.split-left, .split-right {
  flex: 1 1 0;
  padding: 50px 38px 0px 38px;
  display: flex;
  flex-direction: column;

}
.section-header {
  font-size: 1.30em;
  font-weight: 700;
  margin-bottom: 19px;
  letter-spacing: 1.3px;
  line-height: 1.12em;
}
.orange-text {
  font-size: 2rem;
    color: var(--black);
    margin: 8px 0 25px;
    line-height: 1.3;
}
.split-description {
  color: #474747;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0;
}
.split-features {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
}
.split-features li {
  display: flex;
  align-items: center;
  color: #474747;
  /* font-weight: 600; */
  font-size: 1.1em;
  /* margin-bottom: 18px; */
  /* letter-spacing: 0.2px; */
}
.orange-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #f1723f;
  border-radius: 50%;
  margin-right: 14px;
}

@media (max-width: 950px) {
  .split-section {
    flex-direction: column;
    padding: 0;
  }
  .split-left, .split-right {
    padding: 28px 12px 16px 12px;
    text-align: center;
    align-items: center;
  }
  .split-features li {
    justify-content: center;
    font-size: 1em;
  }
}


/* Carousel Styles */
.carousel-outer {
  max-width: 1100px;
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;

}
.scroll-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.scroll-track {
  display: flex;
  gap: 16px;
  animation: scrollLeft 14s linear infinite;
  width: calc(420px * 8 + 16px * 7); /* Adjust if card size/gap changes or # of images */
}

.car-card {
  flex: 0 0 auto;
  width: 420px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}

.car-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  
}

.car-card img {
  border: 0.1px solid #a8a6a3;
       
}


/* Auto-scroll animation */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .car-card { width: 350px; height: 233px; }
  .scroll-track { width: calc(350px * 8 + 16px * 7); }
}

@media (max-width: 992px) {
  .car-card { width: 300px; height: 200px; }
  .scroll-track { width: calc(300px * 8 + 16px * 7); }
}

@media (max-width: 576px) {
  .car-card { width: 220px; height: 147px; }
  .scroll-track { width: calc(220px * 8 + 16px * 7); }
}

/* bg color img  */

.card-back {
  background-color: #f5f5f5;
}


/* why choose us end */