* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}
.cursor-pointer {
    cursor: pointer;
}
.brand_bg {
    background-color: #31547c;
}

.brand_text {
    color: #31547c;
}

p {
    margin: 0px !important;
}

a {
    text-decoration: none !important;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-thumb {
    background: #31547c;
    border: 2px solid #e0e0e0;
}

::-webkit-scrollbar-thumb:hover {
    background: #31547c;
}


/* top header css start */
.top_header {
    padding: 10px 0;
    background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
    color: #ffffff;
    font-size: 14px;
}

/* Right section (email + phone numbers) */
.top_header_right {
    display: flex;
    align-items: center;
}

.top_header_right p {
    margin: 0;
}

.top_header_right p a {
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top_header_right p a i {
    font-size: 14px;
}


.top_header_left span {
    font-size: 14px;
    margin-right: 8px;
    color: #ffffff;
}

.top_header_left a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 6px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.top_header_left a i {
    font-size: 14px;
}

.top_header_left a:hover {
    background-color: #3B5998;
    color: #ffffff;
}

.top_header_left a.insta:hover {
    background: linear-gradient(45deg,
            #feda75,
            #fa7e1e,
            #d62976,
            #962fbf,
            #4f5bd5);
    color: #ffffff;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0rem !important;
}

@media (max-width: 991px) {
    .top_header_right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .top_header_left {
        justify-content: center !important;
        margin-top: 8px;
    }
}


/* top header css end */


/* Navbar background & height */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-toggler-icon {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #000;
    position: relative;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: #000;
    left: 0;
}

.custom-toggler-icon::before {
    top: -8px;
}

.custom-toggler-icon::after {
    top: 8px;
}

.main_header {
    background-color: white;
}

.navbar {
    background-color: white;
    padding: 14px 0;
}

/* Logo fix */
.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
}

/* Menu alignment */
.cstm_nav {
    gap: 6px;
}

/* Nav link clean look (ACTIVE DESIGN NOT TOUCHED) */
.cstm_nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

/* Dropdown arrow spacing */
.nav-link.dropdown-toggle::after {
    margin-left: 6px;
    font-size: 12px;
}

/* Dropdown menu clean */
.dropdown-menu {
    border: none;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

/* Dropdown item spacing */
.dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
}

/* Browse offers button (same as image) */
.btn_3 {
    background-color: #002c5f;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    white-space: nowrap;
}

/* Button hover */
.btn_3:hover {
    background-color: #001e40;
}

/* Navbar container spacing */
.navbar .container-fluid {
    align-items: center;
}

/* ================= MOBILE FIX (NO DESIGN BREAK) ================= */

@media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .btn_3 {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}



/* popup css start */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.popup-content h2 {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 15px;
}

.form-row select,
.form-row input {
    width: 48%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;

}


/* popup css end */



/* carousel css start   */
.owl-theme .owl-dots .owl-dot span {
    display: none !important;
}

/* carousel css end   */


/* tab section css start  */


.about_card_content h4 {
    color: #31547c;
    font-weight: 700;
}

.about_card_content h4 span {
    color: #31547c;
    font-weight: 700;
    font-size: 16px !important;
}

.about_card_content small {
    color: #525252;
    font-size: 12px !important;
    margin-bottom: 16px;
}

.about_card_content small {
    color: #525252;
    font-size: 12px !important;
    margin-bottom: 16px;
}

.btn_1 {
    padding: 8px 18px;
    font-size: 14px !important;
    margin-top: 10px;
    background-color: #222;
    color: white;
    border: none;
    transition: 0.3s all;
    margin-bottom: 6px;
}

.btn_1:hover {
    background-color: #002c5f;
}

.btn_4 {
    padding: 8px 16px;
    font-size: 14px !important;
    margin-top: 10px;
    background-color: #002c5f;
    color: white;
    border: none;
    transition: 0.3s all;
    margin-bottom: 6px;
}

.btn_4:hover {
    background-color: #222;
}

.btn_2 {
    padding: 14px;
    font-size: 14px !important;
    margin-top: 10px;
    background-color: #222;
    color: white;
    border: none;
    transition: 0.3s all;
    margin-bottom: 6px;
}

.btn_2:hover {
    background-color: #002c5f;
}

.btn_3 {
    padding: 14px 16px !important;
    font-size: 14px !important;
    margin-top: 10px;
    background-color: #002c5f !important;
    color: white !important;
    border: none;
    transition: 0.3s all;
    margin-bottom: 6px;
    border-radius: 0px;
}

.btn_3:hover {
    background-color: #222 !important;
}

.about_card_content p a {
    color: #31547c;
    font-weight: 400;
    font-size: 14px;
}

.engin_content h5 {
    margin-bottom: 0;
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    .pickcar_heading {
        margin-top: 50px !important;
    }
}

/* ===== Tab navigation content ===== */
.tab-nav-bar {
    position: relative;
    margin: 30px 0px 40px 0px;
}

.tab-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    margin: 0 auto;
}

.tab-menu {
    color: #FFF;
    list-style: none;
    background-color: #222;
    max-width: 800px;
    padding: 10px;
    white-space: nowrap;
    border-bottom: 1px solid #31547c;
    border-radius: 50px;
    box-shadow: #525252;
    scroll-behavior: smooth;
    color: white;
    user-select: none;
    overflow-x: auto;
}

@media screen and (max-width: 769px) {
    .tab-menu {
        max-width: 600px;
    }
}


.tab-menu.dragging {
    scroll-behavior: unset;
    cursor: grab;
}

.tab-menu::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    display: inline-block;
    color: #fff !important;
    font-size: 1em;
    font-weight: 400;
    margin: 0 2px;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    user-select: none;
    transition: background-color .3s ease;
}

.tab-menu.dragging .tab-btn {
    pointer-events: none;
}

.tab-btn:hover {
    background-color: #31547c;
}

.tab-btn.active {
    background-color: #31547c;
}

.left-btn,
.right-btn {
    position: absolute;
    color: #fff !important;
    font-size: 18px;
    padding: 4px 8px;
    cursor: pointer;
}

.left-btn {
    left: -35px;
    top: 20px;
    background: #31547c;
    border-radius: 50px;
    display: none;

}

.right-btn {
    right: -35px;
    top: 20px;
    background: #31547c;
    border-radius: 50px;
}

/* ===== Tab content ===== */
.tab-content-car {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.tab-content {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.tab {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: auto;
    max-width: 1100px;
    padding: 15px 50px;
    opacity: 0;
    transform: translateX(25px);
    content-visibility: hidden;
}

.tab.active {
    transform: translateX(0%);
    content-visibility: visible;
    opacity: 1;
    transition: opacity 1s ease, transform 1s ease;
}

@media (min-width: 1080px) {
    .tab.active {
        transform: translateX(7%);
        content-visibility: visible;
        opacity: 1;
        transition: opacity 1s ease, transform 1s ease;
    }
}

.pickcar_heading {
    text-align: center;
    margin-top: 40px;
}

@media screen and (max-width: 600px) {
    .left-btn {
        left: 0px;
    }

    .right-btn {
        right: 0px;
    }
}



/* backto top button  */
#button {
    display: inline-block;
    background-color: #fda31b;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/* backto top button end   */



/* ===== Media queries (max-width: 1050px;) ===== */
@media screen and (max-width: 1050px) {


    .tab-nav-bar {
        margin: 65px 20px 40px 25px;
    }

    .tab {
        padding: 15px 25px;
    }

    .tab .row {
        flex-direction: column;
    }

    .tab .img-card {
        width: auto;
        max-width: 600px;
    }

    .country {
        font-size: 10vw;
        padding-bottom: 50px;
    }

    .engin_content {
        margin: 20px 0px;
        text-align: left;
    }

}

/* tab section css end  */


/* about section css start  */
.about-us {
    margin-top: 80px;
}

.about-us .btn-warning {
    background-color: #31547c;
    border-color: #31547c;
}

.about-us .btn-outline-warning {
    color: #31547c;
    border-color: #31547c;
}

.about-us .btn-outline-warning:hover {
    background-color: #31547c;
    color: #fff;
}

.about_home_content h6 {
    color: #31547c;
    font-size: 20px;
}

.about_home_content p {
    color: #0b0b13;
    font-size: 18px;
    font-weight: 400;
}

.color_about_icon {
    color: #31547c;
}


/* about section css end */



/* gallery section css start  */
.portfolio-section {
    margin: 40px 0px;
}


@media (min-width: 1300px) and (max-width: 2560px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (min-width: 700px) and (max-width: 1299px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (min-width: 300px) and (max-width: 699px) {
    .popup-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.gallery_item {
    margin-bottom: 5px;
    overflow: hidden;
}

.popup-gallery a {
    display: block;
    width: 100%;
    border: 1px solid #fff;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.popup-gallery a:hover {
    transform: scale(1.05);
    border-color: #fff;
}

.popup-gallery img {
    display: block;
    width: 100%;
    object-fit: cover;
    min-height: 250px;
    max-height: 250px;
}

@media only screen and (max-width: 1000px) {
    .popup-gallery img {
        min-height: 150px;
        max-height: 150px;
    }
}

/* END  */

.singicon_btn_nlf {
    position: absolute;
    top: 44%;
    bottom: 56%;
    left: 44%;
    right: 56%;
    opacity: 0;
}

.singicon_btn_nlf svg {
    color: #fff;
}

.popup-gallery a:hover .singicon_btn_nlf {
    opacity: 1;
}

.hover_affect_nlf:hover img {
    opacity: 0.5;
}

/* gallery section css end */

/* ===== SERVICES SECTION ===== */

.services-dark {
    background-color: #002c5f;
    padding: 60px 0;
    color: #fff;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.service-item {
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item .icon i {
    font-size: 32px;
    color: #fff;
    transition: color 0.3s ease;
}

.service-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.service-item p {
    margin-top: 12px;
    line-height: 1.6;
}

.service-item:hover {
    background-color: #ffffff;
    color: #000000;
}

.service-item:hover h4,
.service-item:hover p {
    color: #000000;
}

.service-item:hover .icon i {
    color: #062f5e;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 32px;
    }
}




/* contact css start  */
.contact-section {
    display: flex;
    align-items: center;
    justify-content: center;

}


.contact-left {
    background: #fff;
    color: #000;
    padding: 40px;
    position: relative;
}

.contact-left h3 {
    font-size: 34px;
    font-weight: bold;
    color: #31547c;
}

.contact-left p {
    margin-bottom: 20px;
}


.contact-left .info {
    margin-top: 20px;
}


.contact-left .info p a {
    margin: 0;
    line-height: 30px;
    color: #222;
    font-size: 16px;
}

.contact-left .info p a i {
    margin: 0;
    color: #31547c;
    font-size: 20px;
    margin-right: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 2px solid #31547c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #31547c;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.social-icons a:hover {
    background-color: #31547c;
    color: #fff;
}

.contact-right {
    padding: 40px;
}

.contact-right h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating-custom input,
.form-floating-custom textarea {
    background: transparent;
    border: 2px solid #333;
    border-radius: 5px;
    padding: 20px 20px;
    color: #333;
    width: 100%;
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus {
    border-color: #31547c;
    outline: none;
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background-color: #fff;
    color: #333;
    transition: all 0.3s ease;
    padding: 0 5px;
    font-size: 1rem;
    pointer-events: none;
}

.form-floating-custom input:focus+label,
.form-floating-custom textarea:focus+label,
.form-floating-custom input:not(:placeholder-shown)+label,
.form-floating-custom textarea:not(:placeholder-shown)+label {
    top: -0px;
    font-size: 0.85rem;
    color: #31547c;
}

.contact-right button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-right button:hover {
    background-color: #31547c;
    color: white;
}

input,
textarea {
    box-shadow: none !important;
}

/* contact css end  */

/* footer css start  */
.footer_bg {
    background-color: #222;
    padding: 60px 0px 30px 0px;
    color: white !important;
    margin-top: 50px;
}

.hundui_footer1 h4,
.hundui_footer2 h4,
.hundui_footer3 h4,
.hundui_footer4 h4 {
    margin-bottom: 26px;
}

.hundui_footer1 P,
.hundui_footer2 P,
.hundui_footer3 P,
.hundui_footer4 P {
    margin-bottom: 10px !important;
}

.footer_bg a {
    color: rgb(188, 188, 188) !important;
    transition: all 0.2s ease-in-out;
}

.footer_bg a:hover {
    color: rgb(255, 255, 255) !important;
    border-left: 2px solid rgb(255, 255, 255);
    padding-left: 10px;
}

.copyright a {
    font-size: 14px;
}

.copyright a:hover {
    border: none;
    padding-left: 0px;
    cursor: pointer;
}

.copyright_text {
    color: rgb(188, 188, 188);
}

.address-box {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.address-box i {
    background: #ffffff;
    color: #002c5f;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.footer-address h2 {
    font-size: 22px;
    color: #ffffff;
}

.address-box h5 {
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
    color: #ffffff;
}

.address-box p {
    font-size: 13px;
    color: #cfcfcf;
    line-height: 1.6;
    margin: 0;
}

.footer-address hr {
    border-color: #2a2a2a;
    margin: 20px 0;
}

.contact-link a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-link a i {
    background: #ffffff;
    color: #002c5f;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.footer-social-links a {
    background-color: white;
    padding: 10px;
    color: #000 !important;
    font-size: 20px;
}
.footer-social-links a:hover {
    background-color: #002c5f;
    padding: 10px;
    color: #fff !important;
}
/* footer css end  */


/* new car page css start ************************************************************************************* */
.new_car_section {
    margin-top: 40px;

}

.new_car_card {
    border: 1px solid #d9d9d9;
}

.new_car_card:hover {
    border: 1px solid #d9d9d9;
    box-shadow: 0px 2px 12px #d9d9d9;
}

/* new car page css end ************************************************************************************* */


/* used car page css start ************************************************************************************* */
.used_car_heading {
    text-align: center;
    margin-top: 90px;
}

.used_car_sec {
    box-shadow: 0px 2px 12px 0px #d1d1d1;
    margin-top: 20px;
    padding: 40px 0px;
}

.nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: black !important;
    border: 1px solid #d8d8d8 !important;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border-radius: 0px !important;

}

.nav-tabs .nav-link.active {
    background-color: #31547c !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-tabs .nav-link:hover {
    background-color: #31547c;
    color: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.nav-tabs {
    border: none !important;
}

.used_input_1 select {
    padding: 12px;
    border-color: #d8d8d8;
    width: 100%;
}

.used_input_2 select {
    padding: 12px;
    border-color: #d8d8d8;
    width: 100%;
}


/* used car page css end ************************************************************************************* */


/* booking open page css start ************************************************************************************* */
.booking_form {
    margin-top: 50px;
    box-shadow: 0px 2px 10px #adadad;
    padding: 30px 20px;
}

.booking_form h1 {
    font-size: 30px;
    margin-bottom: 20px;
    text-shadow: 0px 2px 4px #adadad;
}

.booking_form_inner input,
.booking_form_inner select,
.booking_form_inner textarea {
    padding: 8px 14px;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    width: 100%;
    outline: none;
    /* Removes the default browser outline */
    transition: border-bottom 0.3s ease-in-out;
}

/* Hide border on focus */
.booking_form_inner input:focus,
.booking_form_inner select:focus {
    border-bottom: 1px solid #d1d1d1 !important;
    outline: none !important;
}

.booking_form_inner p {
    color: #525252;
    font-size: 14px;
    margin-top: 10px !important;
}

.booking_form_inner p a {
    color: #31547c;
    transition: 0.3s;
}

.booking_form_inner p a:hover {
    text-decoration: underline !important;
}

/* booking open page css end ************************************************************************************* */


/* insurance page css start ************************************************************************************* */
.insurance-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px 2px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.insurance-form-title {
    text-align: center;
    font-weight: bold;
    margin-top: 80px;
}

.insurance-form-subtitle {
    text-align: center;
    color: gray;
    margin-bottom: 20px;
}

.insurance-form-group {
    margin-bottom: 15px;
}

.btn-blue {
    background-color: #31547c;
    color: white;
    font-weight: 600;
    width: 100%;
    padding: 14px;
    border: none;
    transition: 0.5s;
}

.btn-blue:hover {
    background-color: #0b0b13;
}

/* insurance page css end ************************************************************************************* */

/* finance page css start ************************************************************************************* */

.lone_heading {
    text-align: center;
    margin-top: 70px;
}

.lone_subh {
    text-align: center;
    color: #525252;
    margin-bottom: 60px !important;
}

.loan-form input,
.loan-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.emi-table {
    width: 100%;
    margin-top: 20px;
}

.emi-table th {
    background-color: #333;
    color: white;
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

.emi-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.emi-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.loan-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}

.loan-right p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #525252;
    margin-bottom: 20px !important;
}




.loan-section {
    padding: 20px;
}

/* Accordion Styling */
.accordion-button:focus {
    z-index: 3;
    outline: 0 !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #000 !important;
    background-color: #ddd !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}


.accordion-button {
    background-color: #e0e0e0;
    color: #000;
    font-weight: 500;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
}

.accordion-body ul li {
    list-style-type: circle;
    font-size: 16px;
    margin-bottom: 6px;
    color: #0b0b13;
}


@media (max-width: 768px) {
    .loan-section {
        padding: 20px;
    }
}

/* finance page css end ************************************************************************************* */


/* outlets page css start ************************************************************************************* */
/* Modern Filter Sidebar */
.filter-section {
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-option {
    cursor: pointer;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
    color: #31547c;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;

}

.filter-option:hover {
    background: #adadad;
    color: white;
}

.filter-option.active {
    background: #31547c;
    color: white;
}

/* Modern Card Layout */
.outlet-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.outlet-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.outlet-card h5 {
    color: #222;
    font-weight: 500;
}

.outlet-card p {
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #ccc;
    padding: 20px 0px;
}

.working-hours {
    font-size: 18px;
    color: #222;
    padding-right: 10px;
    font-weight: 500;
}


/* Badge Styles */
.outlet-badge {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.showroom-badge {
    background-color: #f71b1b;
}

.workshop-badge {
    background-color: #11bf1d;
}

/* outlets page css end ************************************************************************************* */
/* csd section page css start ************************************************************************************* */
.modern-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Tabs */
.csd-nav-tabs {
    border-bottom: none;
    display: flex;
    /*gap: 8px;*/
}

.csd-nav-tabs .nav-link {
    flex: 1;
    text-align: center;
    border: none;
    padding: 5px;
    font-weight: 600;
    border-radius: 4px;
    background: #e9ecef;
    color: #333;
    transition: all 0.3s ease;
}

.csd-nav-tabs .nav-link.active {
    background: #31547c;
    color: white;
}

/* Right Side Contact Section */
.csd-contact-card {
    background: #31547c;
    color: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.csd-contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.csd-contact-card p {
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 3px;
    justify-content: center;
    flex-wrap: wrap;
}

.csd-contact-card p a {
    color: white;
}

.csd-contact-card i {
    font-size: 22px;
}

.contact-btn {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    padding: 12px;
    font-weight: 600;
    background: white;
    color: #31547c;
    border: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
}

.stars {
    display: flex;
    flex-direction: row;
}

.star {
    font-size: 40px;
    cursor: pointer;
    color: gray;
    transition: color 0.3s;
}

.star.active {
    color: orange;
}

/* csd section page css end ************************************************************************************* */
/* car details  page css start ************************************************************************************* */
.hero_dtl {
    display: flex;
    color: white;
    justify-content: space-around;
    margin-top: 400px;
}

.hero_dtl-1 h5 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 0px;
}

.pricing-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.pricing-header {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px !important;
}

.city-name {
    color: #31547c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}


.price {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-top: 4px !important;
}

.divider {
    height: 100%;
    width: 1px;
    background: #ddd;
}

@media (max-width: 768px) {
    .divider {
        display: none;
    }
}

.car_variants_sec {
    background-color: #faf7f6;
    padding-top: 60px;
    margin-top: 30px;
}

/* Table Styling */
.variants-table {
    border-collapse: collapse;
    background: white;
    overflow: hidden;
}

/* Table Header */
.variants-table thead th {
    background: #e8e8e8;
    padding: 20px 10px;

}

.variants-table th {
    font-weight: 600;

}

/* Table Rows */
.variants-table td {
    padding: 14px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle !important;
    color: #666666;
}

/* Variant Names */
.variant-name {
    font-weight: 500;
    color: #31547c;
    text-decoration: underline !important;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.variant-name:hover {
    text-decoration: none !important;
    color: #31547c;
}

/* Fuel Type */
.fuel-type {
    font-size: 14px;
    color: #666;
}

/* PDF Icon */
.pdf-icon {
    width: 24px;
    height: auto;
}

/* Offer Button */
.offer-btn {
    background: #31547c;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    background: #1fa0fb;
}

/* Responsive */
@media (max-width: 768px) {

    .variants-table th,
    .variants-table td {
        font-size: 14px;
        padding: 10px;
    }

    .offer-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Color Palette section */
/* Color Palette section */
.color-selector-section {
    padding: 40px 0;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.color-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border 0.3s ease;
}

.color-circle:hover,
.color-circle.active {
    border: 3px solid #31547c;
}

/* Car Image */
.car-images {
    position: relative;
}

.car-image {
    display: none;
    width: 100%;
    max-width: 500px;
    transition: opacity 0.4s ease-in-out;
}

.car-image.active {
    display: block;
}

/* Selected Color Name */
.color-name {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}


/* car picture interior and exterior section desgin  start */
.int_ext_sec {
    background-color: #faf7f6;
    padding: 30px 0px;
}

.car_pic_exterior img,
.car_pic_interior img {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.car_pic_exterior .col-md-4,
.car_pic_interior .col-md-4 {
    padding: 5px;
}

/* car picture interior and exterior section desgin end */
/* car details  page css end ************************************************************************************* */

/* Terms and condition  page css start ************************************************************************************* */
.term_condition {
    margin: 50px 0px;
}

.term_condition h1 {
    margin: 50px 0px;
    text-align: center;
}

.term_condition h5 {
    margin: 20px 0px;
}

.term_condition p {
    color: #525252;
    line-height: 28px;
}

/* Terms and condition page css end ************************************************************************************* */

/* book services page css start ************************************************************************************* */
/* Form Styling */
.service-booking-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 10px;
    border-radius: 12px;
    color: #000;
    margin-top: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-title {
    text-align: center;
    font-size: 28px;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.new-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    color: #333;
}

.form-section {
    margin-bottom: 20px;
}

.form-section h4 {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.radio-group label {
    margin-left: 10px;
}

@media screen and (max-width: 600px) {
    .form-title {
        font-size: 20px;
    }

    .form-subtitle {
        font-size: 12px;
    }
}

/* book services page css end ************************************************************************************* */

/* amritshow room section css start ************************************************************************************* */
.map-box2 {
    z-index: 2;
    right: 60px;
    width: 360px;
    position: absolute;
}

.map-box2 a p {
    color: black;
    font-size: 14px;
    margin-bottom: 10px !important;
}

.map-box2 a i {
    background-color: #31547c;
    color: white;
    padding: 10px;
    border-radius: 20px;
    margin-right: 6px;
}

.amritsar_feedback {
    box-shadow: 0px 0px 16px #c6c6c6;
    padding: 30px 40px;
    border: 2px solid #d1d1d1;
    margin: 50px auto;
}

@media screen and (max-width: 600px) {
    .map-box2 {
        right: 0px;
        position: relative;
    }
}


/* amritshow room section css end ************************************************************************************* */


/* hyundai_aura_e section css start ************************************************************************************* */
.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
}

.tab-button {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border: none;
    background: #f1f1f1;
    font-weight: bold;
}

.tab-button.active {
    background: #31547c;
    color: #fff;
}


.tab-content-car {
    display: block !important;
    padding: 20px;
}

.tab-content-car.active {
    display: block;
}


.tab-content {
    display: block;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.custom-table th,
.custom-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.custom-table th {
    background: #343a40;
    color: #fff;
}

.check-icon {
    color: green;
}

.cross-icon {
    color: red;
}

.hyundai_aura_dcard {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.hyundai_aura_dcard:hover {
    background-color: #31547c;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-weight: 500;
}

/* hyundai_aura_e section css end ************************************************************************************* */
/* whatsapp icon css start  ************************************************/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0dc143;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* whatsapp icon css end  ************************************************/
/* back to top icon css start  ************************************************/
#backToTop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #31547c;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: #1f3b5a;
    transform: translateY(-4px);
}

/* back to top icon css end  ************************************************/


/* home page testimonial secction css start ************************************************** */
.clients-section {
    position: relative;
    padding: 40px 0 0px;
    color: #000;
}

.clients-content {
    position: relative;
    z-index: 2;
}

.clients-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    border-left: 6px solid #31547c;
    padding-left: 15px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.clients-title-small {
    color: #333 !important;
    font-size: 17px;
    font-weight: 500;
}

.swiper {
    padding: 40px 10px;
}

.testimonial-card {
    background: #f2f8ff;
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    height: 200px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.testimonial-card .stars {
    color: #e8c629;
    margin-bottom: 5px;
}

.testimonial-author {
    margin-top: 15px;
}


.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: #31547c;
}

.testimonial-author span {
    font-size: 14px;
    color: #000;
}

.owl-nav {
    position: absolute;
    top: 8%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    /* slider click safe */
}

.owl-nav [class*=owl-]:hover {
    background-color: transparent !important;
}

.owl-prev,
.owl-next {
    position: absolute;
    color: #31547c !important;
    font-size: 90px !important;
    pointer-events: all;
    /* arrows clickable */
}

.owl-prev {
    left: -40px;
}

.owl-next {
    right: -40px;
}


.owl-dots {
    display: none;
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 10px !important;
}

@media (max-width: 426px) {


    .owl-prev {
        left: -20px;
    }

    .owl-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .clients-title {
        font-size: 32px;
    }
}

/* home page testimonial secction css end *****************************************************/

/* why choose us section css start  */
/* ===== WHY CHOOSE SECTION ===== */

.choose_section {
    background-color: #062f5e;
    padding: 70px 0;
    color: #fff;
    margin-top: 40px;
}

/* LEFT BUTTONS */
.choose_btns {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.choose_btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background-color: #0b4c8c;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.choose_btn i {
    font-size: 22px;
}

.choose_btn:hover {
    background-color: #ffffff;
    color: #062f5e;
}

/* RIGHT CONTENT */
.choose_content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.choose_content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e6e6e6;
}

/* ABOUT BUTTON */
.choose_about_btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: #ffffff;
    color: #062f5e;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}


.choose_about_btn:hover {
    background-color: #e6e6e6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .choose_content h2 {
        font-size: 30px;
    }

    .choose_btn {
        font-size: 16px;
    }
}

/* why choose us section css end */


/* home pages gallery section css start ************************************************************************************* */
.hyundai-row>.hyundai-column {
    padding: 0 8px;
}

@media (max-width: 768px) {
    .hyundai-row>.hyundai-column {
        margin-top: 10px;
    }
}

.hyundai-row:after {
    content: "";
    display: table;
    clear: both;
}

.hyundai-column {
    float: left;
    width: 25%;
}

.hyundai-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
}

.hyundai-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    z-index: 100 !important;
}

.hyundai-close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.hyundai-close:hover,
.hyundai-close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.hyundai-mySlides {
    display: none;
}

.hyundai-cursor {
    cursor: pointer;
}

.hyundai-prev,
.hyundai-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white !important;
    background-color: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.hyundai-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.hyundai-prev:hover,
.hyundai-next:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black !important;
}

.hyundai-numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.hyundai-caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.hyundai-demo {
    opacity: 0.6;
}

.hyundai-active,
.hyundai-demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.hyundai-close-btn {
    display: block;
    padding: 10px 22px;
    background-color: red;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    position: absolute !important;
    top: 0;
    right: 0;
}

.hyundai-close-btn:hover {
    background-color: darkred;
}

/* home pages gallery section css end ************************************************************************************* */

/* sell car page css start  */
.condition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
}

.condition-table th,
.condition-table td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 8px;
}

.condition-table th {
    background-color: #31547c;
    font-weight: bold;
    color: white;
}

.radio-input {
    width: 18px;
    height: 18px;
    accent-color: #31547c;
}

/* sell car page css end */

/* offer page css start *********************************************** */
.offer_form_section {
    background: #062e5c;
    padding: 60px 15px;
}

.offer_form_container {
    max-width: 1100px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* LEFT IMAGE */
.offer_form_left {
    width: 100%;
    height: 100%;
}

.offer_form_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT FORM */
.offer_form_right {
    padding: 40px;
}

.offer_form_right h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #111;
}

/* FORM */
.offer_form_group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.offer_form_group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.offer_form_group input,
.offer_form_group select {
    padding: 12px;
    border: 1px solid #cfd6df;
    border-radius: 6px;
    font-size: 15px;
}


/* offer page css end  ************************************************/

/* form message designn start  */
.form-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
    opacity: 1;
    transition: opacity .5s ease-in-out;
}

.success-alert {
    background: #e0ffda;
    border-left: 4px solid #34b300;
    color: #0b5e00;
}

/* form message designn end  */