/* Custom Styles */
:root {
    /* Fonts */
    --font-poppins: 'Poppins', sans-serif;

    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #FDDA0D;
    --primary-hover: #F2CF03;
    --secondary: #008000;
    --secondary-hover: #05A205;
    --light: #f8f9fa;
    --dark: #212529;

    /* Spacing */
    --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --padding-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --margin-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}


body {
    font-family: var(--font-poppins);
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--font-poppins);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 2vw, 2rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
}

h4 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 2rem);
}

h6 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

p {
    font-size: 1rem;
}

.btn.btn-primary {
    background-color: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    font-weight: 600;
    color: var(--black);
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
    transform: scale(1.03);
    background-color: var(--primary-hover);
}

.btn.btn-success {
    background-color: var(--secondary);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    border: none;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.btn.btn-success:hover {
    transform: scale(1.03);
    background-color: var(--secondary-hover);
}

/* Header Styles */
.main-header {
    background-color: var(--primary);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-section {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    font-style: italic;
    color: var(--black);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--black) !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

/* Dropdown Premium Styles */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
    margin-top: 15px !important;
    background-color: var(--white);
    animation: fadeInDown 0.3s ease;
}

.navbar-nav .dropdown-item {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    transition: all 0.2s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--black);
    transform: translateX(5px);
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-btn {
    width: 38px;
    height: 38px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-btn:hover {
    transform: translateY(-2px);
    color: var(--secondary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}



.btn-add-item i {
    font-size: 16px;
}

/* Styling custom slick buttons */
.custom-slider-btn {
    background: #198754;
    /* Success green color to match your theme */
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-slider-btn:hover {
    background: #157347;
    color: #fff;
}

/* Positioning the arrows */
.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

/* Slider container ko relative karein taaki arrows iske hisab se align hon */
.car-detail-nav-slider {
    position: relative;
    padding: 0 45px;
    /* Side mein space taaki arrows images ke upar na aayein */
}

/* Common style for both buttons */
.car-detail-nav-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Perfectly vertical center */
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0;
    /* Purana text (Next/Prev) chhupane ke liye agar icons use kar rahe hain */
}

/* Left Arrow Position */
.car-detail-nav-slider .slick-prev {
    left: 0;
}

/* Right Arrow Position */
.car-detail-nav-slider .slick-next {
    right: 0;
}

/* Buttons ke andar arrows/icons ke liye (agar aapne HTML mein daale hain) */
.car-detail-nav-slider .slick-arrow::before {
    font-family: "Font Awesome 5 Free";
    /* Ya Bootstrap Icons */
    font-weight: 900;
    font-size: 16px;
    color: #fff;
}

.car-detail-nav-slider .slick-prev::before {
    content: "\f053";
    /* FontAwesome left chevron code */
}

.car-detail-nav-slider .slick-next::before {
    content: "\f054";
    /* FontAwesome right chevron code */
}

/* Aligning Search Icon perfectly between Menu and Button */
.search-trigger-wrapper {
    display: flex;
    align-items: center;
    /* Vertically center */
    justify-content: center;
    /* height: 100%; */
    /* Parent height fill karega */
    cursor: pointer;
}

.search-trigger-wrapper a {
    color: #333;
    /* Apne theme ke hisab se badlein */
    font-size: 18px;
    /* Icon size */
    /* line-height: 1; */
    text-decoration: none;
    padding: 8px;
    /* Clickable area badhane ke liye */
    transition: color 0.3s ease;
}

.search-trigger-wrapper a:hover {
    color: #198754;
    /* Hover color */
}

/* Search Overlay Styles */
.search-overlay {
    height: 300px;
    width: 100%;
    display: none;
    /* Default hidden */
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    /* Black with opacity */
    backdrop-filter: blur(8px);
    /* 3rd screenshot wala blur effect */
}

.search-overlay-content {
    position: relative;
    top: 25%;
    width: 80%;
    margin: auto;
    text-align: center;
    color: white;
}

/* Close Button */
.close-search {
    position: absolute;
    top: 30px;
    right: 45px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

/* Ajax Search Lite Input Adjustments */
.search-overlay-content .proinput {
    background: #fff !important;
    border-radius: 30px !important;
    padding: 7px 25px !important;
}

div.asl_w .probox .promagnifier {
    height: 43px;
}

/* ================================================================ */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary);
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .header-actions {
        margin-top: 15px;
        justify-content: flex-start;
    }

    .offcanvas {
        background-color: var(--primary);
        border-left: none;
    }

    .offcanvas-header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 20px;
    }

    .offcanvas-body {
        padding: 20px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        box-shadow: none;
        margin-top: 0 !important;
        animation: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-actions {
        margin-top: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-actions .btn-success {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 900px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.8rem, 3.8vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 28px;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
}

.hero-arrow {
    position: absolute;
}

.arrow-prev {
    left: 30px;
    width: 71px;
    height: 83px;
    border: none;
    background: url(../images/slider-prev-btn.png) center center no-repeat;
    font-size: 0;
    background-size: 100% 100%;
}

.arrow-next {
    right: 30px;
    width: 71px;
    height: 83px;
    border: none;
    background: url(../images/slider-next-btn.png) center center no-repeat;
    font-size: 0;
    background-size: 100% 100%;
}



@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .arrow-prev {
        left: 10px;
    }

    .arrow-next {
        right: 10px;
    }
}

/* Search Inventory Styles */
.search-inventory {
    background-color: var(--secondary);
    margin-top: -110px;
    position: relative;
}

.search-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 15px;
    padding: 0 5px;
    background: none !important;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.search-tabs .nav-link.active {
    color: var(--white);
    border-bottom: 2px solid var(--white);
}

.search-tabs .nav-link:hover {
    color: var(--white);
}

.search-form .form-select,
.search-form .form-control {
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
    height: 54px;
}

.search-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 12px;
}

.search-form .btn-primary {
    height: 54px;
    white-space: nowrap;
    min-width: 187px;
}


@media (max-width: 991.98px) {
    .search-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .search-tabs {
        gap: 10px;
    }
}

/* Partners Section Styles */
.partners {
    background-color: var(--white);
    padding: clamp(4rem, 5vw, 5rem) 0;
}

.partners .section-title {
    font-size: clamp(2rem, 2vw, 2rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.partners-marquee .partner-item {
    padding: 0 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.partners-marquee img {
    max-height: 40px;
    max-width: 150px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partners-marquee img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Slick Linear Animation for Marquee */
.slider-marquee .slick-track {
    display: flex;
    align-items: center;
}

/* Best Solution Section Styles */
.solution {
    background-color: #F8F8F8;
    padding: clamp(4rem, 6vw, 6rem) 0;
}

.solution .section-title {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.solution-image-wrapper {
    position: relative;
    max-width: 500px;
}

.solution-image-wrapper img {
    width: 100%;
    height: auto;
}

.solution-overlay-box {
    position: absolute;
    bottom: 60px;
    right: -49px;
    background-color: var(--primary);
    padding: 30px;
    width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.solution p {
    font-size: clamp(0.95rem, 1vw, 1rem);
    line-height: 28px;
    color: #606060;
}

.solution-overlay-box h4 {
    color: var(--black);
    line-height: 36px;
    font-size: 1.5rem;
}

.solution-content .check-icon i {
    font-size: 1.25rem;
}

.author-profile .author-img img {
    object-fit: cover;
    border: 4px solid #FDDA0D;
}

.author-info h6 {
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    .solution-image-wrapper {
        margin: 0 auto 50px;
    }

    .solution-overlay-box {
        bottom: -20px;
        right: 10px;
        width: 220px;
        padding: 20px;
    }
}

/* Featured Cars Section Styles */
.featured-cars {
    padding: clamp(4rem, 6vw, 6rem) 0;
}

.featured-cars .section-title {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.car-card {
    border-radius: 0;
    /* Boxy design in image */
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.car-img-wrapper {
    position: relative;
    background-color: #E9ECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

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

.car-price-badges {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    gap: 7px;
}

.car-price-badges .current-price {
    font-size: 1.1rem;
    color: var(--black) !important;
}

.car-price-badges .tax-badge {
    background-color: #28a745 !important;
    /* Green */
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.car-model-label {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.car-name {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 600;
}

.car-name a {
    color: var(--black);
    text-decoration: none;
}

.car-specs {
    margin-top: 15px;
}

.spec-label {
    letter-spacing: 0.5px;
    font-size: 1rem;
    color: #919191;
    font-weight: 500;
}

.spec-value {
    letter-spacing: 0.5px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

@media (max-width: 767.98px) {
    .featured-header {
        text-align: center;
        justify-content: center !important;
    }

    .header-left p br {
        display: none !important;
    }

}

/* Why Choose Us Section Styles */
.why-choose-us {
    overflow: hidden;
}

.choose-us-content {
    background-color: #0B1A31;
    padding: 80px 100px;
}

.why-choose-us h3 {
    font-size: clamp(2rem, 2.3vw, 2.3rem);
}

.choose-us-content h2 {
    font-size: clamp(2rem, 2.4vw, 2.4rem);
    letter-spacing: -1px;
    margin-top: 50px;
    font-weight: 600;
}

.choose-us-content p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 28px;
    color: var(--white);
}

.choose-us-content h4 {
    font-size: clamp(1.2rem, 1.3vw, 1.3rem);
    font-weight: 600;
    color: var(--white);
}

.contact-pill {
    width: 48px;
    height: 48px;
    justify-content: center;
}

.service-icon i {
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon i {
    transform: rotate(45deg);
}

.play-btn-wrapper .btn-primary {
    transition: all 0.3s ease;
}

.play-btn-wrapper .btn-primary:hover {
    background-color: var(--white);
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.top-contact-bar {
    background: var(--primary);
    padding: 31px 40px;
    margin-bottom: -76px;
    position: relative;
    z-index: 9;
}


.why-choose-us .contact-info span {
    font-size: clamp(0.9rem, 1vw, 1rem);
    font-weight: 600;
}

.why-choose-us .contact-info h5 {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 600;
    margin-top: 10px;
}

.service-icon {
    background: var(--secondary);
}

@media (max-width: 991.98px) {
    .top-contact-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-info {
        text-align: center !important;
    }

    .choose-us-image {
        min-height: 400px !important;
    }

    .choose-us-content {
        padding: 60px 20px !important;
    }
}


.testimonials {
    padding-bottom: clamp(3.5rem, 5vw + 1rem, 6rem);
}

.testimonials .section-title {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Marquee Container Styles */
.marquee-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.marquee-row {
    display: flex;
    gap: 20px;
    width: max-content;
}

/* Animation durations and directions */
.marquee-rtl {
    animation: marquee-rtl 40s linear infinite;
}

.marquee-ltr {
    animation: marquee-ltr 40s linear infinite;
}

.marquee-container:hover .marquee-rtl,
.marquee-container:hover .marquee-ltr {
    animation-play-state: paused;
}

.testimonial-item {
    width: 400px;
    flex-shrink: 0;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    color: #141414;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-footer {
    border-top: 1px solid #F3F4F6;
    padding-top: 20px;
}

.location-badge {
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    border-radius: 30px;
    border: 1px solid rgba(20, 20, 20, 0.10);
    background: rgba(20, 20, 20, 0.04);
    opacity: 0.8;
}

.verified-icon {
    color: #039BE5;
    font-size: 14px;
    margin-left: 5px;
}

.google-logo-svg {
    width: 24px;
    height: 24px;
}

.testimonial-card .stars {
    display: flex;
}

.client-name {
    color: #141414;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

/* Keyframes */
@keyframes marquee-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(calc(-50% - 10px));
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        width: 320px;
    }
}



/* FAQ Section Styles */
.faq {
    padding-bottom: clamp(3.5rem, 5vw + 1rem, 6rem);
}

.faq .section-title {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.custom-accordion .accordion-item {
    border-radius: 20px;
    border: 1px solid #8C9787;
    background: #FFF;
    box-shadow: 30px 30px 250px 0 #EDF7E9;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 16px !important;
    box-shadow: 30px 30px 250px 0 #EDF7E9;
}

.custom-accordion .accordion-button {
    background-color: var(--white);
    color: var(--black);
    font-size: clamp(1.1rem, 0.5vw + 1rem, 1.25rem);
    font-weight: 700;
    padding: 24px 30px;
    box-shadow: none !important;
    border-radius: 16px !important;
    line-height: 138%;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--black);
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 0 90px 24px 30px;
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 148%;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b";
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #38424D;
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-color: #31353C;
    transform: rotate(0deg);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

/* Footer Styles */
.site-footer {
    background: url('../images/footer-bg.jpg') no-repeat center center;
    background-size: cover;
    color: var(--black);
    padding: 50px 0 40px;
}

.footer-desc {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 144%;
    max-width: 398px;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 144%;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--black);
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-hours li {
    font-size: 16px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 12px;
}


.footer-contact-bar .border-gradient {
    width: 100%;
    height: 1px;
    display: block;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.1),
            transparent);
}

.contact-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
}

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

.contact-label {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.contact-value {
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.2);
}

.copyright-text {
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.footer-contact-bar .row {
    padding: 50px 0 !important;
}

.bottom-text {
    margin-top: 37px;
}

.removal-across-brisbane {
    background: url(../images/hav-inqueries-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 100px;
    height: auto;
}

.removal-across-brisbane h3 {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 98%;
    margin-bottom: 23px;
}

.enquiry-form {
    padding: 40px 50px;
    color: #fff;
}

/* Filter page start here */

/* Inner Page Hero Section Styles */
.inner-page-hero {
    position: relative;
    height: 400px;
    background: url(../images/inner-page-banner.jpg) no-repeat center center;
    background-size: cover !important;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inner-breadcrumb {
    margin-bottom: 1rem;
}

.inner-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.inner-breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary);
}

.inner-breadcrumb .breadcrumb-item.active {
    color: var(--white);
}

.inner-breadcrumb .breadcrumb-separator {
    color: var(--white);
    font-size: 14px;
    list-style: none;
}

.inner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.inner-page-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .inner-page-hero {
        height: 300px;
    }

    .inner-page-title {
        font-size: 2rem;
    }

    .inner-breadcrumb .breadcrumb-item,
    .inner-breadcrumb .breadcrumb-separator {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .inner-page-hero {
        height: 250px;
    }

    .inner-page-title {
        font-size: 1.75rem;
    }
}

/* Car Listing Section Styles */
.car-listing-section {
    background-color: #F8F8F8;
    padding: clamp(4rem, 6vw, 6rem) 0;
    margin-bottom: clamp(4rem, 6vw, 6rem);
}

/* Filters Sidebar Styles */
.filters-sidebar {
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.filters-header {
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.filters-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D3142;
}

.clear-all-link {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.clear-all-link:hover {
    color: var(--secondary);
}

.filter-item {
    border-bottom: 1px solid #E5E5E5;
}

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

.filter-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    color: #2D3142;
    text-align: left;
}

.filter-toggle:hover {
    color: var(--secondary);
}

.filter-toggle .filter-icon {
    font-size: 18px;
    color: #6B7280;
    transition: color 0.3s ease;
}

.filter-toggle:hover .filter-icon {
    color: var(--secondary);
}

.filter-toggle span {
    flex: 1;
}

.filter-toggle .chevron-icon {
    font-size: 12px;
    color: #6B7280;
    transition: transform 0.3s ease;
}

.filter-toggle:not(.collapsed) .chevron-icon {
    transform: rotate(180deg);
}

.filter-content {
    padding: 0;
}

.filter-body {
    padding: 0;
}

.filter-body .form-control {
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    padding: 10px 40px 10px 14px;
    font-size: 14px;
}

.filter-body .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
}

/* Listing Header Styles */
.listing-breadcrumb {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 8px;
}

.listing-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #2D3142;
}

.listing-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 0;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 14px;
    font-weight: 500;
    color: #2D3142;
    margin-bottom: 0;
    white-space: nowrap;
}

.sort-select {
    width: auto;
    min-width: 180px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    padding: 8px 36px 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #2D3142;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 12px;
}

.sort-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
}

/* Car Grid Styles */
.car-grid {
    margin-top: 32px;
}

/* Car Card Styles */
.car-card {
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #D1D5DB;
}

.car-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #F3F4F6;
    overflow: hidden;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.favorite-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.favorite-btn:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.favorite-btn i {
    font-size: 18px;
    color: #6B7280;
    transition: color 0.3s ease;
}

.favorite-btn:hover i {
    color: var(--black);
}

.car-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.car-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3142;
    margin-bottom: 4px;
    line-height: 1.3;
}

.car-card-variant {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-card-specs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.spec-item {
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
}

.spec-separator {
    font-size: 14px;
    color: #D1D5DB;
}

.car-card-price-section {
    margin-top: auto;
}

.car-card-price {
    font-size: 28px;
    font-weight: 700;
    color: #2D3142;
    margin-bottom: 8px;
    line-height: 1;
}

.car-card-estimate {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 0;
    line-height: 1.5;
}

.car-card-estimate strong {
    color: #2D3142;
    font-weight: 600;
}

.info-icon {
    font-size: 12px;
    color: #9CA3AF;
    margin-left: 4px;
    cursor: help;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .listing-description br {
        display: none;
    }

    .sort-wrapper {
        width: 100%;
        justify-content: space-between;
    }

    .sort-select {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .listing-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .sort-wrapper {
        width: 100%;
        margin-top: 16px;
    }

    .sort-select {
        max-width: 100%;
    }

    .car-card-image {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .filters-sidebar {
        padding: 20px;
    }

    .car-card-image {
        height: 180px;
    }

    .car-card-body {
        padding: 16px;
    }

    .car-card-price {
        font-size: 24px;
    }
}

.fa-search.filter-icon {
    position: absolute;
    right: 15px;
    top: 14px;
}

.search-box {
    position: relative;
}

/* Our Story Section Styles */
.our-story {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background-color: var(--white);
}

.story-image-grid {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.story-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image positioning */

.story-content {
    padding-left: clamp(1rem, 1vw, 1rem);
}

.story-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 20px;
}

.story-description:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {

    .story-content {
        padding-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {

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

    .story-description {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .story-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .story-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Who We Are Section Styles */
.who-we-are {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background-color: var(--white);
}

.who-we-are-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.who-we-are-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.who-we-are-image-wrapper {
    position: relative;
    border-radius: 0;
}

.who-we-are-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.who-we-are-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 60px 40px 40px;
}

.overlay-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
}

.who-we-are .container-fluid {
    padding: 0 70px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .who-we-are-overlay {
        padding: 50px 30px 30px;
    }

    .overlay-text {
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {
    .who-we-are-title {
        font-size: 2rem;
    }

    .who-we-are-subtitle {
        font-size: 15px;
    }

    .who-we-are-subtitle br {
        display: none;
    }

    .who-we-are-overlay {
        padding: 40px 25px 25px;
    }

    .overlay-text {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .who-we-are-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .who-we-are-subtitle {
        font-size: 14px;
    }

    .who-we-are-overlay {
        padding: 30px 20px 20px;
    }

    .overlay-text {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* What We Specialize In Section Styles */
.what-we-specialize {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background-color: #0B1A31;
    margin-bottom: clamp(4rem, 6vw, 6rem);
}

.specialize-content {
    padding-right: clamp(1rem, 2vw, 2rem);
}

.specialize-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.specialize-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.specialize-features {
    color: var(--white);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 23px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: var(--white);
    font-size: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.specialize-additional-content {
    padding-top: 30px;
}

.additional-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.additional-text:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .specialize-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .feature-list {
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .specialize-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .specialize-description {
        font-size: 15px;
    }

    .feature-item {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .additional-text {
        font-size: 14px;
    }

    .specialize-additional-content {
        padding-top: 25px;
    }
}

@media (max-width: 575.98px) {
    .specialize-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .specialize-description {
        font-size: 14px;
    }

    .feature-item {
        font-size: 14px;
        gap: 10px;
        margin-bottom: 14px;
    }

    .feature-icon {
        font-size: 10px;
        margin-top: 5px;
    }

    .additional-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .specialize-additional-content {
        padding-top: 20px;
    }
}

.what-we-specialize .container-fluid {
    padding: 0 70px;
}

/* Our Process Section Styles */
.our-process {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background-color: var(--white);
}

.process-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
    line-height: 1.2;
}

.process-step {
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

.step-title {
    font-size: 23px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 0;
}

.btn-process-cta {
    background-color: #008000;
    color: var(--white);
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-process-cta:hover {
    background-color: #006600;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
}

.process-bottom-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .process-step {
        margin-bottom: 30px;
    }

    .step-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .process-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .step-description {
        font-size: 15px;
    }

    .btn-process-cta {
        padding: 12px 32px;
        font-size: 15px;
    }

    .process-bottom-text {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .process-title {
        font-size: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .btn-process-cta {
        padding: 12px 28px;
        font-size: 14px;
    }

    .process-bottom-text {
        font-size: 15px;
    }

    .what-we-specialize .container-fluid {
        padding: 0 20px;
    }

    .process-step {
        padding: 0;
        margin-bottom: 0;
    }

    .process-title {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .our-process .col-12.text-center.mb-5 {
        margin-bottom: 2rem !important;
    }

    .who-we-are .container-fluid {
        padding: 0 20px;
    }

    .who-we-are-image-wrapper img {
        height: 500px;
        object-fit: cover;
    }
}

/* contact page about Section Styling  */
.contact-section {
    background: url('../images/contact.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 493px;
}

.contact-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

.breadcrumb-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact {
    margin: clamp(4rem, 6vw, 6rem) 0;
}

.contact-page-sm-des h2 {
    color: #000;
    font-family: var(--font-volkov);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 106%;
    margin-bottom: 19px;
}

.contact-page-sm-des {
    max-width: 484px;
    width: 100%;
    padding: 38px 37px 36px 37px;
    border-radius: 18px;
    background: linear-gradient(180deg, #FFED84 0%, #FFFBF5 113.52%);
}

.contact-info-card {
    display: flex;
    padding: 40px 43px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 24px;
    border: 1px solid #A6D5A6;
    background: #FFF;
}

.contact-info-card span {
    color: #000;
    text-align: center;
    font-family: var(--font-opensans);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 106%;
}

.contact-info-card a {
    height: 54px;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-family: var(--font-opensans);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%;
}

.contact-page-bootom-content {
    margin-top: 20px;
}

.contact-card {
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 568px;
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #FFF;
}

.contact-page h2 {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}

.contact-page h3 {
    font-size: clamp(2rem, 2vw, 2rem);
    color: var(--black);
    font-weight: 600;
    margin-bottom: 2rem;
}



.blog-banner-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

.breadcrumb-text {
    color: var(--white);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 991.98px) {

    section.blog-banner-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }
}

@media (max-width: 575px) {
    section.blog-banner-title {
        padding-top: 8rem;
    }


}

/* Blog page about Section Styling end */
.blog-block {
    margin: clamp(4rem, 6vw + 1rem, 6rem) 0;
}

.blog--card {
    border-radius: 12px;
    border: 1px solid rgba(38, 99, 65, 0.10);
    padding: 0px;
    margin-bottom: 36px;
    transition: all 0.3s ease-in-out;
}

.blog--card:hover {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 32px 24px;
}

.blog-card-content h5 {
    color: var(--black);
    font-family: var(--font-opensans);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 18px;
    margin-bottom: 14px;
}

a.blog-btn {
    color: #F57F2A;
    font-family: var(--font-opensans);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blog-card-img img {
    width: 100%;
    border-radius: 0px 0px 12px 12px;
}

.form-select:focus {
    border-color: #F5F7F6;
    outline: 0;
    box-shadow: none;

}

.blog-detail-right select.form-select {
    display: flex;
    padding: 18px 16px;
    justify-content: center;
    align-items: center;
    gap: 218px;
    border-radius: 7px;
    background: #F5F7F6;
    background: url(../images/dropdown-arrow.png) no-repeat 95% 25px;
    appearance: none;
    background-size: 14px;
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 36px 12px 14px;
    border: 1px solid #cfd8d3;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    color: #000;
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.search-input::placeholder {
    color: #666;
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}









/* Blog detail page about Section Styling  */
.blog--detail--us-banner {
    background: url('../images/blog-detail.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 644px;
}

.blog-banner-detail-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
    margin-bottom: 100px !important;
}

.breadcrumb-text {
    color: var(--white);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g-n {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.b-t-h {
    color: var(--Black, #141414);
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 119%;
    /* 38.08px */
}

ul.blog-detail-ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.d-flex.blog-detail--n {
    border-radius: 8px;
    background: #F7F7F7;
    padding: 15px;
    align-items: center;
    gap: 15px;
}

.d-flex.blog-detail--n img {
    width: 61px;
    height: 61px;
    max-width: 61px;
    object-fit: cover;
}

.d-flex.blog-detail--n {
    gap: 15px;
}

.blog-detail--n span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-detail--n p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 991.98px) {

    section.blog-banner-detail-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }
}

@media (max-width: 575px) {
    section.blog-banner-detail-title {
        padding-top: 8rem;
    }


}

.blog--detail-block {
    margin: clamp(4rem, 6vw + 1rem, 6rem) 0;
}


/* Car Detail Section Styles */
.car-detail-block {
    padding: 60px 0;
    background-color: #fff;
}

.car-slide-item img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

.car-detail-nav-slider .car-nav-item {
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.car-detail-nav-slider .car-nav-item img {
    border-radius: 6px;
}

.car-detail-nav-slider .slick-current .car-nav-item {
    border-color: var(--primary);
}

.car-detail-content {
    padding-left: 20px;
}

.car-title {
    font-size: 28px;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0;
}

.action-icons a {
    color: #555;
    font-size: 20px;
    transition: color 0.3s;
}

.action-icons a:hover {
    color: var(--primary);
}

.rating-box {
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.rating-box .stars {
    color: #333;
    margin-right: 5px;
}

.rating-box .stars i {
    color: #FFB800;
    font-size: 12px;
}

.rating-box .review-count {
    color: #666;
    font-weight: 400;
    font-size: 13px;
    border-left: 1px solid #ddd;
    padding-left: 8px;
}

.rate-win-badge {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: #333;
    background-color: #fff;
}

.car-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.car-description .read-more {
    color: #666;
    text-decoration: underline;
    font-size: 13px;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-block .currency {
    font-size: 20px;
    font-weight: 600;
    color: #141414;
}

.price-block .price-range {
    font-size: 24px;
    font-weight: 700;
    color: #141414;
}

.get-on-road-price {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.get-on-road-price:hover {
    text-decoration: underline;
}

.ex-showroom-text {
    font-size: 12px;
    color: #888;
}

.compare-link {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.compare-link:hover {
    text-decoration: underline;
}

.btn-buy-now {
    background-color: #008000;
    /* Green color from design */
    color: #fff;
    padding: 10px 40px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-buy-now:hover {
    background-color: #006400;
    color: #fff;
}

.festive-offer {
    color: #666;
    font-size: 13px;
    margin-top: 15px;
}

/* Key Specifications Section Styles */
.key-specs-block {
    padding: 0 0 60px 0;
    background-color: #fff;
}

.specs-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.specs-title {
    font-size: 20px;
    font-weight: 700;
    color: #141414;
}

.specs-tabs {
    border-bottom: 1px solid #e0e0e0;
}

.specs-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 500;
    padding: 10px 20px;
    background: transparent;
    position: relative;
    font-size: 15px;
}

.specs-tabs .nav-link:hover {
    color: #333;
    border: none;
}

.specs-tabs .nav-link.active {
    color: #141414;
    background: transparent;
    font-weight: 600;
}

.specs-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF5722;
    /* Orange color from design */
    border-radius: 3px 3px 0 0;
}

.spec-item {
    padding: 10px 0;
}

.spec-label {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.spec-label i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.spec-value {
    color: #141414;
    font-size: 14px;
    font-weight: 600;
}

.view-all-specs {
    color: #FF5722;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.view-all-specs:hover {
    text-decoration: underline;
    color: #E64A19;
}

.car-contact-form .form-control {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFDFC;
    height: 51px;
    margin-bottom: 0;
    padding: .375rem 1rem;
}

.car-contact-form .form-control::placeholder {
    color: rgba(0, 0, 0, 1);
    opacity: 1;
}

textarea.form-control {
    min-height: inherit;
    height: 150px !important;
    padding: 0.8rem 1rem !important;
}

.car-contact-form .form-control:focus {
    box-shadow: none;
}

.car-contact-form .btn.btn-primary {
    padding: 17px 38px;
    width: 100%;
    box-shadow: none;
}

.car-contact-form {
    color: #000;
}

.car-contact-form p {
    margin-bottom: 0;
    text-align: left;
}

.car-contact-form .wpcf7-not-valid-tip {
    margin-bottom: 6px;
}

.car-contact-form .wpcf7 form .wpcf7-response-output {
    margin: 0 0 17px;
}

.car-contact-form label {
    color: #fff;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
}

.blog-card-img img {
    height: 250px;
    object-fit: cover;
}

.blog-card-content h5 {
    min-height: 90px;
}

.car-listing-section {
    padding-left: 40px;
    padding-right: 40px;
}

.car-listing-section .car-price-badges {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 350px;
    left: 0 !important;
    right: 0 !important;
}

.action-icons {
    display: none;
}

.inner-breadcrumb .breadcrumb {
    gap: 3px;
}

.page-template-cars-page-template .featured-header {
    display: none !important;
}

.page-template-cars-page-template .car-price-badges {
    left: 20px;
}

.blog--detail-block h3 {
    font-size: clamp(1.6rem, 1.9vw, 1.9rem);
}

.blog--detail-block h2 {
    font-size: clamp(1.8rem, 2vw, 2rem);
}


input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}
#ajaxsearchlite1 .probox .proinput, div.asl_w .probox .proinput {
    margin-top: -3px !important;
	font-size: 16px !important;
}
div.asl_m .probox .proinput input {
	font-size: 16px !important;
}
.search-overlay-content h3 {
	color:#fff !important;
}
#ajaxsearchlite1 .probox, div.asl_w .probox {
    height: 35px !important;
}
div.asl_w .probox .proloading, div.asl_w .probox .proclose, div.asl_w .probox .promagnifier, div.asl_w .probox .prosettings {
    margin-top: 4px !important;
}