@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --theme_color: #998FC7;
    --heading_color: #28262C;
    --para_heading:#D4C2FC;
    --white: white;
    --font-family: "Poppins", sans-serif;
    --font-bold: 700;
    --font-mid: 500;
    --font-reg: 400;
    --font-reg-light: 300;
    --heading-font-size: 1.4rem;
    --para-font-size: .9rem;
    --border-radius-extra: 8px;
    --border-radius-light: 4px;
    --box-shadow: 4px 8xp 20px rgba(0 0 0 /.4);
    --mon: "Montserrat", sans-serif;
	--blue: #8a6bff;
	--darkblue: #0a0a36;

}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    text-decoration: none;
    box-sizing: border-box;
    scrollbar-width: none;

}

body {
    overflow-x: hidden;
    font-family: var(--font-family);
    scroll-behavior: smooth;
    scrollbar-width: none;
}

html{
    scroll-behavior: smooth;
}

a,
img{
    min-width: auto;
    max-width: 100%;
    display: block;
    cursor: pointer;
    transition: .2s all linear;
    /* opacity: .7; */
}

.cardBody{
    width: 100%;
    /* height: 300px; */
    /* background-color: white; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
    /* position: fixed; */
    /* inset: 0; */
    /* margin: auto; */
    /* z-index: 10; */
    box-shadow: 8px 2px 25px rgba(0 0 0 /.2) ;
    border: 1px solid var(--theme_color);
}

.formClosed {
    position: absolute;
    top: 5%;
    right: 5%;
    color: black;
    font-size: 1.2rem;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
}

.cardBody h2{
  margin-bottom: 10px;
}

.cardBody a.fp{
  width: 100%;
  display: flex;
  color: #5881D0;
}

.login_register{
  display: flex;
  width: 100%;
  border: 1px solid rgba(221, 221, 221, 1);
  border-radius: 15px;
  margin: 20px 0;
}

.login_register a{
  font-size: 1em;
  padding: 10px 55px;
  border: none;
  width: 50%;
}

.login_register a.login{
  border-radius: 15px;
  background: linear-gradient(90deg, #003A74, #006AD5);
  color: white;
}

.login_register a.register{
  border-radius: 15px;
  background-color: transparent;
  color: black;
}


.form input{
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  color: rgb(28, 28, 28);
  font-family: "Roboto Mono", sans-serif;
  box-shadow: 1px 5px 9px rgba(211, 211, 211, .7);
}

.form input.email{
  margin-bottom: 15px;
}

.form input.pass{
  margin-bottom: 5px;
}

.login_btn{
  font-size: 20px;
  color: white;
  border-radius: 15px;
  border: none;
  /* background-color: #003A74; */
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  /* background: linear-gradient(-90deg, #003A74, #006AD5); */
  /* background: linear-gradient(-90deg, #003A74, #006AD5); */
  box-shadow: 1px 5px 9px rgba(211, 211, 211, .9);
}

.footer_card{
  display: flex;
  width: 100%;
  justify-content: center;
}

.footer_card p{
  margin-right: 10px;
}

.footer_card a{
  color: #5881D0;
}

.itthum_title {
    position: fixed;
    right: 20px;
    top: 50%;
    color: transparent;
    font-size: 4px;
    width: 100%;
    text-align: right;
}

li a:hover {
    transform:  translateX(5px);
    opacity: .7;
}

button,
.button {
    /* background: linear-gradient(79.76deg, #0060ef 2.09%, #150190 49.35%, #8601f0 95.63%); */
    background: linear-gradient(79.76deg, rgb(112, 163, 238),rgb(160, 147, 213));
    padding: 0;
    color: white;
    border-radius: var(--border-radius-light);
    transition: .2s all ease-in-out;
    font-weight: var(--font-bold);
    transition: .2s all ease-in-out;
    font-size: 1rem;
}

button:hover {
    transform: translateY(-4px);
    cursor: pointer;
}


.button:hover {
    transform: translateY(-4px);
    cursor: pointer;
}


.header_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
}

.login_wrapper {
    display: grid;
    /* grid-template-columns: .5fr; */
    /* width: 50%; */
    justify-content: flex-end;
}

.logo_wrapper img {
    width: 100px;
}

.logedin {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
    align-items: center;
    gap: 10px !important;
}


.call_button {
    /* width: 100px; */
    /* height: 100px; */
    display: flex;  
    justify-content: start;
    align-items: center;
    position: fixed;
    /* right: 10px; */
    border-radius: 100%;
    padding: 0;
    bottom: 15px;
    left: 15px;
}

.book_button {
    background: var(--heading_color);
    text-align: center;
    font-size: var(--para-font-size);
    color: var(--white);
    border-radius: var(--border-radius-light);
    box-shadow: 4px 8px 20px rgba(0 0 0 /.4);
    padding: 10px;
    font-weight: var(--font-mid);
    padding: 1rem 2rem;
    width: 70%;
}

.call_button span {
    background-color: var(--theme_color);
    color: var(--para_heading);
    border-radius: 50%;
    padding: 2rem;
    font-size: var(--heading-font-size);
}


.main_heading {
    font-size: var(--heading-font-size);
    text-align: center;
    padding: 2%;
}

.car_brand_form_wrapper {
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%,-0%);
    width: 80%;
    /* min-height: 250px; */
    /* max-height: 550px; */
    height: 80vh;
    max-width: auto;
    margin: 0px auto;
    padding: 1rem 2rem;
    box-shadow: var(--box-shadow);
    background-color: white;
    z-index: 20;
    border-radius: var(--border-radius-light);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border: 1px solid var(--darkblue);
    border-top: 4px solid var(--darkblue);

}

.book_Service {
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%,-0%);
    width: 450px;
    /* min-height: 450px; */
    /* max-height: 80vh; */
    height: 80vh;
    max-width: auto;
    margin: 0px auto;
    /* padding: 1rem 2rem; */
    box-shadow: var(--box-shadow);
    background-color: white;
    z-index: 20;
    border-radius: var(--border-radius-light);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border: 1px solid var(--darkblue);
    border-top: 4px solid var(--darkblue);
    overflow-y: visible;

}

.car_brand_form_wrapper::-webkit-scrollbar {
    width: .25em;
}

.car-brand-selector {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* justify-content: space-between; */
    gap: 20px;
    width: 100%;
    padding: 5% 0px 5% 0px;
}

.car-brand-selector img {
    max-height: 50px;
    border-radius: var(--border-radius-extra);
    margin: 0 auto;
}

.model_wrapper {
    width: 100%;
    z-index: 20;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr); 
    grid-auto-rows: 50px;
    text-align: center;
    gap: 20px;
    align-items: start;
    color: black;
    transition: .3 all ease-in-out;
    background-color: white;
}

.models_name {
    cursor: pointer;
    padding: 1rem 0px;
}

.submit_btn_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.success_alert {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
    background-color: black;
    color: white;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 200px;
    z-index: 100;
}

.term_policy_wrapper {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 10px;
}

.term_wrapper {
    padding: 4% 8%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.term_policy_point_wrapper {
    display: grid;
    grid-template-columns: repeat(1,90%);
    gap: 10px;
    font-size: var(--para-font-size);
}

.sub_heading {
    font-size: 1.4rem;
}

.closeForm_icon {
    background-color: rgb(206, 196, 196);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -10%;
    left: 50%;
    transform: translate(-50%,00%);
    margin: 0px auto;
    z-index: 25;
    cursor: pointer;
    position: absolute;
    transition: .2s all linear;
    color: red;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.footer_wraper {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr;
    /* grid-template-columns: 30% 20% 20% 20% 20%; */
    list-style: none;
    justify-content: center;
    padding: 4% 0px;
}

.footer_logo_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    padding: 5px;
}

.footer_para {
    font-size: .8rem;
}


.footer_logo {
    width: 150px;
}

.box_one h2 {
    font-size: 1.2rem;
    padding: 2% 0px;
    margin: 2% 4px;
}

.footer_wraper ul {
    width: 80%;
}

.footer_wraper li {
    list-style: none;
    line-height: 2.1;
    text-transform: capitalize;
    font-size: var(--para-font-size);
}

.footer_wraper li a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2px;
}

.footer_wraper li a p {
    color: var(--heading_color);
}

.copyright_wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 10px; */
    background-color: rgb(124, 128, 189);
    color: white;
    width: 100%;
}
.footer_para {
    width: 80%;
}

.footer_social_icon {
    display: flex;
    justify-content: space-evenly;
    gap: 10px;
    font-size: 2rem;
    color: blue;
}

.copyright_heading {
    font-size: .8rem;
}

.whatsapp_now {
    padding: 5px 10px !important;
}


.footer_links {
    display: flex;
    align-items: center;
    gap: 10px !important;
    color: rgba(0 0 0 /.4);
}

.footer_links i {
    color: #0643de;
}


.about_wrapper {
    padding: 4% 8%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.about_para_img_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about_para_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: .8rem;
    padding: 0px 4% 0px 0%;
}

.img_wrapper {
    background: url("../img/aboutus/about-us.webp") 100%;
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: var(--border-radius-extra);
}

.car_brand_show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;

}

.all_logo_wrapper {

    display: flex;
    overflow-x: scroll;justify-content: space-evenly;
    gap: 20px;

}

.all_logo_wrapper img {
    width: 100px;
}


.service_catalog_wrapper {
display: none;
}

.marquee {
    width: 100%;
}

.marquee-content {
  display: flex;
  animation: scrolling 10s linear infinite;
}


.marquee-content::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.marquee-item {
  flex: 0 0 8vw;
  margin: 0 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-shadow);
  box-shadow: 8px 4px 25px rgba(0 0 0 /.2);
  border-radius: var(--border-radius-extra);
/*   flex: 0 0 20vw; */
/*   margin: 0 2vw; */
}

.marquee-item img {
  display: block;
  width: 100px;
/*   padding: 0 20px; */
}

@keyframes scrolling {
  0% { transform: translateX(0); }
  50% { transform: translateX(-40vw); }
  70% { transform: translateX(-80vw); }
  100% { transform: translatex(-120vw); }
}

.car_brand_logo_heading {
    padding: 4% 0px;
}

@media (min-width:1024px) {

    .logo_wrapper img {
        width: 150px;
    }

    .main_heading {
        font-size: 1.8rem;
        text-align: center;
        padding: 2%;
    }

    button {
        /* background: linear-gradient(79.76deg, #0060ef 2.09%, #150190 49.35%, #8601f0 95.63%); */
        background: linear-gradient(79.76deg, rgb(112, 163, 238),rgb(160, 147, 213));
        padding: 1rem 2rem;
        color: white;
        border-radius: var(--border-radius-light);
        transition: .2s all ease-in-out;
        font-weight: var(--font-bold);
        transition: .2s all ease-in-out;
    }
    
    .car_brand_form_wrapper {
        width: 450px;
    }

    button:hover {
        transform: translateY(-4px);
        cursor: pointer;
    }
    
    header {
        padding: 2% 8%;
    }

    .call_button {
        display: none;
    }

    .why_turmigo_slider {
        display: flex;
        gap: 20px;
        padding: 10px 4%;
    }

    .service_catalog_wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2% 2%;
        min-height: 400px;
        max-height: auto;
        gap: 30px;
        color: white;
        background: url("../img/service-bg.webp"), linear-gradient(45deg, blue,blue);
        background-attachment: fixed;
        background-size: cover;
        /* margin: 2% 0px; */
        transition: .2s all linear;
    }


    .service_category {
        display: flex;
        justify-content: space-around;
        width: 100%;
        gap: 20px;
    }

    .car_service_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(255 255 255 /.4);
        border: 1px solid white;
        padding: 10px 2rem; 
        border-radius: var(--border-radius-light);
    }
 

    .car_service_box:active {
        background-color: rgba(255 255 255 /1);
        backdrop-filter: blur(0px);
    }


    .car_service_box_inside {
        text-align: center;
    }

    .car_service_box img {
        width: 80px;
        margin: 0px auto;
    }

    .service_title {
        color: white;
    }

    .category {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0px 2%;

    }

    .category_box {
        position: relative;
        overflow: hidden;
        border-radius: var(--border-radius-light);
        padding: 10px;
    }

    .category_box_inside {
        height: 100%;
        position: relative;
        align-items: center;
        justify-content: center;
        background-color: white;
        padding: 20px;
        border-radius: var(--border-radius-light);
        color: #28262C;
        cursor: pointer;


    }

    .category_inside {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* gap: 12rem; */
    }

    .title_wrapper {
        width: 100%;
        padding: 2% 0px;
        font-size: var(--heading-font-size);
    }

    .time_box_wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .price_check_button {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        cursor: pointer;
        font-size: .8rem !important;

    }


    .category_img {
        display: grid;
        grid-template-columns: 250px;
        justify-content: flex-end;
    }


    .check_button {
        background-color: green;
    }

    .coupan {
        clip-path: polygon(2% 0, 100% 0, 100% 100%, 2% 100%, 7% 50%);
        background: linear-gradient(90deg, #34c38f 50%, #0643de);
        text-align: right;
        padding: 2%  5%;
        width: 200px;
        position: absolute;
        right: 2%;
        top: 5%;
        color: white;
        font-size: var(--para-font-size);
    }

    .data_show {
        /* display: none; */
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
 
    }
/* 
    .data_show.active { 
        display: block;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    } */


    
    
    .about_para_img_wrapper {
        display: grid;
        grid-template-columns: 70% 30%;
        gap: 30px;
    }
    

    .footer_wraper {
        width: 90%;
        display: grid;
        /* grid-template-columns: 1fr; */
        grid-template-columns: 1fr 1fr .5fr;
        list-style: none;
        justify-content: center;
        padding: 4% 0px;
    }



}