/* ===== CSS VARIABLES ===== */
:root {
    --primary: #3a3221;
    --secondary: #4c4c4c;
    --accent: #e0ddd4;
    --accent-2: #ffe8e2;
    --accent-hover: #f8d0c6;
    --accent-hover-2: #bd9731;
    --light: #f8fafc;
    --dark: #020617;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --header: #fff;
    --light-2: #fcf6dd;
}
.title-line-clamp-2 {
    display: -webkit-box;
    min-height: 40px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ===== BASE STYLES ===== */
/* FONT SIZE */
.h-44,
.h-40,
.h-35,
.h-30,
.h-28 {
    font-weight: 600;
    color: var(--gray-dark-4);
    text-transform: math-auto;
}

.h-44 {
    font-size: 44px;
}

.h-40 {
    font-size: 40px;
}

.h-35 {
    font-size: 35px;
}

.h-30 {
    font-size: 30px;
}

.h-28 {
    font-size: 28px;
}

.h-24 {
    font-size: 24px;
}


/* Base styles for paragraph text */
.p-24 {
    font-size: 24px;
}

.p-22 {
    font-size: 22px;
}

.p-20 {
    font-size: 20px;
}

.p-18 {
    font-size: 18px;
}

.p-16 {
    font-size: 16px;
}

.p-14 {
    font-size: 14px;
}

/* Media Query: max-width 992px */
@media (max-width: 992px) {
    .h-44 {
        font-size: 36px;
    }

    .h-40 {
        font-size: 34px;
    }

    .h-35 {
        font-size: 30px;
    }

    .h-30 {
        font-size: 26px;
    }

    .h-28 {
        font-size: 24px;
    }

    .p-24 {
        font-size: 22px;
    }

    .p-22 {
        font-size: 20px;
    }

    .p-20 {
        font-size: 18px;
    }

    .p-18 {
        font-size: 16px;
    }

    .p-16 {
        font-size: 15px;
    }
}

/* Media Query: max-width 768px */
@media (max-width: 768px) {
    .h-44 {
        font-size: 30px;
    }

    .h-40 {
        font-size: 28px;
    }

    .h-35 {
        font-size: 26px;
    }

    .h-30 {
        font-size: 24px;
    }

    .h-28 {
        font-size: 22px;
    }

    .h-24 {
        font-size: 20px;
    }


    .p-24 {
        font-size: 20px;
    }

    .p-22 {
        font-size: 18px;
    }

    .p-20 {
        font-size: 16px;
    }

    .p-18 {
        font-size: 15px;
    }

    .p-16 {
        font-size: 14px;
    }
}

/* Media Query: max-width 600px */
@media (max-width: 600px) {
    .h-44 {
        font-size: 26px;
    }

    .h-40 {
        font-size: 24px;
    }

    .h-35 {
        font-size: 22px;
    }

    .h-30 {
        font-size: 20px;
    }

    .h-28 {
        font-size: 18px;
    }

    .h-24 {
        font-size: 17px;
    }

    .p-24 {
        font-size: 18px;
    }

    .p-22 {
        font-size: 17px;
    }

    .p-20 {
        font-size: 16px;
    }

    .p-18 {
        font-size: 14px;
    }

    .p-16 {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .h-44 {
        font-size: 24px;
    }
}

/* FONT WEIGHT */
.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

body {
    font-family: "Epilogue", sans-serif;
    color: var(--primary);
    padding-top: 90px;
    line-height: 1.6;
}

section {
    padding: 70px 0;
}

.obj_fit {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    background-color: var(--header);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    /* background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95)) !important; */
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); */
}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar-brand span {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}


.navbar-brand:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.navbar-nav .nav-link {
    color: #111827;
    font-weight: 500;
    font-size: 16px;
    padding: 2rem 1.2rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), #fbbf24);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.navbar-toggler:hover {
    background: rgba(245, 158, 11, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
    background-color: transparent;
    padding: 0 35px;
    /* height: 103px; */
    background-color: var(--header);
}

.header .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.25rem;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    padding: 0;
    max-width: 1900px;
}

.brand {
    width: 230px;
    height: 72px;
}

.brand img {
    height: 100%;
    object-fit: contain;
}

.menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
}

.menu.is-active {
    top: 90px;
    width: 100%;
    left: 0;
    height: calc(100% - 90px);
    background-color: #fff;
}

.menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.menu_item {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    transition: all 0.3s ease;
}

.menu_item:hover,
.menu_item:focus,
.menu_item:visited {
    color: #f4f4f4b7 !important;
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;
    order: 1;
    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: var(--accent);
    transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-action .nav-link {
    color: var(--accent) !important;
    font-weight: 500;
    border-radius: 17px;
    padding: 0.8rem 1.3rem !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: var(--light-2);
    border: 0;
}

.header-icon {
    padding: .75rem;
    border-radius: 30px;
    background-color: var(--accent) !important;
    height: 47px;
    width: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-icon img {
    width: 18px;
    height: 18px;
}

.header-action .nav-link:hover,
.header-icon:hover {
    background-color: var(--accent-hover-2) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* ===== BUTTON STYLES ===== */
.btn-warning {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    letter-spacing: 0.5px;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #fbbf24, var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    color: var(--dark);
}

.btn-outline-warning {
    color: var(--accent);
    border: 2px solid var(--accent);
    background: transparent;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-outline-warning:hover {
    background: var(--accent);
    color: var(--dark);
    /* transform: translateY(-2px); */
    /* box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3); */
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    background: #ffff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 20px 21px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease 0.4s both;
}

.filter-bar .form-select,
.filter-bar .form-control {
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem;
    padding-left: 0;
    border-bottom: 1px solid #ececec !important;
    font-size: 15px;
    font-family: 'DM Sans';
    color: #040401;
    padding-left: 5px;
    background-color: transparent;
    cursor: pointer;
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
    box-shadow: none;
    border-bottom-color: var(--accent);
}

.filter-bar .form-control::placeholder,
.filter-bar .form-control::placeholder {
    font-size: 12px;
}

.filter-bar .form-label {
    font-size: 14px;
    font-weight: 400 !important;
    font-family: 'DM Sans';
    margin-bottom: 10px;
}

.filter-tabs {
    gap: 5px;
}

.filter-tabs .nav-link {
    color: var(--gray-600);
    font-weight: 500;
    background-color: var(--light-2);
    border: none;
    border: 0px solid transparent;
    padding: 7px 25px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 18px;
    font-size: 13px;
}

.filter-tabs .nav-link.active {
    color: #fff;
    border: 0px solid var(--accent);
    background: none;
    background-color: var(--accent);
}

.filter-tabs .nav-link:hover {
    color: var(--accent);
    background: rgba(245, 158, 11, 0.05);
}

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

.filter-reset {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-reset:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.advanced-filters-toggle {
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    margin-top: 1rem;
    transition: all 0.3s ease;
    user-select: none;
    background-color: var(--accent);
    padding: 6px 14px;
    font-size: 15px;
    border-radius: 18px;
    width: fit-content;
}

.advanced-filters-toggle:hover {
    color: #fff;
    background-color: var(--accent-hover-2);
}

.advanced-filters-toggle i {
    transition: transform 0.3s ease;
}

.advanced-filters-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.filter-actions .btn-main {
    height: 55px;
    width: 55px;
    font-size: 19px;
    border-radius: 50%;
    font-size: 20px;
}

.advanced-filters .form-check-label {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

/* ===== FORM STYLES ===== */
.form-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-select,
.form-control {
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 20px 1rem;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
}

.form-control::placeholder {
    font-size: 14px;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--light-2);
    box-shadow: none !important;
    outline: none;
}

.form-check-input {
    border: 2px solid var(--gray-200);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-check-label {
    font-weight: 500;
    color: var(--gray-700);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light), var(--gray-100));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CAR CARDS ===== */
.car-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.car-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .card-img-top {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.car-card .card-body {
    padding: 1.5rem;
}

.car-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.car-card .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 600;
}

/* ===== FOOTER STYLES ===== */
footer {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #B3B3B3;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-section a:hover {
    color: var(--gray-100);
    padding-left: 8px;
}

/* ===== SMALL BEAUTIFUL FLOATING BUTTON ===== */
.floating-inspection-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: softFloat 3s ease-in-out infinite;
}
.floating-inspection-btn .btn-icon {
    font-size: 14px;
    border: 2px solid #f9b119;
}
@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}
@media (max-width: 768px) {
    .floating-inspection-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .floating-inspection-btn .btn-icon {
        font-size: 13px;
    }
}
.footer-section a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}
.footer-section a:hover::before {
    width: 10px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 12px;
    color: #fff;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.social-link:hover {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: var(--dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}
.copyright {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.footer-section {
    animation: fadeInUp 0.6s ease forwards;
}
.footer-section:nth-child(2) {
    animation-delay: 0.1s;
}
.footer-section:nth-child(3) {
    animation-delay: 0.2s;
}
.footer-section:nth-child(4) {
    animation-delay: 0.3s;
}
.car-card {
    animation: fadeInUp 0.6s ease forwards;
}
.car-card:nth-child(2) {
    animation-delay: 0.1s;
}
.car-card:nth-child(3) {
    animation-delay: 0.2s;
}
.car-card:nth-child(4) {
    animation-delay: 0.3s;
}
footer .social-area ul li a:hover:before{
    display: none;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .filter-bar {
        padding: 1.5rem;
    }
}

@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.6rem !important;
    }

    body {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .filter-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .filter-bar {
        padding: 1rem;
        margin-bottom: -2rem;
    }

    .filter-tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-brand {
        font-size: 1.4rem !important;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn-warning,
    .btn-outline-warning {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }

    .filter-tabs {
        flex-wrap: wrap;
    }

    .filter-tabs .nav-link {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .car-card .card-img-top {
        height: 200px;
    }
    .footer-section h3{
        font-size: 16px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.border-accent {
    border-color: var(--accent) !important;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shadow-custom-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



/* COntact us page css start */

/* ===== MINIMAL CUSTOM CSS FOR CONTACT FORM ===== */


.form-control:focus,
.form-select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
}

.form-check-input:checked {
    background-color: #f59e0b;
    border-color: #f59e0b;
}



@media (max-width: 768px) {
    .contact-form-card {
        margin: 1rem;
    }
}

/* Listing page css starts */
.car-listing-section {
    background: #fff;
    min-height: 100vh;
    padding: 2rem 0;
}

.car-listing-section .container-fluid {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 35px;
}

.listing-header {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.listing-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.listing-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

.results-count {
    color: #64748b;
    font-weight: 500;
}

/* ===== FILTERS SIDEBAR ===== */
.filters-sidebar {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.filters-sidebar::-webkit-scrollbar {
    display: none;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.filters-header h4 {
    color: #0f172a;
    font-weight: 600;
    margin: 0;
}

.btn-link {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0;
    font-size: 13px;
    background-color: transparent;
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.filter-options .form-check {
    margin-bottom: 0.5rem;
}

.filter-options .form-check-label {
    color: #475569;
    font-weight: 500;
    cursor: pointer;
}

.filter-options .count {
    color: #94a3b8;
    font-size: 0.85rem;
}

.form-check-input:checked {
    background-color: #f59e0b;
    border-color: #f59e0b;
}

.form-range::-webkit-slider-thumb {
    background: #f59e0b;
}

.form-range::-moz-range-thumb {
    background: #f59e0b;
    border: none;
}

/* ===== LISTING TOOLBAR ===== */
.listing-toolbar {
    /* background: white;
    padding: 1.5rem;
    border-radius: 15px; */
    margin-bottom: 2rem;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
}

.view-options .btn-group .btn {
    border-color: var(--light-2);
    color: var(--accent);
}

.view-options .btn-group .btn:hover {
    color: #fff;
}

.view-options .btn-group .btn.active {
    background-color: var(--light-2);
    color: var(--accent);
}

/* ===== CAR CARDS ===== */
.car-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.car-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .card-img-top {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.car-badge.hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.car-badge.ending {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.car-badge.reserve {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #f59e0b;
    color: white;
}

.current-bid {
    color: #f59e0b !important;
}

.car-card .card-title {
    color: #0f172a;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== LIST VIEW ===== */
.car-list-item {
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.listing-product-img{
    position: relative;
    height: 300px;
}
.list-car-title{
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 25px;
}
.listing-product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.car-listing-section .form-select,
.car-listing-section .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    color: #0f172a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.car-list-item .car-box-price-text{
    font-size: 30px !important;
}
.car-list-item .spec_item {
    padding: 12px 10px;
    border-radius: 10px;
}
.car-list-item .view-detail-btn{
    padding: 12px 10px;
}
.car-box-price h4 {
    font-size: 20px !important;
}
/* ===== PAGINATION ===== */
.pagination .page-link {
    color: #f59e0b;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    width: 40px;
    height: 40px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.pagination .page-item.active .page-link {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

.pagination .page-link:hover {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: #facc15;
    color: #d97706;
}

.pagination .page-item.disabled .page-link {
    color: #9ca3af;
    background-color: #f9fafb;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.pagination .page-link i {
    font-size: 0.875rem;
}


/*=== Home Banner ===*/
.home-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(180deg, #00000080 13.62%, #00000080 68.99%);
    z-index: -1;
}

.banner-text-sm {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
}

.banner-heading {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
}

.p-text {
    color: #fff;
}

/* Inner Banner */
.inner-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #fff;
}

.inner-banner .carousel-item {
    height: 500px;
}

.inner-banner .carousel-item:after {
    position: absolute;
    width: 100%;
    top: 0;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(8, 12, 36, 0.466);
    background: linear-gradient(90deg, rgb(0, 0, 0) 20%, rgb(14, 14, 17) 39%, rgba(8, 8, 10, 0.96) 50%, rgba(0, 0, 0, 0) 100%); */
    background: #000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 15%, rgba(255, 255, 255, 0) 100%);
}

.inner-banner .carousel-caption {
    position: absolute;
    right: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1140px;
    width: 100%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    height: fit-content;
}

.inner-banner .carousel-inner video,
.inner-banner .carousel-inner img.banner_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=== Section Starter ====*/
.sec-h-top {
    color: var(--accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding-left: 0px;
    position: relative;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 15px;
}

.sec-h-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/icons/star.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 18px;
    height: 18px;
    display: none;
}

/* ===== Blogs  ===== */
.featured-post {
    overflow: hidden;
    border-radius: 20px;
    height: 570px;
    position: relative;
}

.featured-post::after,
.side-post-img::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.featured-post:hover::after,
.side-post-img:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.feature-post-img {
    position: relative;
    height: 100%;
}

.feature-post-img::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0 !important;
    left: 0 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 2.8%, #000000 99.93%);
    opacity: 1 !important;
    visibility: visible !important;
}

.featured-post img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    padding-top: 0;
    border-radius: 1rem;
    z-index: 3;
}

.featured-content h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.read-more-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.read-more-icon .icon-circle {
    background-color: var(--accent);
    padding: 0.5rem;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    color: white;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

.read-more-icon .icon-circle:hover {
    background-color: var(--accent);
}

.read-more-icon .icon-circle i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96%;
}

.side-post {
    position: relative;
}

.side-post-img {
    height: 174px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.side-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-circle-sm {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--accent);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-sm i {
    color: #fff;
    font-size: 14px;
    transform: rotate(-34deg);
}

/* New footer 2 */
footer {
    background: #13141A;
    border-radius: 25px 25px 0 0;
}

footer .container-fluid {
    max-width: 2000px;
    margin: 0 auto;
}

footer .footer-top {
    padding: 90px 11% 50px 11%;
}

.footer-logo {
    width: 250px;
    height: 113px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: -27px;
    margin-top: -3px;
}

@media (max-width: 1699px) {
    footer .footer-top {
        padding: 90px 6%;
    }
}

footer .footer-widget .widget-title {
    margin-bottom: 23px;
}

footer .footer-widget .widget-title h5 {
    margin-bottom: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

footer .footer-widget .menu-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .footer-widget .menu-container ul li {
    margin-bottom: 8px;
}

footer .footer-widget .menu-container ul li a {
    color: #B3B3B3;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

footer .footer-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 11% 35px;
}

@media (max-width: 1699px) {
    footer .footer-center {
        padding: 0px 6% 35px;
    }
}

footer .footer-center .contact-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

footer .footer-center .contact-area .hotline-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer .footer-center .contact-area .hotline-area .icon {
    position: relative;
}

footer .footer-center .contact-area .hotline-area .icon svg {
    fill: var(--accent);
}

footer .footer-center .contact-area .hotline-area .icon::after {
    content: "";
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
}

footer .footer-center .contact-area .hotline-area .content {
    line-height: 1;
}

footer .footer-center .contact-area .hotline-area .content span {
    color: #B3B3B3;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    margin-bottom: 10px;
}

footer .footer-center .contact-area .hotline-area .content h6 {
    margin-bottom: 0;
    line-height: 1;
}

footer .footer-center ul li a {
    color: #B3B3B3;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s;
    text-decoration: none;
}

footer .footer-btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 17px 6%;
}

@media (max-width: 1699px) {
    footer .footer-btm {
        padding: 17px 6%;
    }
}

footer .footer-btm .copyright-area p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

footer .footer-btm .copyright-area p a {
    color: var(--accent);
}

footer .footer-btm .social-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .footer-btm .social-area h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

footer .footer-center .contact-area .hotline-area .content h6 a {
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

footer .social-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .social-area ul li a {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 24px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.35s;
    position: relative;
}
footer .social-area ul li a i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
}

footer .footer-center ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* === CTA === */
.cta-section {
    background-color: #f5f5f5;
    background-image: url('../images/cta-box-lines.svg');
    color: #000;
    padding: 100px 0px;
    overflow: hidden;
    margin: 0 40px;
    border-radius: 20px;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: var(--accent);
    color: #fff;
}

.cta-img {
    max-width: 100%;
    height: auto;
}

/* === Services === */
.our-services {
    /* background-color: var(--light-2); */
}

.service-card {
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: #FFFFFF00;
    padding: 30px 25px 30px 25px;
    border: 1px solid #ececec;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--accent);
    border-radius: 500px 500px 0 0;
    transition: all 0.4s ease-in-out;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0;
}

.service-card:hover::before {
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--light-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.icon-wrapper img {
    width: 50px;
    position: relative;
    left: 8px;
    top: 9px;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    background-color: var(--light-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background-color: var(--accent);
}

.section-text {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #666;
}

.btn-main {
    /* background: linear-gradient(135deg, var(--accent), #fbbe24cd); */
    background-color: var(--accent);
    color: #fff;
    border-radius: 30px;
    padding: 11px 25px 10px 25px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s ease;
    border: 0;
}

.btn-main:hover {
    background-color: var(--accent-hover-2);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    color: #fff;
}

.btn-main svg {
    filter: brightness(40);
}

.btn-main.white {
    background-color: #fff;
    color: var(--accent);
}

.btn-main.white:hover {
    background-color: var(--accent);
    color: #fff;
}

.btn-main.white svg {
    transition: all .3s ease;
}

.btn-main.white svg {
    filter: unset;
}

.btn-main.white:hover svg {
    filter: brightness(32.5);
}

.btn-main.dark {
    background-color: var(--accent);
    color: #fff;
}

.btn-main.dark:hover {
    background-color: #fff;
    color: var(--accent);
}

.btn-main.gray {
    background-color: #fff3f4;
    color: var(--accent);
}

.theme_btn {
    cursor: pointer;
    padding: 6px 7px 6px 15px;
    border-radius: 100px;
    background: var(--accent);
    z-index: 0;
    color: #fff;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    text-decoration: none;
    width: max-content;
}

.theme_btn span {
    font-size: 15px;
    font-weight: 600;
}

.theme_btn>img {
    width: 34px;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.theme_btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;

    background-color: #bd9731;
    left: -100%;
    border-radius: 100px;
    -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.theme_btn:hover::after {
    left: 0;
    z-index: -1;
}

.service-card:hover .arrow-btn {
    background-color: var(--light-2);
    transform: rotate(45deg);
}

.service-card h5,
.service-card p {
    transition: all 0.4s ease-in-out;
}

.service-card:hover h5,
.service-card:hover p {
    color: #fff !important;
}

/* ==== Main Section ==== */
.card-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    height: 100%;
    border: 1px solid #ececec;
}

.card-box h5 {
    font-weight: 600;
    margin-top: 15px;
    font-size: 18px;
    color: #212529;
}

.card-box p {
    color: #6c757d;
    font-size: 15px;
    margin-top: 10px;
}

.icon {
    width: 30px;
    height: 30px;
    color: #ff6c00;
}

.action-btn {
    background-color: #ff6c00;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.action-btn:hover {
    background-color: #e35900;
    color: white;
}

.car-image {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .card-box {
        text-align: center;
    }
}

/* === Testimonail === */
.slider-testimonal .item-wrap {
    border: 1px solid #ececec;
    padding: 30px 30px 30px 30px;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0);
    border-radius: 20px;
    background-color: var(--light-2);

}

.item-wrap-stars {
    padding-left: 0;
}

.item-wrap-stars li {
    display: flex;
    align-items: center;
    gap: 3px;
}

.item-wrap-stars li i {
    color: var(--accent);
}

.item-wrap-content {
    padding: 0px 0px 30px 0px;
    border-bottom: 1px solid #33333342;
    margin-bottom: 30px;
    min-height: 180px !important;
}

.item-wrap-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #616161;
    margin: 20px 0px 0px 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;

}

.item-wrap-details {
    display: flex;
    align-items: center;
    margin-right: auto;
    gap: 10px;
}

.item-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-wrap-name {
    font-size: 15px;
    line-height: 1.4;
    color: #040404;
    display: block;
}

.item-wrap-title {
    font-size: 13px;
    color: #616161;
}

.slider-testimonal .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider-testimonal .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background-color: var(--accent) !important;
}

.slider-testimonal .owl-nav .owl-prev span {
    transform: rotate(180deg);
}

.slider-testimonal .owl-nav button span {
    color: transparent;
    background-image: url('../images/icons/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-top: 4px;
}

/* Car Card */
.card-slider-wrap {
    padding: 0 3%;
    margin: 0 auto;
    max-width: 1900px;
}

.car-box-card-images {
    position: relative;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.car-box-card-imag-item {
    width: 100%;
    height: 240px;
    display: block;
    border-radius: 15px;
    overflow: hidden;
}

.car-box-card-imag-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.car-box-card-content {
    padding: 30px 5px 10px 5px;
}

.p-left {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
}
.car-box-badge {
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border: 1px solid transparent;
    white-space: nowrap;
}
.car-box-badge.hot {
    background: #fce2e2;
    color: #b71c1c;
    border-color: #e1999988;
}

.car-box-badge.inspected {
    background: #d8e9ff;
    color: #0b5ed7;
    border-color: #9dc4ff80;
}

.car-box-badge.sold {
    background: #ffedb8;
    color: #805a00;
    border-color: #e0b84c85;
}

.car-box-badge.condition {
    background: #e0e0e0;
    color: #2c2c2c;
    border-color: #b3b3b387;
}

.car-box-other-detail {
    padding-bottom: 20px;
}
.car-box-other-detail h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
}
.car-box-price-and-specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.car-box-specs {
    display: flex;
    align-items: center;
    gap: 7px;
}
.spec_item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 4px;
    background: #eeeaea;
    transition: all 0.3s ease;
    flex-grow: 1;
    justify-content: center;
}
.section-auction .spec_item{
    background-color: var(--accent);
    color: white;
}
.car-box-specs .spec_item{
    background-color: var(--accent);
    color: white;
}
.spec_item img {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain;
}

.spec_item span {
    display: block;
    font-size: 12px;
    font-family: 'DM Sans';
    font-weight: 500;
    line-height: 15px;
}
.section-auction .spec_item span{
    color: #fff;
}
.section-auction .spec_item img{
    filter: invert(1);
}
.car-box-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.car-box-price h4 {
    font-size: 14px;
    font-weight: 400;
}

.car-box-price .car-box-price-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'DM Sans';
}

.view-detail-btn {
    width: 100%;
    background-color: #3a3221;
    border-radius: 10px;
    text-align: center;
    padding: 10px 10px;
    display: flex;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    justify-content: center;
}

.cars-card-slider .owl-nav {
    margin-top: 40px;
}

.cars-card-slider .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background-color: var(--accent) !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    animation: cc-calto-action-ripple 0.6s linear infinite;
}

.cars-card-slider .owl-nav .owl-prev {
    position: absolute;
    left: -28px;
    top: 52%;
    transform: translateY(-50%);
}

.cars-card-slider .owl-nav .owl-next {
    position: absolute;
    right: -28px;
    top: 52%;
    transform: translateY(-50%);
}

.cars-card-slider .owl-nav .owl-prev span {
    transform: rotate(180deg);
}

.cars-card-slider .owl-nav button span {
    color: transparent;
    background-image: url('../images/icons/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-top: 4px;
}
@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow:
            0 4px 10px rgba(215, 178, 54, 0.6),
            0 0 0 0 rgba(215, 178, 54, 0.6),
            0 0 0 5px rgba(215, 178, 54, 0.6),
            0 0 0 10px rgba(215, 178, 54, 0.6);
        box-shadow:
            0 4px 10px rgba(215, 178, 54, 0.6),
            0 0 0 0 rgba(215, 178, 54, 0.6),
            0 0 0 5px rgba(215, 178, 54, 0.6),
            0 0 0 10px rgba(215, 178, 54, 0.6);
    }

    100% {
        -webkit-box-shadow:
            0 4px 10px rgba(215, 178, 54, 0.6),
            0 0 0 5px rgba(215, 178, 54, 0.6),
            0 0 0 10px rgba(215, 178, 54, 0.6),
            0 0 0 20px rgba(215, 178, 54, 0);
        box-shadow:
            0 4px 10px rgba(215, 178, 54, 0.6),
            0 0 0 5px rgba(215, 178, 54, 0.6),
            0 0 0 10px rgba(215, 178, 54, 0.6),
            0 0 0 20px rgba(215, 178, 54, 0);
    }
}


/* @keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.6), 0 0 0 0 rgba(255, 255, 255, 0.6), 0 0 0 5px rgba(255, 255, 255, 0.6), 0 0 0 10px rgba(255, 255, 255, 0.6);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.6), 0 0 0 0 rgba(255, 255, 255, 0.6), 0 0 0 5px rgba(255, 255, 255, 0.6), 0 0 0 10px rgba(255, 255, 255, 0.6);
    }

    100% {
        -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.6), 0 0 0 5px rgba(255, 255, 255, 0.6), 0 0 0 10px rgba(255, 255, 255, 0.6), 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.6), 0 0 0 5px rgba(255, 255, 255, 0.6), 0 0 0 10px rgba(255, 255, 255, 0.6), 0 0 0 20px rgba(255, 255, 255, 0);
    }
} */

/* Section Auction */
.section-auction {
    background-color: var(--light-2);
}

/* Sectio CTA */
.ft-cta {
    background-color: var(--light-2);
    margin-bottom: -21px;
}

/* === According === */
.section-faq {
    background-color: #fcf6dd;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border: none;
    padding-left: 0;
    font-weight: normal;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    padding-right: 0;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #333;
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(1);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
}

.custom-accordion .accordion-body {
    padding-left: 0;
    padding: 0;
    color: #333;
}

.custom-accordion.white .accordion-button {
    background-color: #fff;
    color: #000;
    padding: 25px 20px;
    border-radius: 10px !important;
}

.custom-accordion.white .accordion-button:not(.collapsed) {
    background-color: white !important;
    border-color: white !important;
   color: var(--accent) !important;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {

    color: black !important;
    background-color: white !important;

}
.accordion-button .detail-title{

    color: var(--accent) !important;

}
.accordion-button:not(.collapsed) .detail-title{

    color: var(--accent) !important;


}
.accordion-button:not(.collapsed) .detail-title i{

        color: var(--accent) !important;


}

.custom-accordion.white .accordion-body {
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 10px 0px;
}

.custom-accordion.white .accordion-item {
    background-color: #fff;
    border: none;
    border-radius: 20px;
    margin-bottom: 20px;
}

.accordion-button:not(.collapsed):after {
    filter: brightness()
}

.faq-img {
    height: 500px;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ox-hidden {
    overflow-x: hidden;
}

/* Blog Detail Page */
.blog-section {
    padding-top: 100px;
    background: #f8fafc;
}

.blog-content-top {
    text-align: center;
}

.blog-date {
    margin-bottom: 20px;
    color: var(--accent);
}

.text-light-2 {
    color: #999b9b;
}

.blog-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.4;
}

.author-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.author-wrapper img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-wrapper h5 {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0;
}

.author-wrapper p {
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
}

.blog-content-body {
    margin-top: 100px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 35px 30px 50px 30px;
}

.blog-content-body ul,
.theme_list {
    padding-left: 25px;
    list-style: none;
}

.blog-content-body ul li,
.theme_list li {
    position: relative;
}

.blog-content-body ul li::before,
.theme_list li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url('../images/icons/automobile-tire.svg') no-repeat center center;
    background-size: 20px 20px;
    background-repeat: no-repeat;
}
.theme_list.white li::before{
    filter: brightness(100);
}
.theme_list.white li {
    color: #fff;
}
.blog-content-body .blog-thumbnail,
.blog-content-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-related .featured-post {
    height: 450px;
}

.blog-related .featured-content {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}

.blog-related .blog-related .featured-post .read-more-icon {
    width: 40px;
    height: 40px;
}

/* ===== BOOK INSPECTION ===== */
.book-inspection-banner {
    background-color: var(--light-2);
    padding: 100px 0;
}

.book-inspection-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.bx-box {
    background-color: var(--light-2);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
}

.inpsection-wrapper {}

.stick-box {
    position: sticky;
    top: 120px;
    z-index: 10;
}

.why-choose-us-section .service-card {
    background-color: var(--light-2);
}

.why-choose-us-section .icon-wrapper {
    background-color: #fff;
}

.why-choose-us-section .arrow-btn {
    background-color: #fff;
}

/* section-performance */
.section-performance {
    background-image: url('../images/performance.png');
    background-position: right;
    background-size: 65%;
    background-repeat: no-repeat;
    background-color: #f8fafc;
}

.inspection-success-story .testimonail_slider .owl-nav {
    justify-content: end;
    padding-right: 40px;
}

.sell-your-car {
    background-color: #fff;
    padding: 35px 30px 25px 30px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* benefit-wrap */
.benefit-wrap {
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
}

.benefit-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-why-benefit {
    background-color: #f4f4f4;
}

.section-why-benefit .icon-wrapper {
    width: 43px;
    height: 43px;
    margin-bottom: 24px;
    background-color: #fff;
}

.section-why-benefit .icon-wrapper img {
    width: 35px;
}

.custom-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.custom-progress .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.custom-progress .step .icon {
    background-color: #f5f5f5;
    color: var(--accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.custom-progress .step.active .icon {
    background-color: #ffc107;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

.custom-progress .step p {
    margin-top: 10px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #444;
}

.custom-progress .line {
    height: 4px;
    background-color: #e0e0e0;
    flex: 1;
    margin: 0 10px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.custom-progress .line.filled {
    background-color: var(--accent);
}

/* Search Bar */
.modern-car-search {
    display: flex;
    align-items: center;
    gap: 0px;
    width: 600px;
    position: fixed;
    top: 96px;
    right: -1000%;
    padding: 8px 4px 9px 9px;
    background: #f5f5f5;
    border-radius: 10px 0px 0px 10px;
    z-index: 2;
    transition: all .3s ease;
}

.modern-car-search.active {
    right: 0;
}

.search-input {
    flex: 1;
    padding: 20px 18px;
    border: none;
    border-radius: 10px 0px 0px 10px;
    background: #fff;
    outline: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.search-input:focus {
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.15);
}

.search-btn {
    padding: 10px 24px;
    background: #f39200;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    border: none;
    border-radius: 0px 10px 10px 0px;
    cursor: pointer;
    transition: background 0.3s ease;
    height: 59px;
}

.search-btn:hover {
    background: #e07d00;
}

/*  */
.filter-box {
    padding-right: 15px;
}

.filter-dropdown {
    padding: 10px;
    border: none;
}

.filter-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.ui-state-default,
.ui-widget-content .ui-state-default{
	border: 1px solid var(--accent);
	background: var(--accent);
	font-weight: normal;
	color: var(--accent);
	width: 15px;
	height: 15px;
	border-radius: 50%;
}
.ui-widget.ui-widget-content{
    border: 0 !important;
    background-color: #f4f4f4;
}
.ui-slider-horizontal{
    height: 6px;
}
.filter-accordion .accordion-button {
    background-color: var(--accent);
    font-weight: 500;
    border: none;
    font-size: 15px;
    border-radius: 0;
    padding: 14px 16px;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #fff;
}
.filter-accordion .accordion-body {
    padding: 15px 20px;
    background-color: #ffffff;
}
.filter-box .form-select {
    background-color: #fff;
    cursor: pointer;
    border: 0;
    border: 1px solid #e2e8f0;
}

/* fav-wrap */
.section-fav{
    background-color: #f8fafc;
}
.fav-wrap{
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
}
.not-added-fav{
    background-color: #f8fafc;
}
.not-added-fav-inner{
    background-color: #fff;
    border-radius: 10px;
}


.filter-block {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

/* FORM WIDGET */
.home-banner .form-widget {
    max-width: 500px;
    margin-left: auto;
    /* min-height: 600px;
    max-height: 600px; */
    border-radius: 20px;
}
.form-widget-head {
    background: var(--accent);
    padding: 25px 15px 20px 20px;
    /* border-top-left-radius: 20px; */
    /* border-top-right-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-text ul {
    padding-left: 20px;
    margin: 0;
}
.banner-text ul li {
    font-size: 14px;
}
.form-widget-head img {
    width: 250px;
    height: 110px;
    object-fit: contain;
}
/* Step container */
.form-widget-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
    max-height: 537px !important;
    overflow-y: auto;
    height: 537px;
}
/* Step navigation */
.step-section {
    display: none;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}
.step-section.active {
    display: block;
}
.step-section textarea.form-control{
    height: 100px;
    resize: none;
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
/* Brand Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    text-align: center;
    background-color: #fbfbfc;
    padding: 10px;
    border-radius: 10px;
}
.form-widget .theme_btn,
.form-widget .btn-main {
    border-radius: 10px !important;
}
.form-widget .theme_btn::after{
    border-radius: 10px;
}
.brand-card {
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.brand-card h5{
    font-size: 13px;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 0;
    justify-content: center;
}
.brand-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.brand-card:hover, .brand-card.selected {
    border-color: var(--accent);
    background: #f0f6ff;
}
/* List view */
.search-box {
    margin: 15px 0;
}
.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.brand-list li {
    padding: 6px;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.brand-list li:hover {
    background: #f0f6ff;
}
.btn_group{
    display: flex;
    gap: 5px;
    justify-content: end;
}
/* Bottom button */
.back-btn {
    background: #fff;
    border: none;
    color: #000;
    margin-bottom: 15px;
    gap: 2px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.next-btn {
    background: #fff;
    border: none;
    color: #000;
    margin-bottom: 15px;
    gap: 2px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.back-btn,
.next-btn{
    width: max-content;
}
.back-btn i {
    margin-right: 5px;
    font-size: 13px;
    color: #000;
}
.form-widget-wrapper {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}
/* For Chrome, Edge, Safari */
.form-widget-wrapper::-webkit-scrollbar {
    width: 7px;
}
.form-widget-wrapper::-webkit-scrollbar-track {
    background: transparent; /* or any track color you want */
}
.form-widget-wrapper::-webkit-scrollbar-thumb {
    background-color: #888; /* thumb color */
    border-radius: 4px; /* rounded edges */
}
.form-widget-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* darker on hover */
}
.step-section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .listing-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .car-listing-section {
        padding: 1rem 0;
    }

    .listing-header {
        padding: 1.5rem;
    }

    .listing-toolbar {
        padding: 1rem;
    }

    .view-options {
        margin-bottom: 1rem;
    }

    .car-card .card-img-top {
        height: 180px;
    }
}
/* Listing page css ends */
@media only screen and (min-width: 1060px) {
    .menu {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        padding: 0rem;
        margin: 0 auto;
        background: none;
        box-shadow: none;
    }

    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 0rem;
        margin: 0 auto;
    }

    .menu-link {
        text-transform: capitalize;
    }

    .menu-block {
        margin-left: 2rem;
    }

    .burger {
        display: none;
        visibility: hidden;
    }
}
@media (max-width: 1699px) {
    footer .footer-btm {
        padding: 17px 6%;
    }
}
@media (max-width: 1399px) {
    footer .footer-btm {
        padding: 17px 3%;
    }
}
@media only screen and (max-width: 1200px) {
    .brand {
        width: 150px;
        height: 89px;
    }
    .brand img {
        padding: 10px 0;
    }
    .banner-heading {
        font-size: 40px;
    }
    footer .footer-center {
        padding: 0px 3% 35px;
        flex-direction: column;
        gap: 40px;
    }
    .car-list-item .car-box-price-text{
        font-size: 20px !important;
    }
    .list-car-title{
        font-size: 18px;
    }
    .car-list-item .spec_item{
        padding: 8px;
        border-radius: 8px;
    }
}
@media only screen and (max-width: 1060px) {
    .menu {
        transition: all 0.4s ease-in-out;
    }

    .header-action .nav-link {
        font-size: 16px;
        padding: 8px 10px !important;
    }

    .header .navbar {
        justify-content: space-between;
    }

    .header-action {
        gap: 10px;
    }

    .banner-heading {
        font-size: 35px;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1.2rem !important;
    }
}
@media only screen and (max-width: 768px) {
    .header-action .theme_btn {
        padding: 10px 14px;
    }

    .header-action .theme_btn img {
        width: 25px;
    }

    .header-icon {
        width: 45px;
        height: 45px;
    }

    .header-icon img {
        width: 18px;
    }

    .banner-heading {
        font-size: 30px;
    }

    .cta-section {
        padding: 60px 0px 30px 0;
        margin: 0 5px;
    }

    .faq-img {
        height: auto;
    }

    .featured-post {
        height: 400px;
    }

    .featured-content {
        padding: 20px;
    }

    footer .footer-btm {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    footer .footer-center .contact-area {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .form-widget-head{
        flex-direction: column;
        align-items: baseline;
    }
    .form-widget-head img{
        width: 230px;
        height: auto;
        margin-left: auto;
    }
}
@media only screen and (max-width: 992px) {
    footer .footer-btm {
        padding: 17px 2%;
    }
    .home-banner .form-widget{
        max-width: 100%;
    }
    .home-banner .form-widget-wrapper{
        height: 567px;
        max-height: 567px !important;
    }
}
@media only screen and (max-width: 650px){
    .header-action .theme_btn {
        display: none;
    }
    .car-listing-section .container-fluid{
        padding: 20px 15px;
    }
    .filter-box{
        padding-right: 0;
    }
    .listing-product-img,
    .car-box-card-imag-item{
        height: 220px;
    }
}
@media only screen and (max-width: 600px) {
    .header {
        padding: 0 15px;
    }
    .banner-heading {
        font-size: 26px;
    }
    .footer-widget {
        margin-bottom: 0;
    }
    .filter-bar {
        border-radius: 20px;
    }
    .sell-your-car {
        padding: 30px 15px 20px 15px;
    }
    .modern-car-search {
        width: 98%;
    }
    .header-action{
        gap: 5px;
    }
    .header-icon{
        width: 30px;
        height: 30px;
    }
    .header-icon img{
        width: 14px;
    }
    .cars-card-slider .owl-nav .owl-prev{
        left: -7px;
    }
    .cars-card-slider .owl-nav .owl-next{
        right: -7px;
    }
    .benefit-wrap{
        height: auto;
    }
    footer .footer-widget .widget-title h5{
        font-size: 15px;
    }
    footer .footer-top{
        padding: 90px 0;
    }
    .custom-accordion .accordion-button{
        font-size: 16px;
    }
    .side-post-img{
        height: 110px;
    }
    .cars-card-slider .owl-nav button{
        width: 35px;
        height: 35px;
    }
    .cars-card-slider .owl-nav button span{
        width: 15px;
    }
    .fav-wrap{
        padding: 0;
    }
    .section-fav{
        background-color: #fff;
    }
    .brand-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .home-banner .form-widget-wrapper{
        height: 650px;
        max-height: 650px !important;
    }
}
@media only screen and (max-width:400px) {
    .brand {
        width: 120px;
        height: 72px;
    }
    .menu.is-active {
        top: 73px;
        height: calc(100% - 73px);
    }
    .side-post-img{
        height: 80px;
    }
}