* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 !important;
}

::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c7b3a4;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c7b3a4;
}

::selection {
  color: #000;
  background: #c7b3a4;
}

::-moz-selection {
  color: #000;
  background: #c7b3a4;
}

@font-face {
  font-family: "Ferrari Sans";
  src: url("../fonts/Ferrari-SansMedium.woff2") format("woff2"), url("../fonts/Ferrari-SansMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ferrari Sans";
  src: url("../fonts/Ferrari-SansRegular.woff2") format("woff2"), url("../fonts/Ferrari-SansRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ferrari Sans";
  src: url("../fonts/Ferrari-SansBold.woff2") format("woff2"), url("../fonts/Ferrari-SansBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ferrari Sans";
  src: url("../fonts/Ferrari-SansLight.woff2") format("woff2"), url("../fonts/Ferrari-SansLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body,
* {
  font-family: "Ferrari Sans";
  margin: 0;
}

.site-header {
  position: fixed;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  z-index: 1000;
}

.site-header .main-logo img {
  max-height: 33px;
  display: block;
}

.button_container {
  position: fixed;
  top: 29px;
  left: 20px;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 1100;
  transition: opacity 0.25s ease;
}

.button_container:hover {
  opacity: 0.7;
}

.button_container span {
  background: #fff;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 11px;
}

.button_container span:nth-of-type(3) {
  top: 22px;
}

.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #000;
}

.button_container.active .middle {
  opacity: 0;
  background: #000;
}

.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #000;
}

.button_container.active .main-logo img {
  filter: none;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 15px !important;
  color: #1f1f1f;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

button:hover {
  background: #ebebeb;
}

button:hover svg {
  transform: translateX(4px);
}

header.site-header.downheader {
  opacity: 0;
  height: 0;
}

header.site-header.upheader {
  background: #000;
  opacity: 1;
}

header.site-header.upheader .main-logo img {
  filter: none;
}

header.site-header.upheader .button_container {
  top: 25px;
}

header.site-header.upheader .button_container span {
  background-color: #000;
}

.main-banner {
  /* Remove default Bootstrap arrow icons */
  /* Create white arrow with ::after pseudo-element */
  /* Rotate arrows correctly */
  /* Optional: make clickable area bigger */
}

.main-banner .carousel-indicators {
  display: none;
  top: 92%;
  bottom: auto;
  z-index: 15;
  justify-content: center !important;
  align-items: center;
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  width: 100%;
  gap: 12px;
}

.main-banner .carousel-indicators button {
  cursor: pointer;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  opacity: 0.5;
  background: #fff;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.main-banner .carousel-indicators button.active {
  opacity: 1;
  background-color: transparent;
  border: 1px solid #fff;
  width: 18px;
  height: 18px;
  position: relative;
  top: -4px;
}

.main-banner .carousel-indicators button.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}

.main-banner .carousel-indicators button:hover {
  opacity: 0.8;
}

.main-banner .carousel-item {
  position: relative;
}

.main-banner .carousel-item::after {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, #000, transparent);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.main-banner .carousel-item img {
  height: 80vh;
  object-fit: cover;
}

.main-banner .carousel-item .caption {
  position: absolute;
  bottom: 80px;
  left: 0;
  color: #fff;
  width: 100%;
  z-index: 9;
  width: 100%;
  padding: 0 20px;
}

.main-banner .carousel-item .caption h6.sub-topic {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}

.main-banner .carousel-item .caption h1.main-title-banner {
  font-size: 40px;
  line-height: 40px;
  padding-bottom: 5px;
}

.main-banner .carousel-item .caption h3.desc {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1px;
  padding-bottom: 25px;
}

.main-banner .carousel-control-prev-icon,
.main-banner .carousel-control-next-icon {
  background-image: none;
  /* Remove default SVG */
  width: 50px;
  /* Arrow container width */
  height: 50px;
  /* Arrow container height */
  position: relative;
}

.main-banner .carousel-control-prev-icon::after,
.main-banner .carousel-control-next-icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 3px solid #000000;
  /* White color */
  border-right: 3px solid #000000;
  /* White color */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-banner .carousel-control-prev-icon::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.main-banner .carousel-control-next-icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.main-banner .carousel-control-prev {
  width: 5%;
  /* adjust as needed */
  left: 20px;
}

.main-banner .carousel-control-next {
  width: 5%;
  /* adjust as needed */
  right: 20px;
}

.range-sec {
  padding: 80px 0;
}

.range-sec .main-wrap {
  padding: 0;
}

.range-sec .title {
  text-align: left;
  margin-bottom: 40px;
}

.range-sec .title .sub-topic {
  font-size: 16px;
  padding-bottom: 5px;
  color: #1b1b1b;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
}

.range-sec .title .main-topic {
  font-size: 25px;
  color: #1b1b1b;
  font-weight: 400;
  line-height: 30px;
}

.range-sec .grid-sec {
  position: relative;
}

.range-sec .grid-sec .parent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.range-sec .grid-sec .parent a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.range-sec .grid-sec .parent a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(0deg, #00040a 1.22%, rgba(0, 4, 10, 0.6) 27.15%, rgba(0, 4, 10, 0) 79.96%);
}

.range-sec .grid-sec .parent a:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.range-sec .grid-sec .parent a:hover .caption-box {
  bottom: 0;
  opacity: 1;
}

.range-sec .grid-sec .parent a .img-vehicle {
  height: 450px;
}

.range-sec .grid-sec .parent a .img-vehicle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.range-sec .grid-sec .parent a:hover .img-vehicle img {
  transform: scale(1.05);
}

.range-sec .grid-sec .parent a .caption-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  transition: all 0.4s ease;
}

.range-sec .grid-sec .parent a .caption-box .sub--topic {
  color: var(--White-color, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 222.222% */
}

.range-sec .grid-sec .parent a .caption-box .vehicle-name {
  color: var(--White-color, #fff);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 250% */
  letter-spacing: -0.4px;
  padding-bottom: 20px;
}

.electrified-sec {
  padding: 80px 0;
}

.electrified-sec .main-wrap {
  padding: 0 20px;
}

.electrified-sec .title {
  text-align: left;
  margin-bottom: 40px;
}

.electrified-sec .title .sub-topic {
  font-size: 16px;
  padding-bottom: 5px;
  color: #1b1b1b;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
}

.electrified-sec .title .main-topic {
  font-size: 25px;
  color: #1b1b1b;
  font-weight: 400;
  line-height: 30px;
}

.electrified-sec .electrified-card-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.electrified-sec .electrified-card-container .electrified-card-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 600px;
}

.electrified-sec .electrified-card-container .electrified-card-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(0deg, #00040a 1.22%, rgba(0, 4, 10, 0.6) 27.15%, rgba(0, 4, 10, 0) 79.96%);
}

.electrified-sec .electrified-card-container .electrified-card-item:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.electrified-sec .electrified-card-container .electrified-card-item:hover .caption-box {
  bottom: 0;
  opacity: 1;
}

.electrified-sec .electrified-card-container .electrified-card-item .img-vehicle {
  height: 450px;
}

.electrified-sec .electrified-card-container .electrified-card-item .img-vehicle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.electrified-sec .electrified-card-container .electrified-card-item:hover .img-vehicle img {
  transform: scale(1.05);
}

.electrified-sec .electrified-card-container .electrified-card-item .caption-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  transition: all 0.4s ease;
}

.electrified-sec .electrified-card-container .electrified-card-item .caption-box .sub--topic {
  color: var(--White-color, #fff);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 222.222% */
}

.electrified-sec .electrified-card-container .electrified-card-item .caption-box .vehicle-name {
  color: var(--White-color, #fff);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 250% */
  letter-spacing: -0.4px;
  padding-bottom: 20px;
}

.electrified-sec .electrified-card-container .electrified-card-item .caption-box .spec-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: none;
  padding: 10px 30px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.electrified-sec .electrified-card-container .electrified-card-item .caption-box .spec-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.electrified-sec .electrified-card-container .electrified-card-item .caption-box .spec-btn:hover {
  background: #ebebeb;
}

.electrified-sec .electrified-card-container .electrified-card-item .caption-box .spec-btn:hover svg {
  transform: translateX(4px);
}

.book-sec {
  padding-bottom: 80px;
  background-color: linear-gradient(0deg, #f8f8fa, transparent);
  padding: 0 13px;
  margin-top: 50px;
}

.book-sec .main-wrap {
  padding: 0;
}

.book-sec .title {
  padding: 0 20px 40px;
}

.book-sec .title .main-topic {
  font-size: 25px;
  color: #1b1b1b;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 20px;
}

.book-sec .title button {
  background-color: #000;
  margin: 20px auto 30px;
  display: flex;
  color: #fff;
}

.book-sec .title .para-main {
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.book-sec .slider-details {
  margin-top: 50px;
}

.book-sec .slider-details .slider-items {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 0 0 20px 20px;
  margin: 0 20px 50px;
}

.book-sec .slider-details .slider-items:hover {
  transform: translateY(-5px);
}

.book-sec .slider-details .slider-items .wrap {
  position: relative;
}

.book-sec .slider-details .slider-items .wrap .img-book img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.book-sec .slider-details .slider-items .wrap .title-sub-title {
  margin-top: 15px;
  position: absolute;
  padding: 35px 40px;
  bottom: 0;
  left: 0;
}

.book-sec .slider-details .slider-items .wrap .title-sub-title .sub-title {
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}

.book-sec .slider-details .slider-items .wrap .title-sub-title .main-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 34px;
  color: #fff;
}

.book-sec .slider-details .slider-items .wra {
  flex-grow: 1;
  gap: 20px;
  min-height: 200px;
  padding: 20px;
}

.book-sec .slider-details .slider-items .wra .para {
  font-size: 14px;
  line-height: 24px;
}

.book-sec .slider-details .slider-items .wra button {
  background: #000;
  color: #fff;
  margin: 20px 0;
}

.book-sec .slider-details .slick-dots {
  bottom: -35px;
}

.book-sec .slider-details .slick-dots li button:before {
  font-size: 12px;
  color: #ff0000;
  opacity: 0.4;
}

.book-sec .slider-details .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ff0000;
}

.home-bottom-card-container .home-bottom-card-main-wrap {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card {
  background: #f5f5f5;
  border-radius: 20px;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image {
  height: 320px;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book {
  position: relative;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book img {
  height: 320px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book video {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00040a 1.22%, rgba(0, 4, 10, 0.6) 27.15%, rgba(0, 4, 10, 0) 79.96%);
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-titles {
  position: relative;
  bottom: 80px;
  left: 20px;
  color: #fff;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content {
  padding: 25px 22px;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content .home-bottom-card-para {
  color: #1b1b1b;
  text-align: start;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 156.25% */
  text-transform: capitalize;
}

.home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content .button-wrap {
  margin-top: 20px;
}

.site-footer {
  background: #111;
  color: #e8e8e8;
  padding: 60px 0 20px;
  line-height: 1.6;
  border-bottom: 4px solid #db292f;
}

.site-footer .main-wrap {
  padding: 0 20px;
}

.site-footer .main-wrap .top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 40px;
  margin-bottom: 40px;
}

.site-footer .main-wrap .top .div-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer .main-wrap .top .div-row img {
  width: 100%;
  max-height: 100px;
  display: block;
}

.site-footer .main-wrap .top .div-row .para {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.site-footer .main-wrap .top .div-row .social-media {
  display: flex;
  gap: 16px;
}

.site-footer .main-wrap .top .div-row .social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.site-footer .main-wrap .top .div-row .social-media a svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  stroke: #fff;
  transition: transform 0.3s ease;
}

.site-footer .main-wrap .top .div-row .social-media a:hover {
  background: #e60012;
}

.site-footer .main-wrap .top .div-row .social-media a:hover svg {
  transform: scale(1.1);
  stroke: #fff;
  fill: #fff;
}

.site-footer .main-wrap .top .div-row .footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer .main-wrap .top .div-row .pages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer .main-wrap .top .div-row .pages a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .main-wrap .top .div-row .pages a:hover {
  color: #fff;
}

.site-footer .main-wrap .top .div-row .details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .main-wrap .top .div-row .details a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.site-footer .main-wrap .top .div-row .details a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #e8e8e8;
  fill: #e8e8e8;
}

.site-footer .main-wrap .top .div-row .details a:hover {
  color: #fff;
}

.site-footer .main-wrap .top .div-row .details a:hover svg {
  stroke: #fff;
  fill: #fff;
}

.site-footer .main-wrap .top .div-row .details .address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.site-footer .main-wrap .top .div-row .details .address svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #e8e8e8;
}

.site-footer .main-wrap .bottom {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.site-footer .main-wrap .bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.site-footer .main-wrap .bottom a:hover {
  color: #e60012;
}

.desktop-menu {
  display: none;
  transition: all 0.5s;
}

@media only screen and (min-width: 768px) {
  .button_container {
    top: 25px;
  }
  .main-banner .carousel-item img {
    height: 70vh;
  }
  .main-banner .carousel-item::before {
    content: "";
    position: absolute;
    background: linear-gradient(0deg, #00040a -25.75%, rgba(0, 4, 10, 0.6) 15.66%, rgba(0, 4, 10, 0) 100%);
    height: 20%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .range-sec {
    padding: 80px 0;
  }
  .range-sec .main-wrap {
    padding: 0 20px;
  }
  .range-sec .title {
    text-align: left;
    margin-bottom: 40px;
  }
  .range-sec .title .sub-topic {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #000;
    padding-bottom: 10px;
  }
  .range-sec .title .main-topic {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: #000;
  }
  .range-sec .grid-sec {
    position: relative;
  }
  .range-sec .grid-sec .parent {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 5;
    grid-row-gap: 5;
  }
  .range-sec .grid-sec .parent .div1 {
    grid-area: 1 / 1 / 2 / 4;
  }
  .range-sec .grid-sec .parent .div2 {
    grid-area: 1 / 4 / 2 / 7;
  }
  .range-sec .grid-sec .parent .div3 {
    grid-area: 2 / 1 / 3 / 3;
  }
  .range-sec .grid-sec .parent .div4 {
    grid-area: 2 / 3 / 3 / 5;
  }
  .range-sec .grid-sec .parent .div5 {
    grid-area: 2 / 5 / 3 / 7;
  }
  .range-sec .grid-sec .parent .div6 {
    grid-area: 3 / 1 / 4 / 4;
  }
  .range-sec .grid-sec .parent .div7 {
    grid-area: 3 / 4 / 4 / 7;
  }
  .range-sec .grid-sec .parent a .img-vehicle {
    height: 320px;
  }
  .book-sec .slider-details .slider-items {
    margin: 0 5px;
  }
  .book-sec .slider-details .slider-items .wrap .img-book {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .book-sec .slider-details .slider-items .wrap .img-book img {
    height: 325px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap {
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card {
    width: calc(50% - 10px);
    background: #f5f5f5;
    border-radius: 20px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image {
    height: 360px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book {
    position: relative;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book img {
    height: 360px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book video {
    height: 360px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #00040a 1.22%, rgba(0, 4, 10, 0.6) 27.15%, rgba(0, 4, 10, 0) 79.96%);
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-titles {
    position: relative;
    bottom: 120px;
    left: 20px;
    color: #fff;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-titles .sub-title {
    font-family: Poppins;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content {
    padding: 25px 22px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content .home-bottom-card-para {
    color: #1b1b1b;
    text-align: start;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 156.25% */
    text-transform: capitalize;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content .button-wrap {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1023px) {
  button {
    gap: 0.78125vw;
    padding: 0.52083vw 1.82292vw;
    font-size: 0.9375vw !important;
    font-weight: 400;
    line-height: 1.04167vw;
    letter-spacing: 0.10417vw;
  }
  button svg {
    width: 1.19792vw;
    height: 1.19792vw;
  }
  .main-banner {
    /* Remove default Bootstrap arrow icons */
    /* Create white arrow with ::after pseudo-element */
    /* Rotate arrows correctly */
    /* Optional: make clickable area bigger */
  }
  .main-banner .carousel-indicators {
    display: flex;
    justify-content: center !important;
    padding-left: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    top: 92%;
    bottom: auto;
    margin-bottom: 0;
    /* Reset default bootstrap margin */
    align-items: flex-start;
  }
  .main-banner .carousel-indicators li {
    width: 0.625vw;
    height: 0.625vw;
    margin: 0 0.3125vw;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  .main-banner .carousel-indicators li.active {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.2);
  }
  .main-banner .carousel-indicators li:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .main-banner .carousel-item {
    position: relative;
  }
  .main-banner .carousel-item::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #00040a -25.75%, rgba(0, 4, 10, 0.6) 15.66%, rgba(0, 4, 10, 0) 100%);
    height: 23.80208vw;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .main-banner .carousel-item::before {
    height: 14.16667vw;
    bottom: 0;
    top: unset;
  }
  .main-banner .carousel-item img {
    height: 100vh;
    object-fit: cover;
  }
  .main-banner .carousel-item .caption {
    bottom: 0;
    padding: 5.20833vw;
  }
  .main-banner .carousel-item .caption h6.sub-topic {
    font-size: 1.04167vw;
    line-height: 2.08333vw;
    padding-bottom: 0;
  }
  .main-banner .carousel-item .caption h1.main-title-banner {
    font-size: 5.72917vw;
    line-height: 5.20833vw;
    letter-spacing: -0.05729vw;
    font-weight: 400;
    padding-bottom: 1.04167vw;
  }
  .main-banner .carousel-item .caption h3.desc {
    font-size: 1.5625vw;
    font-weight: 400;
    line-height: 2.08333vw;
    letter-spacing: 0.05208vw;
    padding-bottom: 1.5625vw;
  }
  .main-banner .carousel-control-prev-icon,
  .main-banner .carousel-control-next-icon {
    background-image: none;
    /* Remove default SVG */
    width: 50px;
    /* Arrow container width */
    height: 50px;
    /* Arrow container height */
    position: relative;
  }
  .main-banner .carousel-control-prev-icon::after,
  .main-banner .carousel-control-next-icon::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #000000;
    /* White color */
    border-right: 3px solid #000000;
    /* White color */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .main-banner .carousel-control-prev-icon::after {
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  .main-banner .carousel-control-next-icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .main-banner .carousel-control-prev,
  .main-banner .carousel-control-next {
    width: 5%;
    /* adjust as needed */
  }
  .range-sec {
    padding: 5.72917vw 0;
  }
  .range-sec .main-wrap {
    padding: 4.16667vw 7.29167vw;
  }
  .range-sec .title {
    text-align: left;
    margin-bottom: 4.42708vw;
  }
  .range-sec .title .sub-topic {
    font-size: 1.5625vw;
    font-weight: 400;
    line-height: 2.08333vw;
    letter-spacing: 0.05208vw;
    padding-bottom: 0.83333vw;
  }
  .range-sec .title .main-topic {
    color: #1b1b1b;
    font-size: 4.16667vw;
    font-weight: 400;
    line-height: 2.60417vw;
    /* 125% */
  }
  .range-sec .grid-sec {
    position: relative;
  }
  .range-sec .grid-sec .parent {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.04167vw;
  }
  .range-sec .grid-sec .parent a {
    box-shadow: 0 0.41667vw 1.04167vw rgba(0, 0, 0, 0.08);
  }
  .range-sec .grid-sec .parent a::after {
    content: "";
    height: 16.40625vw;
    border-radius: 1.04167vw;
    background: linear-gradient(0deg, #00040a 1.22%, rgba(0, 4, 10, 0.6) 27.15%, rgba(0, 4, 10, 0) 79.96%);
  }
  .range-sec .grid-sec .parent a:hover {
    box-shadow: 0 0.625vw 1.30208vw rgba(0, 0, 0, 0.12);
  }
  .range-sec .grid-sec .parent a .img-vehicle {
    height: 31.25vw;
  }
  .range-sec .grid-sec .parent a:hover .img-vehicle img {
    transform: scale(1.05);
  }
  .range-sec .grid-sec .parent a .caption-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 2.60417vw;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
    transition: all 0.4s ease;
    z-index: 9;
  }
  .range-sec .grid-sec .parent a .caption-box .sub--topic {
    font-size: 0.9375vw;
    line-height: 2.08333vw;
    /* 222.222% */
    padding-bottom: 0;
  }
  .range-sec .grid-sec .parent a .caption-box .vehicle-name {
    font-size: 2.08333vw;
    line-height: 2.60417vw;
    letter-spacing: -0.02083vw;
    padding-bottom: 0.52083vw;
  }
  .range-sec .grid-sec .parent a .caption-box button {
    margin-top: 1.04167vw;
  }
  .book-sec {
    padding-bottom: 5.20833vw;
  }
  .book-sec .main-wrap {
    padding: 0;
  }
  .book-sec .title {
    margin-bottom: 0;
    padding: 0;
  }
  .book-sec .title .main-topic {
    font-size: 4.16667vw;
    font-weight: 400;
    line-height: 5.20833vw;
    /* 125% */
  }
  .book-sec .title button {
    margin: 2.08333vw auto 2.08333vw;
  }
  .book-sec .title .para-main {
    font-size: 1.04167vw;
    line-height: 1.5625vw;
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }
  .book-sec .slider-details {
    margin-top: 4.16667vw;
  }
  .book-sec .slider-details .slider-items {
    background: #fff;
    box-shadow: 0 0.20833vw 0.20833vw rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 0.52083vw;
  }
  .book-sec .slider-details .slider-items:hover {
    transform: translateY(-5px);
  }
  .book-sec .slider-details .slider-items .wrap {
    position: relative;
  }
  .book-sec .slider-details .slider-items .wrap .img-book {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .book-sec .slider-details .slider-items .wrap .img-book img {
    width: 100%;
    height: 26.04167vw;
    display: block;
    object-fit: cover;
  }
  .book-sec .slider-details .slider-items .wrap .title-sub-title {
    margin-top: 0.78125vw;
    position: absolute;
    padding: 1.82292vw 2.08333vw;
    bottom: 0;
    left: 0;
  }
  .book-sec .slider-details .slider-items .wrap .title-sub-title .sub-title {
    font-size: 0.9375vw;
    line-height: 2.08333vw;
    margin-bottom: 0;
  }
  .book-sec .slider-details .slider-items .wrap .title-sub-title .main-title {
    font-size: 1.5625vw;
    line-height: 2.08333vw;
    letter-spacing: -0.01562vw;
  }
  .book-sec .slider-details .slider-items .wra {
    margin-top: 1.04167vw;
    flex-grow: 1;
    gap: 1.04167vw;
    min-height: 15.625vw;
    padding: 1.45833vw 2.08333vw 2.08333vw;
  }
  .book-sec .slider-details .slider-items .wra .para {
    font-size: 0.88542vw;
    line-height: 1.40625vw;
  }
  .book-sec .slider-details .slider-items .wra button {
    margin: 1.82292vw 0;
  }
  .book-sec .slider-details .slick-dots {
    bottom: -1.82292vw;
  }
  .book-sec .slider-details .slick-dots li button:before {
    font-size: 0.625vw;
    color: #ff0000;
    opacity: 0.4;
  }
  .book-sec .slider-details .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ff0000;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap {
    padding: 0 7.29167vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card {
    width: calc(33% - 10px);
    background: #f5f5f5;
    border-radius: 1.04167vw;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image {
    height: 26.71875vw;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book {
    position: relative;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book img {
    height: 26.71875vw;
    object-fit: cover;
    border-top-left-radius: 1.04167vw;
    border-top-right-radius: 1.04167vw;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book video {
    height: 26.71875vw;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 1.04167vw;
    border-top-right-radius: 1.04167vw;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-img-book::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #00040a 1.22%, rgba(0, 4, 10, 0.6) 27.15%, rgba(0, 4, 10, 0) 79.96%);
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-titles {
    position: relative;
    bottom: 6.25vw;
    left: 1.04167vw;
    color: #fff;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-titles .sub-title {
    font-family: Poppins;
    font-size: 0.9375vw;
    font-style: normal;
    font-weight: 400;
    line-height: 2.08333vw;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-image .home-bottom-card-titles .main-title {
    font-size: 1.30208vw;
    font-style: normal;
    font-weight: 400;
    line-height: 2.08333vw;
    /* 133.333% */
    letter-spacing: -0.3px;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content {
    padding: 2.60417vw 2.29167vw;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content .home-bottom-card-para {
    color: #1b1b1b;
    text-align: start;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.30208vw;
    /* 156.25% */
    text-transform: capitalize;
  }
  .home-bottom-card-container .home-bottom-card-main-wrap .home-bottom-card .home-bottom-card-content .button-wrap {
    margin-top: 1.04167vw;
  }
  .site-footer {
    background: #111;
    color: #e8e8e8;
    padding: 3.125vw 0 0;
    line-height: 1.6;
    border-bottom: 0.41667vw solid #db292f;
  }
  .site-footer .main-wrap {
    padding: 4.16667vw 6.04167vw;
  }
  .site-footer .main-wrap .top {
    display: flex;
    margin: 0 2.08333vw 3.125vw;
    gap: 5.20833vw;
    justify-content: space-between;
  }
  .site-footer .main-wrap .top .div-row {
    display: flex;
    flex-direction: column;
    gap: 0.78125vw;
    align-items: flex-start;
  }
  .site-footer .main-wrap .top .div-row:first-child {
    width: 24.47917vw;
  }
  .site-footer .main-wrap .top .div-row img {
    max-height: 3.125vw;
    display: block;
    object-fit: contain;
  }
  .site-footer .main-wrap .top .div-row .para {
    text-align: justify;
    font-family: "Poppins", sans-serif;
    font-size: 0.83333vw;
    font-weight: 400;
    line-height: 1.35417vw;
    /* 187.5% */
    padding-bottom: 3.125vw;
  }
  .site-footer .main-wrap .top .div-row .social-media {
    display: flex;
    gap: 0.83333vw;
  }
  .site-footer .main-wrap .top .div-row .social-media a {
    width: 2.26042vw;
    height: 2.26042vw;
  }
  .site-footer .main-wrap .top .div-row .social-media a svg {
    width: 2.26042vw;
    height: 2.26042vw;
  }
  .site-footer .main-wrap .top .div-row .social-media a:hover svg {
    transform: scale(1.1);
  }
  .site-footer .main-wrap .top .div-row .footer-title {
    text-transform: uppercase;
    text-shadow: 0 0.20833vw 0.20833vw rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    font-size: 1.04167vw;
    font-weight: 400;
    line-height: 1.04167vw;
    /* 100% */
    letter-spacing: 0.10417vw;
    padding-bottom: 2.08333vw;
  }
  .site-footer .main-wrap .top .div-row .footer-title .details {
    color: #ccc;
  }
  .site-footer .main-wrap .top .div-row .pages {
    display: flex;
    flex-direction: column;
    gap: 1.04167vw;
  }
  .site-footer .main-wrap .top .div-row .pages a {
    font-size: 0.83333vw;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.04167vw;
    /* 125% */
  }
  .site-footer .main-wrap .top .div-row .details {
    display: flex;
    flex-direction: column;
    gap: 1.04167vw;
  }
  .site-footer .main-wrap .top .div-row .details a {
    display: flex;
    align-items: center;
    gap: 0.52083vw;
    font-size: 0.72917vw;
    color: #ccc;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  }
  .site-footer .main-wrap .top .div-row .details a svg {
    width: 0.9375vw;
    height: 0.9375vw;
    flex-shrink: 0;
    stroke: #e8e8e8;
    fill: #e8e8e8;
  }
  .site-footer .main-wrap .top .div-row .details a:hover {
    color: #fff;
  }
  .site-footer .main-wrap .top .div-row .details a:hover svg {
    stroke: #fff;
    fill: #fff;
  }
  .site-footer .main-wrap .top .div-row .details .address {
    display: flex;
    align-items: flex-start;
    gap: 0.52083vw;
    font-size: 0.83333vw;
    line-height: 1.5;
    color: #ccc;
    font-family: "Poppins", sans-serif;
  }
  .site-footer .main-wrap .top .div-row .details .address .footer-phone {
    font-size: 0.83333vw;
  }
  .site-footer .main-wrap .top .div-row .details .address svg {
    width: 0.9375vw;
    height: 0.9375vw;
    flex-shrink: 0;
    stroke: #e8e8e8;
  }
  .site-footer .main-wrap .bottom {
    text-align: center;
    font-size: 0.83333vw;
    color: #aaa;
    border-top: 0.05208vw solid rgba(255, 255, 255, 0.1);
    padding: 2.60417vw;
    font-family: "Poppins", sans-serif;
  }
  .site-footer .main-wrap .bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 0.83333vw;
    line-height: 1.04167vw;
    /* 125% */
    letter-spacing: 0.05208vw;
  }
  .site-footer .main-wrap .bottom a:hover {
    color: #e60012;
  }
}
/*# sourceMappingURL=main.css.map */



.floating-call-bar {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    right: 20px;
    background: #e31b2f;
    color: #fff;
    padding: 3px 18px;
    border-radius: 10px 10px 0 0;
    gap: 10px;
    font-size: 14px;
    text-decoration: none;
    z-index: 9999;
}

@media only screen and (max-width: 1023px) {
    .floating-call-bar {
        position: fixed;
        bottom: 20px;
        right: 20px;

        width: 56px;
        height: 56px;
        padding: 0;

        border-radius: 50%;
        background: #e31b2f;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 0; /* hide text */
        z-index: 9999;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    }

    .call-icon {
        font-size: 22px;
        color: #fff;
        position: static; /* no absolute needed */
        transform: none;
    }
}


.floating-call-bar:hover {
    box-shadow: 0 0.513vw 1.538vw rgba(0, 0, 0, 0.35);
}

.call-icon {
    color: #fff;
    /* margin: 20px 0; */
    font-size: 0.821vw;
    display: inline-block;
}

/* @keyframes ring {
    0% {
        transform: rotate(0deg);
    }
    1% {
        transform: rotate(30deg);
    }
    3% {
        transform: rotate(-28deg);
    }
    5% {
        transform: rotate(34deg);
    }
    7% {
        transform: rotate(-32deg);
    }
    9% {
        transform: rotate(30deg);
    }
    11% {
        transform: rotate(-28deg);
    }
    13% {
        transform: rotate(26deg);
    }
    15% {
        transform: rotate(-24deg);
    }
    17% {
        transform: rotate(22deg);
    }
    19% {
        transform: rotate(-20deg);
    }
    21% {
        transform: rotate(18deg);
    }
    23% {
        transform: rotate(-16deg);
    }
    25% {
        transform: rotate(14deg);
    }
    27% {
        transform: rotate(-12deg);
    }
    29% {
        transform: rotate(10deg);
    }
    31% {
        transform: rotate(-8deg);
    }
    33% {
        transform: rotate(6deg);
    }
    35% {
        transform: rotate(-4deg);
    }
    37% {
        transform: rotate(2deg);
    }
    39% {
        transform: rotate(-1deg);
    }
    41% {
        transform: rotate(1deg);
    }
    43% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
} */

 