/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
/*

font-family: "Noto Serif", serif;
font-family: "Hind Siliguri", sans-serif;

*/

:root {
    --theme: 34, 139, 230;
    --themeDeep: 16, 107, 199;

    --transition: all 0.4s ease-in-out;

    --FFNatoSerif: "Noto Serif", serif;
    --FFHindSiliguri: "Hind Siliguri", sans-serif;
}

/*************************
    Common Style Start
*********************** */
body {
    color: #0a2237;
    font-family: var(--FFHindSiliguri);
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;

    overflow-x: hidden;
    background-color: #e4ecf0;
}

@media (min-width: 1400px) {
    body {
        margin: 0 50px;
    }
}

@media (min-width: 1399px) {
    body {
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    .flex-direction-lg-row-reverse {
        flex-wrap: wrap-reverse !important;
    }
    
    .w-130-mx-991 {
        max-width: 130px;
    }
}

@media (min-width: 992px) {
    .border-lg {
        border: 1px solid #dee2e6;
    }
}

::selection {
    color: #fff;
    background: rgb(var(--theme));
}

/* Section */
.section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.section-title {
    font-size: 68px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 72px;
    text-transform: none;
    font-family: var(--font-FFNatoSerif);
}

/* @media (min-width: 992px) {
    .section-title {
        margin-top: 40px;
    }
} */

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 16px;
        /* margin-top: 32px; */
    }
}

@media (max-width: 1199px) {
    .section {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 52px;
        line-height: 52px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 42px;
        line-height: 52px;
    }

    .section-des {
        font-size: 24px;
    }

    .section-sub-title {
        font-size: 26px;
        margin-bottom: 5px;
    }
}

.section-sub-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.2px;
    line-height: 32px;
    text-transform: none;
    margin-bottom: 12px;
    font-family: var(--FFHindSiliguri);
}

.section-des {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 24px;
    text-transform: none;
    font-family: var(--font-FFHindSiliguri);
}

@media (max-width: 767px) {
    .section-des {
        line-height: 32px;
    }
}

.body-bg {
    background-color: #e4ecf0;
}

.theme-color {
    color: rgb(var(--theme));
}

.theme-bg {
    background-color: rgb(var(--theme));
}

.fs-12 {
    font-size: 12px;
}

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

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

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

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

.lh-22 {
    line-height: 22px;
}

.h-15 {
    height: 15px;
}

.h-32 {
    height: 32px;
}

.wishlist {
    top: 5px;
    left: 5px;
}

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

/* Position */
.left--5 {
    left: -5px;
}

/* Theme Button */
.theme-btn {
    color: #ffffff;
    transition: 0.4s all ease-in-out;
    background-color: rgb(var(--theme));
}

.theme-btn:hover {
    color: #ffffff;
    transition: 0.4s all ease-in-out;
    background-color: rgba(var(--theme), 0.9);
}

.theme-btn:focus {
    color: rgb(var(--theme)) !important;
    border: 1px solid rgb(var(--theme));
    background-color: #ffffff;
}

.theme-btn-outline {
    color: rgb(var(--theme)) !important;
    border: 1px solid rgb(var(--theme));
    background-color: transparent;

}

.theme-btn-outline:hover {
    color: #ffffff !important;
    border: 1px solid rgb(var(--theme));
    background-color: rgb(var(--theme));
}

.theme-btn-outline:focus {
    color: rgb(var(--theme)) !important;
    border: 1px solid rgb(var(--theme));
    background-color: #ffffff;
}

/* Show More / Less Content */
.show-content {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.show-content.expanded {
    max-height: 1000px;
}

.show-toggle-btn {
    color: rgb(var(--theme));
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    border: 0;
    background: transparent;
    margin: 0;
    padding: 0;
}

.show-toggle-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.show-toggle-btn.expanded .arrow {
    transform: rotate(180deg);
}

/* Cusotom Radio Btn (Option cards) */
.option-card {
    padding: 15px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.option-card:hover {
    border-color: var(--theme-color);
}

.option-card.selected {
    border-color: var(--theme-color);
    background: rgba(62, 106, 225, 0.05);
}

.option-card .option-title {
    font-weight: 600;
    margin-left: 25px;
}

.option-card .option-price {
    color: var(--theme-color);
    font-weight: 600;
}

/* Hide the default radio button */
.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom radio button */
.option-card input[type="radio"]+.option-title:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background-color: white;
}

/* Custom radio button checked state */
.option-card input[type="radio"]:checked+.option-title:before {
    border-color: rgb(var(--theme));
    background-color: white;
}

.option-card input[type="radio"]:checked+.option-title:after {
    content: "";
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(var(--theme));
}

/* Offcanvas */
.offcanvas {
    width: 300px !important;
}

#navbarWishlist .tab-pane img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

/* Navbar */
.navbar .logo {
    height: 60px;
    width: 100%;
    object-fit: contain;
}

.navbar .nav-link {
    font-weight: 400;
    margin-right: 5px;
    background-color: transparent;
    transition: 0.4s all ease-in-out;
}

.navbar .nav-link:hover {
    background-color: #dbdbdb;
    /* background-color: red; */
    transition: 0.4s all ease-in-out;
}

.navbar .nav-link.active {
    background-color: #dbdbdb;
    /* background-color: red; */
    transition: 0.4s all ease-in-out;
}

.navbar .nav-link svg {
    margin-right: 5px;
}

.navbar .user-icon {
    width: 30px;
    height: 30px;
    background-color: #dbdbdb;
    transition: 0.4s all ease-in-out;
}

.navbar .ms-auto .nav-link {
    margin-right: 0;
}

.navbar .ms-auto .nav-link svg {
    margin-right: 0;
}

.navbar .wishlist {
    height: 48px;
    width: 48px;
}

.navbar .right-btns:hover .user-icon {
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .navbar ul.text-menu .nav-item {
        margin-bottom: 5px;
    }

    .navbar ul.icon-menu {
        display: ruby;
    }
}

/* Hero Section - Start */
.hero {
    padding: 40px 0;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../assets/images/blue_hero.svg);
}

.hero h1 {
    /* margin-top: -40px; */
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
}

.search-box {
    /* max-width: 800px; */
    position: relative;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 15px;
    color: #6c757d;
    z-index: 10;
}

#searchInput {
    padding-left: 45px;
    padding-right: 100px;
    height: 60px;
    font-size: 18px;
    border-radius: 8px;
}

.go-button {
    position: absolute;
    right: 5px;
    height: 50px;
    width: 80px;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.4s all ease-in-out;
    background-color: rgb(var(--theme));
}

.go-button:hover {
    background-color: rgb(var(--themeDeep));
}

.suggestion-box {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    border-radius: 8px;
    padding: 20px;
}

.vehicle-item {
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transform: translateY(0);
    border: 1px solid #f1f1f1;
    transition: 0.4s all ease-in-out;
}

.vehicle-item:hover {
    transform: translateY(-3px);
    background-color: #f0f8ff;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.vehicle-item img {
    width: 170px;
    height: auto;
    object-fit: contain;
}

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

.trending-models a,
.recommended a {
    font-size: 14px;
    color: #0a2237;
    transition: 0.4s all ease-in-out;
}

.trending-models a:hover,
.recommended a:hover {
    background-color: #f0f8ff;
    border: 1px solid #f0f8ff !important;
}

.hr-ad-banner img {
    height: 100px;
    width: 200px;
    object-fit: cover;
    object-position: center;
}

.hr-ad-banner a {
    color: #0a2237;
}

@media (max-width: 767px) {
    .hr-ad-banner {
        text-align: center;
    }

    .hr-ad-banner img {
        height: 150px;
        width: 100%;
        margin-bottom: 15px;
    }
}

/* Hero Section - End */

/* Link Cards - Start */
.link-cards {
    top: -50px;
    position: relative;
}

.suggested-vehicles img {
    width: auto;
    height: 90px;
    object-fit: cover;
}

.suggested-vehicles a {
    color: #0a2237;
}

.suggested-vehicles a .arrow {
    color: rgb(var(--theme));
    transform: translateX(0);
    transition: 0.4s all ease-in-out;
}

.suggested-vehicles a:hover .arrow {
    transform: translateX(4px);
}

.suggested-vehicles .items a:last-child {
    margin-bottom: 0 !important;
}

.suggested-searches a {
    font-size: 14px;
    color: #0a2237;
    transition: 0.4s all ease-in-out;
}

.suggested-searches a:hover {
    background-color: #f0f8ff;
    border: 1px solid #f0f8ff !important;
}

.suggested-searches img {
    height: 24px;
    width: auto;
    margin-right: 5px;
    object-fit: contain;
}

.finance-card {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../assets/images/finance-bg.webp);
}

.st-card {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../assets/images/stc-bg.webp);
}

/* Link Cards - End */

/* Swiper Slider - Start */
.main-slider {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.main-slider .swiper-slide img,
.main-slider .swiper-slide iframe,
.main-slider .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider,
.main-slider .swiper-slide iframe,
.main-slider .swiper-slide video {
    height: 650px;
}

.thumb-slider {
    margin-top: 20px;
}

.thumb-slider .swiper-slide {
    width: 140px;
    height: 80px;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #007bff;
}

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

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgb(0 0 0 / 50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.swiper-button-next, .swiper-button-prev {
    display: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.main-slider.show-arrows .swiper-button-next,
.main-slider.show-arrows .swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-slider .swiper-button-prev:after,
.vehicle-slider .swiper-rtl .swiper-button-next:after {
    transform: scale(0.5) translateX(-4px);
}

.vehicle-slider .swiper-button-next:after,
.vehicle-slider .swiper-rtl .swiper-button-prev:after {
    transform: scale(0.5) translateX(4px);
}

@media (max-width: 991px) {
    .main-slider,
    .main-slider .swiper-slide iframe,
    .main-slider .swiper-slide video {
        height: 250px;
    }

    .video-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
/* Swiper Slider - End */

/* Affordable Cars - Start */
.affordable-cars a {
    font-size: 16px;
    color: #0a2237;
}

.affordable-cars svg {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.info-card img {
    height: 230px;
    width: auto;
    object-fit: cover;
}

.hr-card-banner {
    border: 1px solid #c6c6c6 !important;
}

.hr-card-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../assets/images/hr-card-banner-bg.svg');
}

.hr-card-banner img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.hr-card-banner .half-circle {
    width: 200px;
    height: 200px;
    display: flex;
    color: #fff;
    margin-left: -50px;
    padding-left: 35px;
    margin-right: 40px;
    align-items: center;
    justify-content: center;
    background-color: #2f9e44;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.hr-card-banner .half-circle svg {
    height: 50px;
    stroke: #ffffff;
}

@media (max-width: 991px) {
    .hr-card-banner .half-circle {
        width: 100px;
        height: 100px;
        margin-left: 0;
        padding-left: 0;
        margin-right: 0;
        border-radius: 50%;

        top: -35px;
        left: -35px;
        position: absolute;
    }

    .hr-card-banner .half-circle svg {
        height: 20px;
        position: relative;
        top: 12px;
        left: 12px;
    }
}

/* .hr-card-banner .half-circle {
    border-radius: ;
} */
/* Affordable Cars - End */

/* Shop Popular Models - Start */
.model-card {
    /* background: #f4f8fa; */
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.model-card .card {
    padding: 20px;
    background: #f4f8fa !important;
}

.model-card img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-title {
    font-weight: bold;
    color: #00274d;
    margin-bottom: 15px;
}

/* Links - Start */
.links a {
    color: #8a8d9c;
    font-size: 14px;
}

/* Links - End */

/* Vehicles Product Card - Start */
.vehicle-card {
    position: relative;
}

.vehicle-card .wishlist-btn {
    top: 5px;
    right: 5px;
    font-size: 22px;
}

.vehicle-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.vehicle-card .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
}

.vehicle-card .card-text {
    height: 18px;
    display: flex;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 300;
    align-items: center;
}

.vehicle-card .price {
    font-weight: 600;
    color: #2f9e44;
}

.vehicle-card .price sub {
    bottom: 0;
    color: #808080;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    position: relative;
}

/* Vehicles Product Card - End */

/* More Suggested Vehicles - Start */
.more-suggested-vehicle {}

/* More Suggested Vehicles - End */

/* CTA Section Start */
.cta-section {
    color: #2c2c2c;
    padding: 60px 0;
}

/* CTA Section End */

/* About US Section Start */
.about-hero {
    background-image: url('./assets/images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 97, 158, 0.8);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.mission-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #00619E;
    margin-bottom: 15px;
}

.values-section {
    background-color: rgba(0, 97, 158, 0.8);
    color: white;
    padding: 60px 0;
}

.value-card {
    background-color: white;
    color: #00619E;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #00AED9;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #00619E;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #00619E;
    border: 3px solid white;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 20px;
}

.testimonial-role {
    color: #6c757d;
    font-size: 0.9rem;
}

/* About US Section End */

/* Services Section Start */
.service-item-list .service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background: #fff;
}

.service-item-list .service-card:hover {
    transform: translateY(-5px);
}

.service-item-list .service-img-container .overlay-link {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.service-item-list .service-img-container {
    padding: 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 100%;
    width: 100%;
    background-color: #1b1919;
}

.service-item-list .service-img-container .wishlist-btn {
    right: 10px;
    top: 10px;
    font-size: 26px;
}

.service-item-list .service-content {
    padding: 20px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.service-item-list .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-item-list .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.service-item-list .feature-list li {
    font-size: 16px;
    color: #1b1919;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-item-list .feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: rgb(var(--theme));
}

.service-item-list .price {
    font-size: 32px;
    font-weight: 600;
}

.service-item-list .price sub {
    bottom: 0;
    font-size: 14px;
    color: #a7a7a7;
    font-weight: 600;
}

.service-item-list .down-price {
    font-size: 14px;
    color: #8f8f8f;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .service-item-list .service-card:hover {
        transform: translateY(0);
    }

    .service-item-list .service-card {
        position: relative;
        padding: 0;
        margin-bottom: 20px;
        display: block;
    }

    .service-item-list .service-img-container {
        min-height: 400px;
    }

    .service-item-list .feature-list li {
        color: #ffffff;
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 25px;
    }

    .service-item-list .down-price {
        font-size: 14px;
        color: #c2c2c2;
    }

    .service-item-list .service-img-container .sm-content {
        bottom: 0;
        left: 0;
        right: 0;
        min-height: 150px;
        padding: 20px;
        background: linear-gradient(180deg, #00000025, #000000);
    }

    .service-item-list .service-img-container .service-title {
        color: #ffffff;
    }

    .service-item-list .service-content {
        padding: 0;
    }

    .service-item-list .service-content .btn {
        font-size: 14px;
        white-space: nowrap;
    }

    .service-item-list .sm-content .price {
        font-size: 26px;
        font-weight: 600;
        color: #ffffff;
    }

    .service-item-list .sm-content .service-title {
        margin-bottom: 0;
    }

    .service-item-list .sm-content .feature-list {
        margin-bottom: 5px;
    }

    .service-item-list .sm-content .feature-list {
        display: none;
    }
}

@media (max-width: 575px) {
    .service-item-list .service-content .btn {
        font-size: 12px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Services Section End */

/* Vegicle Details Page Start */
/* Breadcrumb */
.breadcrumb-container {
    padding: 5px 0;
    margin: 20px 0;
    background-color: #fff;
}

/* Sticky navigation */
.sticky-nav {
    top: 0;
    z-index: 1000;
    position: sticky;
    background: white;
    padding: 15px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-nav .nav-btn {
    background: transparent;
    border: none;
    color: #333;
    padding: 8px 15px;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 4px;
}

.sticky-nav .nav-btn:hover {
    color: rgb(var(--theme));
}

.sticky-nav .nav-btn.active {
    background: rgb(var(--theme));
    color: white;
}

/* Section styling */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Car specs styling */
/* .specs-list {
margin: 30px 0 15px 0;
} */

.specs-list li {
    list-style: none;
    text-align: center;
    flex: 1;
}

.specs-list .spec-value {
    font-size: 28px;
    font-weight: 600;
    display: block;
}

.specs-list .spec-label {
    font-size: 14px;
    color: #666;
    position: relative;
    top: -5px;
}

/* Finance tabs */
.finance-tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.finance-tabs .nav-link {
    color: #333;
    font-weight: 500;
    border: none;
    padding: 12px 20px;
    position: relative;
}

.finance-tabs .nav-link.active {
    background: transparent;
    color: rgb(var(--theme));
}

.finance-tabs .nav-link.active:after {
    content: '';
    left: 0;
    width: 100%;
    height: 2px;
    bottom: -1px;
    position: absolute;
    background: rgb(var(--theme));
}

/* Price summary */
.price-summary {
    background: #f9f9f9;
    padding: 20px;
    /* border-radius: 8px; */
}

.price-summary .total-price {
    margin: 5px 0;
    font-size: 24px;
    font-weight: 600;
}

/* Slick slider customization */
.slider-for img {
    width: 100%;
    height: auto;
}

.vechicle-details .vehicle-slider .slick-next {
    right: 30px;
}

.vechicle-details .vehicle-slider .slick-prev {
    left: 30px;
}

.vechicle-details .slick-dots {
    position: absolute;
    bottom: 25px;
}

/* Nav Tabs */
.finance-tabs .nav-link {
    font-size: 16px;
}

.finance-tabs .nav-link.active {
    border-bottom: 1px solid rgb(var(--theme)) !important;
}

.tab-content .tab-pane {
    /* padding-bottom: 210px; */
}

.price-summary {
    bottom: 0;
    left: 24px;
    right: 24px;
    padding: 20px;
    position: sticky;
    /* border-radius: 8px; */
    background: #f9f9f9;
}

.accordion-button svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.detail-label {
    font-size: 14px;
    color: #b8b8b8;
}

.all-features .card {
    color: #333 !important;
    transform: translateY(0);
    transition: 0.4s all ease-in-out;
}

.all-features .card:hover {
    color: rgb(var(--theme)) !important;
    transform: translateY(-3px);
}

/* Feature List */
.features-list {
    list-style: none;
    padding: 0;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-header {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-header svg {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.feature-items {
    list-style: none;
    padding-left: 2rem;
    margin: 0;
}

.feature-items li {
    margin-bottom: 0.25rem;
}

.feature-items .check-icon {
    color: rgb(var(--theme));
    margin-right: 0.5rem;
}

/* Responsive adjustments */
/* @media (min-width: 768px) {
        .sticky-container {
        overflow-y: auto;
        max-height: 100vh;
    }
} */

@media (max-width: 768px) {
    .sticky-nav .btn {
        font-size: 14px;
        padding: 4px 7px;
    }

    .specs-list li {
        margin-bottom: 20px;
    }
}

/* Vegicle Details Page End */

/* How it work */
.works-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.feature-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--dashwheelz-blue);
    margin-bottom: 20px;
}

/* Contact Us */
.contact-hero {
    background: linear-gradient(135deg, rgb(var(--theme)) 0%, rgb(var(--themeDeep)) 100%);
}

.icon-lg {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(10, 77, 163, 0.1);
    color: rgb(var(--theme));
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(10, 77, 163, 0.25);
}

/* Privecy Policy */
.privacy-policy-page {
    background-color: #f8f9fa;
}

.privacy-policy-page h2 {
    color: rgb(var(--theme));
}

.privacy-policy-page ul {
    padding-left: 1.5rem;
}

.privacy-policy-page li {
    margin-bottom: 0.5rem;
}

.privacy-policy-page address a {
    color: rgb(var(--theme));
    text-decoration: none;
}

.privacy-policy-page address a:hover {
    text-decoration: underline;
}

/* Terms & Service */
.terms-page {
    background-color: #f8f9fa;
}

.terms-page h2 {
    color: rgb(var(--theme));
}

.terms-page ul,
.terms-page ol {
    padding-left: 1.5rem;
}

.terms-page li {
    margin-bottom: 0.5rem;
}

.terms-page address a {
    color: rgb(var(--theme));
    text-decoration: none;
}

.terms-page address a:hover {
    text-decoration: underline;
}

/* Vehicle Payment Start */
.calculator-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.price-header {
    background-color: rgb(var(--theme));
    color: white;
    padding: 20px;
    text-align: center;
}

.price-header .product-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (max-width: 576px) {
    .price-header .product-name {
        font-size: 1.2rem;
    }
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
}

.original-price {
    opacity: 0.8;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.savings-badge {
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

.calculator-body {
    padding: 25px;
}

.downpayment-input-container {
    position: relative;
    margin-bottom: 20px;
}

.downpayment-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e0e0e0;
    outline: none;
    margin: 15px 0;
}

.downpayment-slider::-webkit-slider-thumb {
    margin-top: -7px;
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(var(--theme));
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.downpayment-slider::-moz-range-thumb {
    margin-top: -7px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(var(--theme));
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
}

.installment-display {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}

.installment-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(var(--theme));
}

.installment-term {
    color: #666;
    font-size: 0.95rem;
}

.price-summary {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.alert-custom {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-top: 5px;
}

.input-group-text-custom {
    background-color: #f8f9fa;
    font-weight: 600;
}

.form-control-custom {
    border-left: none;
    font-weight: 600;
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    color: #495057;
    font-weight: 600;
    border: none;
    padding: 12px 20px;
}

/* .nav-tabs .nav-link.active {
    color: rgb(var(--theme));
    background-color: transparent;
    border-bottom: 3px solid rgb(var(--theme));
} */

.nav-tabs .nav-link:hover:not(.active) {
    border-color: transparent;
    color: rgb(var(--theme));
}

.tab-content {
    padding: 20px 0;
}

@media (max-width: 576px) {
    .current-price {
        font-size: 1.8rem;
    }

    .original-price {
        font-size: 1rem;
    }

    .installment-amount {
        font-size: 1.5rem;
    }

    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

.downpayment-input:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

/* Vehicle Payment End*/

/* For OTP - Start */
.otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 1.2rem;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.otp-input:focus {
    border-color: rgb(var(--theme));
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(10, 77, 163, 0.25);
}

#phoneNumber:focus {
    outline: none;
    box-shadow: none;
    border-color: #dee2e6;
}

@media (max-width: 475px) {
    .otp-input {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin: 0 3px;
    }
}

@media (max-width: 300px) {
    #loginModal .modal-body {
        padding: 10px !important;
    }
}

/* For OTP - End */

/* Progress Steps */
.progress-steps .step-number {
    height: 40px;
    width: 40px;
}

/* Footer - Start */
.footer {
    background-color: #183153;
    /* Matching the dark blue background */
    color: #ffffff;
}

.footer-title {
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.footer-link {
    color: #ffffff;
    transition: 0.4s all ease-in-out;
}

.footer-link:hover {
    color: #8a8d9c;
    text-decoration: underline;
}

.footer-email {
    color: #bcd1e5;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

footer a i {
    color: #8a8d9c;
    transition: 0.4s all ease-in-out;
}

footer a:hover i {
    color: #ffffff;
}

/* Footer - End */