/* White aesthetic modern scrollbar */
/* Custom Scrollbar with #d16527 accent */
::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #ffffff; /* Pure white track */
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #d16527; /* Accent orange */
    border-radius: 10px;
    border: 2px solid #ffffff; /* White border to blend with track */
    transition: background-color 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #b6541f; /* Slightly darker on hover */
  }
  
  /* Firefox support */
  * {
    scrollbar-width: thin;
    scrollbar-color: #d16527 #ffffff;
  }
  
  
body{
    background-color: var(--second-black) !important;
    overflow-x: hidden;
}

/* custom cursor start */

#cursor {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px dashed var(--accent-clr);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
  z-index: 999999;
  animation: spin 2s linear infinite;
  box-shadow: inset 0px 0px 10px var(--accent-clr);
}

/* Spin animation */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


.clicked {
  width: 20px !important;
  height: 20px !important;
  transform: translate(-50%, -50%) scale(0.7) !important;
}

/* custom cursor end */

/* preloader start */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);

body {
  background-color: #000;
}
.preloader-container {
  position: fixed;
  width: 120px;
  background: var(--body-black  );
  width: 100vw;
  height: 100vh;
  z-index: 999999;
}
.loading 
{
  position: absolute;
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #CCC;
  font-weight: 600;
  left: calc(50% - 44px);
  top: 75%;
}
.body {
  position: absolute;
  top: 20%;
  left: calc(50% - 150px);
  animation: speeder .4s linear infinite;
}
.body > span {
  height: 5px;
  width: 10px;
  background: #000;
  position: absolute;
  top: 80px;
  left: 10px;
  border-radius: 2px 10px 1px 0;
}

.base span {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 100px solid #000;
  border-bottom: 6px solid transparent;
}
.base span:before {
  content: "";
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  right: -110px;
  top: -16px;
}
.base span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 55px solid #000;
  border-bottom: 16px solid transparent;
  top: -16px;
  right: -98px;
}
.body > span > span:nth-child(1),
.body > span > span:nth-child(2),
.body > span > span:nth-child(3),
.body > span > span:nth-child(4) {
  width: 30px;
  height: 1px;
  background: #ddd;
  position: absolute;
  animation: fazer1 .2s linear infinite;
}

.body > span > span:nth-child(2) {
  top: 3px;
  animation: fazer2 .4s linear infinite;
}

.body > span > span:nth-child(3) {
  top: 1px;
  animation: fazer3 .4s linear infinite;
  animation-delay: -1s;
}

.body > span > span:nth-child(4) {
  top: 4px;
  animation: fazer4 1s linear infinite;
  animation-delay: -1s;
}

@keyframes fazer1 {
  0% {
    left: 0;
  }
  100% {
    left: -80px;
    opacity: 0;
  }
}
@keyframes fazer2 {
  0% {
    left: 0;
  }
  100% {
    left: -100px;
    opacity: 0;
  }
}
@keyframes fazer3 {
  0% {
    left: 0;
  }
  100% {
    left: -50px;
    opacity: 0;
  }
}
@keyframes fazer4 {
  0% {
    left: 0;
  }
  100% {
    left: -150px;
    opacity: 0;
  }
}
@keyframes speeder {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.longfazers {
  position: absolute;
  width: 100%;
  height: 100%;
}
.longfazers span {
  position: absolute;
  height: 2px;
  width: 20%;
  background: #999;
}
.longfazers span:nth-child(1) {
  top: 20%;
  animation: lf .6s linear infinite;
  animation-delay: -5s;
}
.longfazers span:nth-child(2) {
  top: 40%;
  animation: lf2 .8s linear infinite;
  animation-delay: -1s;
}
.longfazers span:nth-child(3) {
  top: 60%;
  animation: lf3 .6s linear infinite;
}
.longfazers span:nth-child(4) {
  top: 80%;
  animation: lf4 .5s linear infinite;
  animation-delay: -3s;
}

@keyframes lf {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}
@keyframes lf2 {
  0% {
    left: 200%;
  }
  100% {
    left: -200%;
    opacity: 0;
  }
}
@keyframes lf3 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}
@keyframes lf4 {
  0% {
    left: 200%;
  }
  100% {
    left: -100%;
    opacity: 0;
  }
}


/* preloader end */

/* header start */

header{
    background-color: var(--second-black);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navLinks ul li:hover{
    color: var(--accent-clr);
    transition: var(--transition-1)
}
.navLinks > ul > li::before{
    transition: all 200ms linear 0ms;
    position: absolute;
    content: "";
    bottom: -6px;
    z-index: 100;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 14px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: var(--accent-clr);
}
.navLinks ul li:hover::before{
    transform: translateX(-50%) scale(1);
}
.navLinks > ul > li:after{
    position: absolute;
    content: '+';
    right: -12px;
    bottom: 1px;
    font-size: 17px;
    display: inline-block;
    color: var(--accent-clr);
}
.submenu{
    position: absolute;
    background: var(--body-black) !important;
    top: 100%;
    left: 0;
    margin-top: 34px;
    margin-bottom: 0;
    margin-left: 0;
    min-width: 225px;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    border: 2px solid #ededed;
    box-shadow: 0 0 10px rgba(6, 6, 6, .14);
    transition: all 200ms linear 0ms;
    transform-origin: 0 0 0;
    text-align: left;
    transform: scaleY(0);
}
.submenu li{
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 1.714;
    padding: 11.7px 25px;
    color: white;
    color: #ededed;
    font-weight: 600;
    border-bottom: 1px solid rgba(248, 246, 247, .1);
}
.navLinks ul li:hover .submenu{
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    color: var(--accent-clr);
}



.navPhoneNumber{
    /* background-color: var(--accent-clr) !important; */
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    border: 2px solid var(--accent-clr);
}

.navPhoneNumber::before{
    background-color: var(--accent-clr) !important;
    position: absolute;
    background: var(--accent-clr);
    content: '';
    inset: 0;
    overflow: hidden;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    z-index: -1;
}
.navPhoneNumber:hover::before{
    transform: scaleX(1);
}

/* offcanvas start */

.offcanvas{
    width: 250px !important;
}

.offcanvas-body ul li:hover{
    transition: var(--transition-1);
    color: var(--accent-clr);
}

/* offcanvas end */


/* header end */



/* main start */

/* hero start */

.secHeading{
    font-size: 170px;
    top: -100px;
    left: -100px;
}

.mainHeading{
    color: var(--heading-clr);
    font-size: 66px;
}

.hero-left{
    min-height: 590px;
}

.car-image{
    height: 750px;
    width: 750px;
    bottom: -300px;
    right: 0;
    animation: bouce 0.8s linear none 3;
    padding-top: 80px;
}

@keyframes bouce {
    0%{
        bottom: -300px;
    }
    50%{
        bottom: -290px;
    }
    100%{
        bottom: -300px;
    }
}

.video-holder{
    margin-top: 100px;
}

.video-holder img{
    width: 100%;
    object-fit: cover;
    filter: brightness(30%);
    transition: all 200ms linear 0ms;
}

.video-holder:hover img{
    transform: scale(1.15) rotate(-.5deg);
}

.video-holder button{
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    padding: 0px 9px 7px;
    clip-path: polygon(13px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
}
.video-holder button img{
    margin-top: 10px;
}

/* hero end */

/* clients section start */

.clients .client-card{
    border: 1px solid var(--border-clr);
    padding: 40px 80px;
    transition: all 0.2s linear;
    height: 150px;
    width: 400px;
}


.client-card:hover{
    border: 1px solid var(--accent-clr);
}

.client-card img{
    object-fit: contain;
    min-width: 100px;
}

/* clients section end */

/* service section start */

.service-bg{
    background-image: url(../images/services/tyre-bg.jpg);
    background-size: cover;
    padding: 100px 100px;
}

.service-sub-text{
    font-size: 18px;
    line-height: 26px;
}

.whats-incuded-item-container{
    position: relative;
    padding-left: 30px;
    display: block;
}

.whats-incuded-item-container::before{
    content: '';
    display: inline-block; 
    background-color: #d16527;
    width: 20px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* service section end */

/* services-2 section start */

.banner-heading .h4.fw-bold{
    background-color: var(--accent-clr);
}
.banner-heading h3:hover{
    color: var(--accent-clr);
    transition: var(--transition-1);
}

.banner {
    padding: 64px 40px 63px;
    position: relative;
    overflow: hidden;
    height: 240px;
}

.banner-img-container {
    top: 0;
    left: 0;
}

.banner-image {
    background-image: url(../images/services-2/banner-1.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}
.banner-img-2{
    background-image: url(../images/services-2/banner-2.jpg);
    opacity: 0.1;
}



.service-2-btn span {
    transition: color 0.3s;
  }
  
.services-2-btn-container:hover .service-2-btn span {
    color: var(--accent-clr) !important;
}



.service-2-btn::before{
    content: ">";
    font-weight: bold;
    font-family: var(--chakra);
    position: relative;
    font-size: 10px;
    margin-right: 10px;
    line-height: 1;
    color: rgb(237, 237, 237);
    background-color: var(--accent-clr);
    clip-path: polygon(5px 0px, 100% 0px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0px 100%, 0px 5px);
    padding: 4.5px 6.5px 5.5px 7.5px;
    overflow: hidden;
    top: -3px;
}

.services-2-banner-2{
    border-top:2px solid var(--border-clr);
    transition: all 0.2s linear;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.services-2-btn-container{
    justify-self: flex-end !important;
    margin-top: auto;
}

.services-2-banner-2:hover{
    border-top: 2px solid var(--accent-clr);
}

/* services-2 section end */

/* our shop section start */

.our-shop .secHeading{
    top: -40px;
    left: 0;
    font-size: 70px;
    transition: var(--transition-1);
}

.our-shop:hover .secHeading{
    top: -60px;
}

.our-shop-product-image{
    transition: var(--transition-1);
    border-top: 2px solid var(--border-clr);
    background-color: var(--second-black);
}

.our-shop-product-image:hover{
    border-top: 2px solid var(--accent-clr);
}

.our-shop-product-image img{
    transition: var(--transition-1);
}

.our-shop-product-image:hover img{
    scale: 0.9;
}

.add-to-card{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.add-to-card::before{
    content: ">";
    font-weight: bold;
    font-family: var(--chakra);
    position: relative;
    font-size: 10px;
    margin-right: 10px;
    line-height: 1;
    color: rgb(237, 237, 237);
    background-color: var(--accent-clr);
    clip-path: polygon(5px 0px, 100% 0px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0px 100%, 0px 5px);
    padding: 4.5px 6.5px 5.5px 7.5px;
    overflow: hidden;
    top: -10px;
}

.shop-eye, .shop-heart{
    color: var(--heading-clr);
    background-color: var(--accent-clr);
    padding: 8px 10px;
    font-weight: bold;
    transition: var(--transition-1);
    border: 1px solid var(--accent-clr);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
}

.shop-eye:hover, .shop-heart:hover{
    color: var(--accent-clr);
    background-color: var(--body-black);
}

.shop-eye{
    right: 10px;
    top: 70px;
}
.shop-heart{
    right: 10px;
    top: 20px;
}

.our-shop-top:hover .shop-eye, .our-shop-top:hover .shop-heart{
    visibility: visible;
    opacity: 1;
}

/* our shop section end */

/* reviews section start */

.review-card{
    padding: 20px 40px;
    border: 1px solid var(--border-clr);
    transition: var(--transition-1);
}
.review-card:hover{
    border: 1px solid var(--accent-clr);
}

.review{
    border-bottom: 1px solid var(--border-clr) ;
}

.review-quates{
    color: var(--accent-clr);
}

.reviewer-rating i{
    color: #eccc38;
}

span:hover .img-1-1{
    animation: blur 1s linear none 1;
    transform: scaleX(-1) scaleY(-1);
}

.img-2-1{
    transition: var(--transition-1);
}
span:hover .img-2-1{
    animation: blur 1s linear none 1;
    transform: scale(1.1);
}

@keyframes blur {
    0%{
        filter: blur(10px);
    }
    100%{
        filter: blur(0);
    }
}

/* reviews section end */

/* location section start */

.location-header{
    border-bottom: 1px solid var(--border-clr);
    transition: var(--transition-1);
}
.location-header:hover{
    border-bottom: 1px solid var(--accent-clr);
}

.location-bg-1, .location-bg-2{
    background-image: url(../images/location/bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.location-bg-2{
    background-image: url(../images/location/bg-2.jpg);
}
.location-ct{
    background-color: transparent;
    background-image: linear-gradient(-180deg, #1E1E1E36 0%, #0D0D0D 100%);
    opacity: 0.9;
}
.location i, .phone-number i{
    color: var(--accent-clr);
}
.location-ct h3{
    padding-top: 250px;
}

.location-ct{
    padding: 50px;
}


/* location section end */

/* scoll To top */

.scroll-top{
  position: fixed;
  background-color: white;
  width: 50px;
  height: 50px;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  color: #c6c6c6;
  background-color: var(--accent-clr);
  border-radius: 50%;
  place-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top span{
  transition: var(--transition-1);
}

.scroll-top:hover span{
  color: #dadada;
  scale: 1.2;
}

.scroll-top:active span{
  scale: 1;
}

/* main end */



/* footer start */

/* footer top start */

.footer-ul li::before{
    content: '•';
    font-family: var(--chakra);
    font-size: 20px;
    color: var(--accent-clr);
    position: absolute;
    display: inline-block;
    left: -16px;
    top: -5px;
}
.footer-ul li::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    border-bottom: 2px dashed var(--accent-clr);
    transition: all 200ms linear 0ms;
}

.footer-ul li:hover::after{
    width: 100%;
}

.footer-subscribe form input{
    width: 100%;
    color: #ededed;
    background-color: initial;
    font-size: 14px;
    line-height: 2.7857;
    font-weight: 600;
    padding: 0;
    border: none;
    border-bottom:1px solid var(--border-clr);
    outline: none;
}

.footer-subscribe form input::placeholder{
    color: var(--heading-clr);
    font-family: var(--mulish);
}

/* footer top end */

/* footer bottom start */

.footer-bottom span{
    color: var(--accent-clr);
    transition: var(--transition-1);
}
.footer-bottom span:hover{
    color: var(--heading-clr);
}

/* footer bottom end */

/* footer end */