:root {

    /* Custome Root */
    --cu-blue: #0A53FF;
    --cu-black: #000;
    --cu-lightblue: #C4D6FF;

    /* Size */
    --fs20: 20px;
    --fs24: 24px;
    --fs40: 35px;
    --fs50: 50px;


    /* font-weight */
    --weight500: 500;
    --weight600: 600;
    --weight700: 700;


    /* Radius */

    --radius20: 20px;
    --radius25: 25px;

}



/* Reset Css */
a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style-type: none;
    margin: 0px;
}

textarea.error,
select.error,
input[type="text"].error,
input[type="email"].error,
input[type="password"].error {
    color: red;
    border: 1px solid red !important;
}

label.error {
    color: red !important;
    font-size: 14px;
}

.mb20 {
    margin-bottom: 20px;
}

.bg-gray-100 {
    background: #F5F8FA;
}

.thumimages-mobile {
    display: none !important;
}

/* Header Section */
.header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 15x`px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--cu-blue);
}


.mobile-bar,
.mobile-loginarea {
    display: none;
}

.nav a {
    margin-right: 12px;
    font-size: var(--fs20);
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.nav a:hover {
    color: #0a53ff;
}

.contact-infoarea a:hover {
    color: #0a53ff;
}

.login-btn {
    background-color: var(--cu-blue);
    font-size: var(--fs24);
    font-weight: var(--weight700);
    font-family: var(--bs-font-sans-serif);
    color: white !important;
    padding: 10px 12px;
    border: none;
    border-radius: var(--radius20);
}

.profilebtn {
    position: relative;
    cursor: pointer;
}

.profileDetails {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    z-index: 11111;
    transition: all ease-in-out 0.5s;
}

.profileDetails .card {
    width: 300px;
    border-radius: 15px;
}

.profileDetails .card-body {
    padding: 2rem;
}

.profileDetails .menu-item {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #000;
    text-decoration: none;
    margin-bottom: 1rem;
}

.profileDetails .menu-item img {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}

.contact-infoarea {
    border-radius: 67px;
    background-color: var(--cu-lightblue);
    padding: 14px;
    font-size: var(--fs20);
    font-weight: var(--weight700);
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    float: inline-end;
    width: 805px;
}

.contact-infoarea .contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-infoarea a {
    color: #000;
    margin-left: 8px;
}


/* Slider */
.mobslider {
    display: none;
}

.herosection .carousel-control-next,
.carousel-control-prev {
    top: 100%;
    width: 2%;
}

.herosection .carousel-indicators {
    bottom: -40px;
}


.Slider {
    margin-top: 5rem;
}

.carousel {
    text-align: left;
    color: black;
}

.carousel h1 {
    font-size: var(--fs50);
    color: var(--cu-blue);
    line-height: 48px;
    font-weight: var(--weight700);
}

.carousel h1 span {
    font-size: var(--fs40);
    color: var(--cu-black);
    font-weight: var(--weight700);
}

.btn-explore {
    background-color: var(--cu-blue);
    color: white;
    border-radius: var(--radius25);
    margin-top: 35px;
    padding: 10px 20px;
}

.carousel-indicators [data-bs-target] {
    background-color: #007bff;
}

/* Slider */


/* <!-- Filter Section --> */

.input-group {
    border: 1px solid #000;
    border-radius: 37px;
    padding: 8px;
}

.input-group input {
    border: none;
    outline: none;
}

.input-group input:focus {
    box-shadow: unset;
}

.filter-btn {
    background-color: var(--cu-blue);
    padding: 8px 16px;
    color: #fff !important;
    border-radius: var(--radius20);
    width: 150px;
    font-weight: var(--weight700);
    gap: 8px;
}

#filterCancel {
    cursor: pointer;
}

.fuel-option.active {
    border-bottom: 1px solid #0041ff;
}

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

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid #000;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 46px;
    left: 2px;
    bottom: 2px;
    background-color: #0041ff;
    transition: .4s;
    border-radius: 20px;
}

input:checked+.slider {
    background-color: #fff;
}

input:checked+.slider:before {
    transform: translateX(47px);
}

.toggle-label {
    margin: 0 10px;
    font-weight: bold;
}

.selectfield label {
    font-size: var(--fs20);
    font-weight: var(--weight500);
    margin-right: 10px;
}

.selectfield select {
    border: 1px solid #000;
    border-radius: 15px;
    width: 240px;
    height: 40px;
    padding: 8px;
}

.filter-search {
    background-color: var(--cu-blue);
    padding: 8px 16px;
    color: #fff !important;
    border-radius: 12px;
    font-weight: var(--weight700);
    gap: 8px;
}

.filter-clear {
    padding: 8px 16px;
    color: #000 !important;
    border-radius: 12px;
    font-weight: var(--weight700);
    gap: 8px;
    border: 3px solid var(--cu-blue);
}

/* <!-- Filter Section --> */


/* Card */
.card-body .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
}

.features span {
    font-size: 0.9rem;
}

.icons a {
    color: #000;
    font-size: 1.2rem;
}

.icons a:hover {
    color: #007bff;
}

.cardtitle {
    display: flex;
    align-items: start;
}

.cardtitle .cardcardicon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cardtitle .cardcardicon i {
    font-size: 30px;
    font-weight: var(--weight500);
}

.card-title {
    font-weight: var(--weight700);
    line-height: 28px;
}

/* Card */
/* About Us Page */
.blue-circle {
    position: absolute;
    width: 60%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #e6f0ff;
    border-radius: 50%;
    z-index: -1;
}

.tablower {
    display: none;
}

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

.motorcycle-image {
    max-width: 250px;
    position: absolute;
    bottom: 0px;
    left: 20px;
}

.gear-icons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 160px;
}

/* About Us Page */
/* Contact Us Page */
.contact {
    position: relative;
}

.contact .container {
    padding: 7rem;
}

.contact .contop {
    position: absolute;
    top: 0px;
    left: 90px;
}

.contact h1 {
    font-size: var(--fs50);
    font-weight: var(--weight700);
}

.contact p {
    font-weight: var(--weight600);
}

.contact input {
    padding: 12px 20px;
    color: #000;
}

.contact button {
    padding: 12px 20px;
    border-radius: 10px;
}

.contact .blue-bg {
    background-color: var(--cu-blue);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 50%;
    float: right;
    height: 100%;
    position: relative;
}

.contact .contgear {
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.contact iframe {
    width: 400px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.contact .key-img {
    width: 35%;
    position: absolute;
    top: 5px;
    right: 10%;
}

.contact .col-md-4 {
    display: flex;
    align-items: start;
}

.contact .col-md-4 p {
    font-weight: 400;
    color: var(--cu-blue);
}

.contact .gear-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #0052cc;
    font-size: 24px;
}

/* Contact Us Page */
/* Login Page */
.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login .login-container {
    background-color: #e6f0ff;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.login .gear-left img {
    position: absolute;
    top: -40px;
    left: -158px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.login .gear-right img {
    position: absolute;
    bottom: -40px;
    right: -158px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.login .logo {
    text-align: center;
    margin-bottom: 1rem;
}

.login input {
    border: 1px solid #000;
    padding: 8px;
    color: #000;
    background: transparent;
}

.login button {
    padding: 10px;
    border-radius: 10px;
}

.login .social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.login .social-btn {
    width: 110px;
    height: 50px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    background-color: white;
    align-items: center;
    font-size: 1.2rem;
}

/* Login Page */
/* Compare Page */
.comparison .heading {
    text-align: center;
    margin-top: 20px;
}

.comparison .heading h1 {
    color: var(--cu-blue);
    font-size: var(--fs50);
    font-weight: var(--weight600);
}

.comparison .heading p {
    font-size: var(--fs24);
    font-weight: var(--weight500);
}

.comparison-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.comparison .vehicle-image {
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    justify-content: center;
}

.comparison .vehicle-image img {
    width: 250px;
    height: auto;
}

.comparison .vs-text {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
    margin: 0 20px;
}

.compareselectbox {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.compareselectbox .model-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 300px;
    padding: 10px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.compareselectbox .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.compareselectbox .variant {
    font-size: 0.9em;
    border-bottom: 2px solid var(--cu-blue);
}

.compareselectbox .close-btn {
    background: none;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

.compareselectbox .variant-list {
    list-style: none;
    overflow-y: auto;
    max-height: 100px;
}

.compareselectbox .variant-list li {
    color: #666;
    margin-bottom: 5px;
}

.compareselectbox .add-car-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.compareselectbox .addcard {
    width: 300px;
}

.compareselectbox .addcard .add-car {
    height: 130px;
}

.compareselectbox .add-car {
    border: 2px dashed #ccc;
    border-radius: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
}

.compareselectbox .plus-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.compareselectbox .model-dropdown {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
}

/* Compare Page */
/* Compare Details Page */
.comparedetails .comparison-row {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.comparedetails .comparison-row:nth-child(odd) {
    background-color: #f2f2f2;
}

.comparison-row .text-center {
    font-size: 18px !important;
    font-weight: 500 !important;
}

.comparedetails .blue-cell {
    /* background-color: #0d6efd; */
    /* color: white; */
    padding: 2rem;
    font-size: 18px;
    font-weight: 500;
}

.comparedetails .light-blue-cell {
    /* background-color: #e7f1ff; */
    padding: 2rem;
}

.comparedetails .feature-label {
    font-weight: 500;
}

.comparedetails .section-header {
    font-weight: bold;
    padding: 1rem 0;
    font-size: 20px;
}

.cardbtntop {
    border-top-left-radius: 20px;
}

.homeright-filter {
    border-bottom-left-radius: 20px;
}

/* Compare Details Page */
/* Right Short Button Area */
.shortrightbtn {
    position: fixed;
    top: 30%;
    right: 0px;
    width: 75px;
    height: 80px;
    background-color: var(--cu-blue);
    color: white;
    display: flex;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.5s;
}

.shortrightbtnopen {
    display: none;
    position: fixed;
    top: 5%;
    right: 0px;
    width: 85px;

    color: white;
    /* padding: 12px; */
    color: white;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.5s;
}

.shortrightbtn {
    text-align: center !important;
}

.shortrightbtnopen .cardbtn {
    padding: 15px;
    margin-bottom: 2px;
    text-align: center;
    cursor: pointer;
    background-color: var(--cu-blue);
}

.cardbtn span {
    font-size: 14px !important;
}

.shortrightbtnopen .cardbtn img,
.shortrightbtn .cardbtn img {
    width: 20px;
}

/* Right Short Button Area */
/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 40px 0;
}

footer h5 {
    font-weight: var(--weight700);
}

footer .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

footer p {
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 5px;
    font-weight: var(--weight700);
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: var(--weight700);
}


.social-icons a {
    font-size: 1.5rem;
    color: white;
}

.social-icons a img {
    width: 48px;
}

.social-icons i {
    padding: 12px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 0.8rem;
}

/* Footer */

#filterBlackBtn {
    display: none;
}

.contactinfomob {
    display: none;
}

/* **************** Responsive Design ******************** */

/* Xl Laptop responsive */
@media screen and (max-width:1400px) {
    .features span {
        font-size: .75em;
    }
}

@media screen and (max-width:1254px) {
    .gear-icons {
        bottom: -10px;
    }

    .motorcycle-image {
        bottom: -47px;
        width: 170px;
    }
}

/* Large Laptop Responsive */
@media screen and (max-width:1200px) {

    /*Navabr*/
    .mobile-bar {
        display: inline-block;
        margin-right: 10px;
    }

    header .nav {
        position: fixed;
        left: -1500px;
        height: 100%;
        top: 0px;
        bottom: 0px;
        /* width: 500px; */
        width: 100%;
        background: #fff;
        flex-direction: column;
        z-index: 111;
        padding: 8px;
        transition: all ease-in-out 0.5s;
    }

    .nav a {
        margin: 20px;
    }

    .mobile-loginarea {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .mobile-loginarea .fa-close {
        font-size: 24px;
        font-weight: var(--weight500);
    }

    /*Navabr*/

    /* Hero Section */
    .contact-infoarea {
        display: none;
    }

    .Slider {
        margin-top: 0px;
    }

    .features span {
        font-size: .55em;
    }

    /* Contact Us Page */
    .contact iframe {
        width: 280px;
        height: 240px;
    }
}


/* Small Laptop Responsive */
@media screen and (max-width:992px) {
    .shortrightbtn {
        display: none !important;
    }

    #quiz-container {
        height: 100vh !important;
    }

    #progress-text {
        font-size: 16px !important;
    }

    #question-text {
        font-size: 16px !important;
    }

    .features span {
        font-size: .65em !important;
    }

    .fuel-option {
        font-size: 16px;
        font-weight: 500;
    }

    .d-flex span {
        font-size: 16px;
        font-weight: 500;
    }

    /* Contact Us Page */
    .contact .container {
        padding: 0rem;
    }

    .contact iframe {
        position: relative;
        width: 100%;
        height: 100%;
        margin-top: 15px;
    }

    .contact .contop {
        position: absolute;
        top: 25px;
        right: 85px;
        width: 100px;
        left: auto;
    }

    .contact .blue-bg {
        background-color: transparent;
        height: 500px;
        margin-bottom: 35px;
    }

    .contact .contgear {
        display: none;
    }

    .contactinfodesk {
        display: none;
    }

    .contactinfomob {
        display: block;
    }

    .tabupper {
        display: none;
    }

    .tablower {
        display: block;
    }

    .blue-circle {
        height: 70%;
    }

    .gear-icons {
        bottom: 202px;
        width: 100px;
    }

    .motorcycle-image {
        bottom: 100px;
        width: 210px;
    }

    .tabupper~p {
        margin-top: 80px;
    }

    .contact .key-img {
        bottom: -113px;
        top: auto;
        width: 9%;
    }

    .contact .blue-bg {
        width: 100%;

    }

    .contact iframe {
        top: 0px;
        transform: none;
    }

    .contactinfomob .col-md-4 {
        margin-top: 10px;
    }
}
.tag-container {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    padding: 6px;
    border-radius: 4px;
    min-height: 45px;
    cursor: text;
}

.tag {
    background-color: #5eb9f0;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 3px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.tag .remove-tag {
    margin-left: 6px;
    cursor: pointer;
    font-weight: bold;
}

.tag-input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 120px;
    font-size: 14px;
    padding: 4px;
}

/* Tablet Responsive */
@media screen and (max-width:779px) {
    .deskslider {
        display: none;
    }

    .option img {
        width: 90px !important;
        height: 90px !important;
        object-fit: cover;
    }

    .mobslider {
        display: block;
    }

    ul {
        padding: 0px !important;
    }

    #filterDetails {
        position: relative;
    }

    #filterCancel {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .selectfield span {
        display: none;
    }

    #filterButton {
        display: none !important;
    }

    .filter-sm .col-md-4 {
        justify-content: end !important;
    }

    .input-group {
        width: 90%;
    }

    #filterBlackBtn {
        display: flex;
        cursor: pointer;
    }

    .thumimages-large {
        display: none;
    }

    .thumimages-mobile {
        display: grid !important;
    }

    .blue-circle {
        height: 40% !important;
    }

    .slider-onlyMob {
        display: block;
    }

    .dekstop-view {
        display: none;
    }

    .comparison .vehicle-image img {
        width: 100%;
        height: auto;
    }

    .compareselectbox {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .contact {
        padding: 15px;
    }

    .login-btn {
        background-color: var(--cu-blue);
        font-size: 20px;
        font-weight: var(--weight700);
        font-family: var(--bs-font-sans-serif);
        color: white !important;
        padding: 8px 9px;
        border: none;
        border-radius: var(--radius20);
    }

    .motorcycle-image {
        max-width: 210px;
        position: unset;
    }

    .gear-icons {
        position: absolute;
        top: 238px;
        right: -18px;
        width: 71px;
    }

    .tabupper {
        display: none;
    }

    .tablower {
        display: block;
    }
}



/* Mobile Responsive */
@media screen and (max-width:576px) {
    .contact .contop {
        top: -22px;
        right: 3px;
    }
        .feature-box {
            width: 90px !important;
            height: 90px !important;
        }
                .cardtit {
                    min-height: 40px;
                    display: flex;
                    align-items: center;
                    font-weight: 500 !important;
                    font-size: 15px !important;
                    padding-top: 5px;       }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #fff;
}

/* Dashboard */
.padding30 {
    padding: 30px;
}

.profile_name {
    text-align: center;
}

.profile_name h4 {
    font-size: 20px;
    line-height: 1.3em;
    margin: 0;
}

.profile_username,
.profile_wallet {
    font-size: 16px;
    font-weight: 500;
}

.comparedetails {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.nav {
    margin-right: 10px !important;
}

.menu-col li a {
    padding: 5px 10px;
    display: block;
    color: #333333;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.menu-col i {
    margin-right: 10px;
    text-align: center;
    min-width: 20px;
}

.slider-onlyMob {
    display: none;
}

@media (max-width: 768px) {
    .slider-onlyMob {
        display: block;
    }

    .dekstop-view {
        display: none;
    }

    .comparison .vehicle-image img {
        width: 35%;
        height: auto;
    }

    .compareselectbox {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .contact {
        padding: 15px;
    }

    .login-btn {
        background-color: var(--cu-blue);
        font-size: 20px;
        font-weight: var(--weight700);
        font-family: var(--bs-font-sans-serif);
        color: white !important;
        padding: 8px 9px;
        border: none;
        border-radius: var(--radius20);
    }

    .motorcycle-image {
        max-width: 300px;
        position: unset;
    }

    .gear-icons {
        position: unset;
        bottom: 20px;
        right: 20px;
        width: 160px;
    }
}

.details-page .spec-row {
    font-size: 1.2rem;
}

.list-unstyled li {
    margin: 8px 0;
}

.thumbnail-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.details-page .spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.36);
}

.details-page .spec-label {
    color: #6c757d;
    font-weight: bold;
}

.details-page .price {
    font-size: 2rem;
    font-weight: bold;
}

.details-page .price span {
    color: #0052cc;
}

.nav-tabs .nav-link {
    border: none;
    font-size: 18px;
    font-weight: bold;
}

.nav-tabs .nav-link.active {
    border: unset;
    border-bottom: 2px solid #0052cc;
    outline: none;
}

.select2-results__option {
    font-size: 18px !important;
}

.nav-tabs .nav-link:hover {
    outline: none !important;
}

i {
    font-size: 30px !important;
    font-weight: var(--weight500) !important;
}

.thumimages {
    display: flex;
    justify-content: space-between;
}

.thum-images img {
    width: 180px;
    height: 180px;
    cursor: pointer;
}

.deskproduct {
    position: relative;
}

.thumimages-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.thumimages-mobile img {
    width: 150px;
    height: 150px;
}

.activebox {
    border: 5px solid #0105fc;
}

.custom-card {
    border: 1px solid #0105fc;
    border-radius: 8px;
    padding: 12px;
    max-width: 400px;
    margin-top: 5px;
}

.custom-card i {
    font-size: 20px !important;
    color: #333;
}

.btn:focus {
    box-shadow: none !important;
}

/* Dropdown Styling */
.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    /* Subtle border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-input {
    padding: 10px;
}

.dropdown-toggle {
    text-align: left;
    border-radius: 6px;
    border: 1px solid #ced4da;
    /* Subtle border */
}

/* Ensure options match button width */
.dropdown-menu.w-100 {
    min-width: 100%;
}

/* Remove hover background and active states */
.dropdown-item.no-hover:hover,
.dropdown-item.no-hover:focus {
    /* background-color: transparent !important; */
    color: inherit !important;
}

.position-relative {
    font-size: 18px;
}

/* Button styling for clean design */
.btn {
    font-size: 1rem;
    padding: 3px 12px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease;
}

.btn:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-control:focus {

    box-shadow: none !important;
}

.dropdown-item:hover {
    background-color: #0105fc !important;
    color: #F5F5F5 !important;
}

.select2-results__option:hover {
    background-color: #0105fc !important;
    color: #F5F5F5 !important;
}

.select2-container--default .select2-selection--single {
    border: 2px solid #0105fc !important;
    border-radius: 0px !important;
    place-content: center !important;
}

.select2-container .select2-selection--single {
    height: 40px !important;
}

/* .select2-container {
    z-index: 99999;
} */

.comparepopup .search-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #6c757d;
}

.comparepopup .input {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 5px;
    position: relative;
}

.comparepopup input {
    border: none;
    outline: none;
    font-size: 18px;
}

.comparepopup input:focus {
    border-color: unset !important;
    -webkit-box-shadow: unset !important;
    outline: none;
}

.comparepopup .search-icon {
    position: absolute;
    right: 18px;
    top: 6px;
    font-size: 20px;
    color: #000;
}

/* Modal Body Customization */
.comparepopup .modal-body {
    padding: 20px;
}

/* Brand Icon Image Styling */
.comparepopup .img-fluid {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    padding: 5px;
}

.comparepopup .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none !important;
}

.comparepopup .select2-container--default .select2-selection--multiple {
    border: none !important;
}

.comparepopup .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fff;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-right: 9px;
    margin-top: 5px;
    padding: 0;
    padding-right: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

.comparepopup .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    left: auto !important;
    right: 0px !important;
    top: 0;
}

/* compare page add css */
.comparetab {
    border: none !important;
}

.comparetab .nav-link.active,
.comparetab .nav-link:hover {
    border-color: #fff !important;
    border-bottom: 1px solid #0041ff !important;
}

.select2-container--default .select2-selection--single {
    border-radius: 20px;
    height: 40px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 6px 8px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px;
    right: 6px;
}

.nav a {
    text-decoration: none;
    color: black;
    padding: 0 8px;
    position: relative;
}

.nav a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: #000000;
}

.nav a:last-child {
    padding-right: 0;
}

.feature-label {
    font-weight: bold !important;
    font-size: 18px !important;
}

.comparison-row {
    height: 20px;
    place-content: center;
}

#commonForm {
    width: 100% !important;
}

.comparison-container {
    margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .comparedetails .section-header {
        font-size: 16px !important;
    }

    .feature-label {
        font-size: 14px !important;
    }

    .comparedetails .light-blue-cell {
        padding: 2px !important;
    }

    .comparison-row .text-center {
        font-size: 14px !important;
    }

    .section-header {
        margin-bottom: 15px !important;
    }

    .comparison-row {
        border: 1px solid #ddd !important;
    }

    .comparedetails .comparison-row {
        min-height: 85px !important;
    }
}

.share-container {
    position: relative;
    display: inline-block;
}

.share-icon {
    font-size: 28px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.share-icon:hover {
    color: #0077b5;
}

.social-icons {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px;
    gap: 10px;
    z-index: 10;

    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 60px;
    height: 60px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    background-color: #333;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a.facebook {
    /* background-color: #4267B2; */
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.share-container:hover .social-icons,
.share-container.active .social-icons {
    visibility: visible;
    opacity: 1;
}

.fuel-option {
    font-size: 18px;
    font-weight: 500;
}

.d-flex span {
    font-size: 18px;
    font-weight: 500;
}

.text-decoration-none {
    font-size: 18px;
}

.features {
    flex-wrap: wrap;
}

.login p {
    font-size: 18px;
    font-weight: 500;
}

.login button {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mob-viewdec {
        display: block;
    }
}

@media (min-width: 769px) {
    .mob-viewdec {
        display: none;
    }
}

.hero-sectionbanner {
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

.hero-sectionbanner img {
    border-radius: 15px;
}

.feature-hr {
    position: relative;
    z-index: 2;
    /* Ensures it appears above the hero-section */
    display: grid;
    place-items: center;
}

.feature-section {
    background-color: rgb(255, 255, 255);
    padding: 30px;
    width: 90%;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: -120px;
    position: relative;
    z-index: 3;
}

.feature-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 130px;
    height: 130px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardtit {
    min-height: 40px;
    /* Keeps all text aligned */
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    padding-top: 5px;
}

.cardicon {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 180px;
    /* Keeps all feature-boxes aligned */
}

.feature-box i {
    font-size: 30px;
    color: #3D5AFE;
}

.feature-box p {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
}

.option {
    text-align: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.option img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.option.selected {
    /* border-color: blue; */
    border: 3px solid blue;
}

.resultbtn {
    padding: 5px 10px;
    border-radius: 0px !important;
}

.brand-btn {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    width: 200px;
}

.brand-btn:hover {
    background-color: #f0f0f0;
}

.model-btn {
    border: 1px solid #6c757d;
    color: #000;
    width: 180px;
}

.model-btn:hover {
    background-color: #d6d6d6;
}

.variant-btn {
    background-color: #ffffff;
    border: 1px solid #adb5bd;
    color: #000;
    width: 160px;
}

.variant-btn:hover {
    background-color: #f1f3f5;
}

.toggle-symbol {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.btn-group .btn {
    border-radius: 8px !important;
    padding: 7px 12px;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.rangebtn {
    border-radius: 5px !important;
}



#minValue {
    height: 25px !important;
    border: 1px solid black !important;
}

#maxValue {
    height: 25px !important;
    border: 1px solid black !important;
}

.value-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.value-box input {
    width: 100px;
    text-align: center;
}

.card {
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 20px;

}

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

.btn-primary {
    font-size: 18px;
    padding: 5px 15px;
}

.slider-container {
    width: 100%;
    max-width: 450px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

.form-control[readonly] {
    background-color: rgb(255, 255, 255) !important;
}

.range-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.range-slider input {
    width: 100%;
    pointer-events: none;
    background: transparent;
    position: absolute;
}

.range-slider input::-webkit-slider-thumb {
    pointer-events: all;
    background: blue;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
    z-index: 2;
}


.fade-out {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.fade-out-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.fade-out-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.add-more-btn {
    font-size: 16px !important;
    padding: 5px 8px !important;
    color: white !important;
}

.thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.thumbnail.active {
    border: 2px solid blue;
}

.login-switch {
    font-weight: bold;
    /* color: #0d6efd; */
    padding-bottom: 4px;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.active-switch {
    color: #0a53ff;
    border-bottom: 3px solid #0a53ff;
}

.text-primary {
    color: #0a53ff !important
}

.link-banner {
    height: 450px;
    place-items: center;

}

.new-home-banner {
    border-radius: 20px !important;
    background-color: #C1D4FF;
}

.card-align-icon {
    place-items: center;
}

@media (min-width: 768px) {
    .link-banner {
        height: 450px;
    }
     
    #quiz-container {
        height: 100vh !important;
    }

    #progress-text {
        font-size: 16px !important;
    }

    #question-text {
        font-size: 16px !important;
    }
}

.sub-category-title {
    font-size: 18px !important;
}

.attribute-left {
    font-size: 18px !important;
    font-weight: bold !important;
}



.option p {
    font-size: 18px !important;
    font-weight: 700 !important;
}

#progress-text {
    font-weight: bold !important;
}

#question-text {
    font-weight: bold !important;
    font-size: 22px !important;
}