.loader-vid {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
  overflow-y: auto;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-vid video {
  width: 100%;
  height: 50%;
  object-fit: contain;
  object-position: center;
}

button.audio-btn {
  position: absolute;
  content: "";
  bottom: 50px;
  right: 50px;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  text-transform: capitalize;
}

button.audio-btn i {
  font-size: 12px;
  margin-left: 5px;
}


* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-clr: #000;
  --secondary-clr: #957a33;
  /* --primary-font: "Poppins"; */
  --primary-font: "La";
  /* --primary-font: 'Montserrat'; */
  /* --primary-font: 'Riviera Nights Trial'; */
  --blue-clr: #004bfa;
  --spacer: 60px;
}

body /*{
  overflow-x: hidden;
  /* cursor: none; */
/*}

/* Scrollbar css start */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c1c1c1;
}

/* Scrollbar css end */

a {
  text-decoration: none;
}

.spacer {
  padding: var(--spacer);
}

.spacer-y {
  padding: var(--spacer) 0px;
}

.spacer-t {
  padding-top: var(--spacer);
}

.spacer-b {
  padding-bottom: var(--spacer);
}

.p-relative {
  position: relative;
  z-index: 1;
}

h1,
.h1 {
  font-size: 48px;
  font-family: var(--primary-font);
  color: #fff;
}

h2,
.h2 {
  font-size: 30px;
  font-family: var(--primary-font);
}

h3 {
  font-family: var(--primary-font);
}

p,
a {
  font-family: var(--primary-font);
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: none !important;
  border-color: #eee !important;
}



/* mouse cursor css start */

/* .cursor {
  position: absolute;
  background-color: var(--blue-clr);
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1.5);
}
.cursor.active {
  opacity: 0.5;
  transform: scale(0);
}
.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(5px, 5px);
}
.cursor-follower.active {
  opacity: 0.7;
  transform: scale(2);
}
.cursor-follower.hovered {
  opacity: 0.08;
} */

/* mouse cursor css End */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 0px;
  z-index: 2;
  transition: all .2s ease-in-out;
}

header.bg-header {
  padding: 15px 0px 0px;
  transition: all .2s ease-in-out;
}

header.bg-header::before {
  background: linear-gradient(180deg, black, transparent);
  backdrop-filter: blur(2px);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0) !important;
}

header.bg-header .header-wrapper {
  padding-bottom: 15px;
}


.logo-blk {
  position: absolute;
  padding-top: 30px;
  width: 190px;
  height: 110px;
  transition: all .2s ease-in-out;
}

header.bg-header .logo-blk {
  width: 80px;
  height: 54px;
  transition: all .2s ease-in-out;
}

header .logo-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  position: relative;
}

header.bg-header .header-wrapper::before {
  background: transparent;
}

.menu-icon {
  position: relative;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0px;
  transition-duration: 0.5s;
  top: 13px;
}

.menu-icon .icon-left,
.menu-icon .icon-right {
  transition-duration: 0.5s;
  position: absolute;
  height: 3px;
  width: 15px;
  top: 13px;
  background-color: #fff;
}

.menu-icon .icon-left {
  left: 0px;
}

.menu-icon .icon-right {
  left: 15px;
}

.menu-icon .icon-left:before,
.menu-icon .icon-right:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: #fff;
  content: "";
  top: -10px;
  left: 0;
}

.menu-icon .icon-left:after,
.menu-icon .icon-right:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: #fff;
  content: "";
  top: 10px;
  left: 0;
}

.menu-icon.open .icon-left {
  transition-duration: 0.5s;
  background: transparent;
}

.menu-icon.open .icon-left:before {
  transform: rotateZ(45deg) translate(6px, 2px);
}

.menu-icon.open .icon-left:after {
  transform: rotateZ(-45deg) translate(4px, 0px);
}

.menu-icon.open .icon-right {
  transition-duration: 0.5s;
  background: transparent;
}

.menu-icon.open .icon-right:before {
  transform: rotateZ(-45deg) translate(-4px, 4px);
}

.menu-icon.open .icon-right:after {
  transform: rotateZ(45deg) translate(-2px, -2px);
}

/* .menu-wrapper {
  position: absolute;
  content: "";
  top: 0;
  left: -250%;
  width: 42%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0 0 0 / 30%);
  backdrop-filter: blur(8px);
  z-index: -1;
  opacity: 0;
  transition: all .5s ease-in-out;
} */
.menu-wrapper {
  position: fixed;
  content: "";
  top: 0;
  right: 0;
  width: 0px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0 0 0 / 60%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -moz-backdrop-filter: blur(8px);
  transform: translate3d(0, 0, 0) !important;
  z-index: -1;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.menu-wrapper.show {
  left: 0;
  height: 100vh !important;
  opacity: 1;
}

.menu-inner-wrapper {
  width: 100%;
  padding-right: 100px;
}

.menu-inner-wrapper ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

.menu-inner-wrapper ul li:not(:last-child) {
  margin-bottom: 25px;
}

.menu-inner-wrapper ul li {
  text-align: end;
  
}

a.page-links {
  font-size: 32px;
  color: #7d7b7b;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
}

a.page-links:hover {
  color: #fff;
}

a.page-links2 {
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
}

a#servicelist {
  cursor: pointer;
}

.service-nav-list {
  height: 0px;
  opacity: 0;
  transition: all .2s ease-in-out;
}

.service-nav-list.showlist {
  height: 60px; /* changed from 230px to account for less services */
  opacity: 1;
  transition: all .2s ease-in-out;
}


.service-nav-list ul {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  gap: 25px;
  margin-top: 10px;
}

.service-nav-list ul li {
  margin-bottom: -5px !important;
}

a.service-link {
  display: block;
  /* background-image: linear-gradient(45deg, #fff, #957a33); */
  color: #7d7b7b;
  /* background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; */
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all .2s ease-in-out;
}

a.service-link:hover {
  color: #fff;
}

/* a.service-link:hover {
  transform: scale(1.2)
} */

.book-btn-blk a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  position: absolute;
  left: 10px;
  padding-top: 20px;
  transform: translateY(-50%);
}

.main {
  overflow-x: hidden;
}

.mainwrap {
  position: relative;
  z-index: 1;
  margin-bottom: 285px;
}

/* .inner-wrap {
  display: flex;
  flex-wrap: no-wrap;
  width: 200%;
} */
section.hero-section {
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.bg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 20%);
}

.bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 20%);
}

.bg2 {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.bg2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 30%);
}

video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.hero-content-blk {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-inner-blk {
  text-align: center;
  padding: 0px 27%;
}

.hero-inner-blk h1 {
  font-size: 60px !important;
  font-weight: 500;
  text-align: center;
}

.txt-blk p {
  color: #fff;
  margin-bottom: 0px;
}

.effect {
  position: absolute;
  content: "";
  bottom: 200px;
}

.splittext {
  color: #fff;
  letter-spacing: 17px;
  font-size: 20px !important;
  font-weight: 400;
  font-family: var(--primary-font);
  margin-bottom: 0px;
  overflow: hidden;
}

h2.splittext span {
  display: inline-block;
}

/* Updated CSS with fixes for button positioning and padding issues */

/* Updated CSS with fixes for button positioning and padding issues */

/* Updated CSS with fixes for button positioning and padding issues */

.scroll-down {
  position: absolute;
  content: "";
  bottom: 60px;
  left: 50%;
  width: 32px;
  height: 98px;
  transform: translateX(-50%);
}

.scroll-down .rectline {
  width: 1px;
  height: 98px;
  background: #d9d9d9;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.scroll-down .rectblk {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  display: block;
  position: absolute;
  content: "";
  top: 29%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  animation: scroll 2s linear infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 29%;
  }

  15% {
    opacity: 1;
    top: 50%;
  }

  50% {
    opacity: 0;
    top: 50%;
  }

  100% {
    opacity: 0;
    top: 29%;
  }
}

section.carbrands {
  padding: 50px 0px;
  background: #f5f5f5;
}

.carbrandlist ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.carbrandlist ul li img {
  width: 160px;
  height: 75px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

section.scroll.section-2 {
  background-color: #f0f0f0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

section.scroll.section-2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.46) 100%);
  background-repeat: no-repeat;
  background-size: cover;
}

section.scroll.section-2 .feature-card {
  gap: 0px;
}

section.scroll.section-2 h2.car-name {
  top: 80%;
}

section.scroll.section-2 span.car-tagline {
  top: 88%;
}

section.scroll.section-2 :where(.feature-card, .feature-inner-blk) {
  justify-content: center !important;
}

section.scroll.section-2 .feature-heading-blk {
  position: relative;
  padding-top: 120px;
}

section.scroll.section-2 .feature-inner-blk {
  height: auto !important;
}

section.feature-section {
  width: 100%;
  height: auto;
}

.collection-section,
.vehicle-section,
.suv-section,
.convertible-section,
.sports-section {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

:where(.feature-section, .collection-section, .vehicle-section, .suv-section, .convertible-section, .sports-section) .feature-card {
  margin-top: 70px;
}

/* FIXED: Removed excessive padding and improved grid layout */
.feature-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns */
  justify-content: center !important;
  gap: 30px; /* Increased gap for better spacing */
  width: 100%;
  max-width: 1400px; /* Container max width */
  box-sizing: border-box;
  place-items: center;
  padding-top: 80px;
  margin: 0 auto;
  padding: 0 40px; /* Increased padding */
}

.feature-inner-card.feature-heading-blk {
  display: flex;
  justify-content: center;
  align-items: center;

}

h2.feature-heading {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.feature-inner-blk {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.feature-inner-card {
  width: 400px;
  height: 650px; 
  position: relative;
  z-index: 1;
  border-radius: 7px; /* Added border radius */
  overflow: hidden; /* Ensures clean edges */
  box-shadow: 0 8px 32px rgb(10, 10, 10); /* Nice shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 600px;
}

.feature-inner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-inner-card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
      rgba(0, 0, 0, 0.1) 0%, 
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  border-radius: 7px;
}

.feature-cars-img {
  width: 100%;
  height: 100%; /* Full height - seamless */
  overflow: hidden;
  border-radius: 12px;
}

.feature-cars-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-inner-card:hover .feature-cars-img img {
  transform: scale(1.05);
}

h2.car-name {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  font-size: 18px !important;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  font-family: var(--primary-font);
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

span.car-tagline {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--primary-font);
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

span.car-rent {
  position: absolute;
  bottom: 200px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 700;
  color: #ffffffae;
  text-align: center;
  font-family: var(--primary-font);
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.car-detail-blk {
  position: absolute;
  bottom: 120px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  padding: 0px 30px;
  z-index: 10;
}

ul.car-detail {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

span.car-detail-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(181, 181, 181, 0.8);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

span.car-detail-text {
  display: block;
  width: 100%;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  font-family: var(--primary-font);
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* FIXED: Black button layered over image */
.booqable-product-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0);
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 15;
  font-family: var(--primary-font);
  border-radius: 8px;
  min-width: 140px;
  text-align: center;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
}

.booqable-product-button:hover {
  color: #000;
  border-color: #2b2b2b;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background:  rgb(176, 176, 176);
}
section.contact-section {
  background: url(../images/DWE/GWagonFront.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: center;
  z-index: 1;
}

.contact-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(104deg, rgb(0 0 0 / 50%) 1.17%, rgb(0 0 0 / 25%) 32.7%, rgb(0 0 0) 100.43%, rgb(0 0 0 / 26%) 100.43%);
}

.contact-section .common-inner-blk {
  background: transparent;
  backdrop-filter: blur(0px);
  position: relative;
  width: auto !important;
}

.contact-section .common-heading h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 0px;
  text-transform: uppercase;
  color: #fff !important;
}

.work-with a.section-btn {
  max-width: 250px;
}

section.common-section {
  background: url("../images/bglogo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

section.common-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(104deg,
      rgba(0, 0, 0, 0.7) 1.17%,
      rgba(0, 0, 0, 0.25) 32.7%,
      rgba(0, 0, 0, 0) 100.43%,
      rgba(0, 0, 0, 0) 100.43%);
}

.common-blk {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-inner-blk {
  background: rgb(0 0 0 / 51%);
  backdrop-filter: blur(4.5px);
  width: 100%;
}

.common-heading {
  border-bottom: 1px solid #fff;
  padding: 28px 0px 15px;
  margin: 0px 42px;
}

.common-heading h1 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.common-content {
  padding: 20px 42px;
  max-height: 667px;
  overflow-x: hidden;
  overflow-y: auto;
}

.common-content p {
  color: #fff;
  font-size: 16px;
}

.contact-detail-blk h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.contact-detail-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 28px 0px 40px;
  flex-wrap: wrap;
}

.contact-detail-blk {
  width: calc(100% - 410px);
}

.contact-detail-blk p a {
  color: #fff;
}

.contact-form-blk {
  width: 360px;
}

.input-field:not(:last-child) {
  margin-bottom: 20px;
}

.input-field input {
  width: 100%;
  padding: 5px 0px;
  background: transparent;
  border: 1px solid #fff;
  border-width: 0px 0px 1px;
  color: #fff;
  font-size: 12px;
  font-family: var(--primary-font);
}

.input-field input::placeholder {
  color: #fff;
}

.input-field input:focus {
  outline: 0;
}

.input-btn-blk {
  margin-top: 20px;
}

button.send-message-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-family: var(--primary-font);
  background: #0034f0;
  color: #fff;
  border: 0px;
  text-transform: uppercase;
}

.map {
  width: 100%;
  height: 352px;
}

footer {
  width: 100%;
  background: #151515;
  padding: 60px 0px 30px;
  position: fixed;
  content: "";
  bottom: 0;
  left: 0;
  z-index: 0;
}

.footer-outer-blk {
  width: 100%;
}

.footer-logo {
  display: flex;
  justify-content: center;
  width: 220px;
  margin: 0 auto;
  margin-bottom: 50px !important;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 0px;
  border: 1px solid #5c5c5c;
  border-width: 1px 0px;
  margin-bottom: 30px;
}

footer h2 {
  text-align: left;
  color: #fff;
  font-size: 12px !important;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0px;
}

footer p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.7px;
  text-transform: capitalize;
  color: #fff;
}

.footer-email-blk {
  max-width: 350px;
  width: 100%;
  margin: 20px 0px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-email-blk input {
  width: calc(100% - 45px);
  padding: 14px 23px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  font-family: var(--primary-font);
  background: #d9d9d9;
  border: 0px;
}

.footer-email-blk input::placeholder {
  color: #000;
}

.footer-email-blk input:focus {
  outline: 0;
}

button.send-arrow-btn {
  width: 45px;
  border: 0px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 5px;
  background: #d9d9d9;
}

.footer-nav-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}


ul.page-links-blk,
.location-links-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

ul.page-links-blk li:not(:last-child),
ul.location-links-blk li:not(:last-child) {
  margin-bottom: 5px;
}

a.pages-link,
span.location-heading {

  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--primary-font);
}

a.location-link {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

ul.social-links-blk {
  list-style: none;
  padding-left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 25px;
}

a.social-link svg {
  height: 18px;
}


.footer-bottom-logo {
  width: 150px
}

.footer-bottom-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.copyright-blk p {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
}

section.detail-section {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.car-bg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.car-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      #000 0%,
      rgba(0, 0, 0, 0.15) 55.73%,
      rgba(0, 0, 0, 0) 100%,
      rgba(0, 0, 0, 0) 100%);
}

.car-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-inner-blk {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

.detail-bar {
  background: rgba(0, 0, 0, 0.73);
  backdrop-filter: blur(4.5px);
  padding: 28px 30px;
  position: absolute;
  content: "";
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.detail-inner-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
}

.detail-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 45px;
}

.detail-inner-bar h1 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  margin-bottom: 0px;
  text-transform: capitalize;
}

ul.car-features-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 27px;
}

.car-feature-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

span.feature-list-icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

span.feature-list-title {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  font-family: var(--primary-font);
}

h2.rent-per-day {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: right;
  margin-bottom: 0px;
}

.car-detail-card {
  padding: 20px 35px;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(4.5px);
  position: absolute;
  content: "";
  bottom: 220px;
  right: 0;
  max-width: 495px;
  width: 100%;
}

.car-detail-card.detail-card {
  left: 0;
}

.car-detail-card.policy-card {
  bottom: 60%;
  left: 0;
}

.car-detail-header-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}

.car-detail-heading h2 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.car-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.car-detail-title span {
  font-size: 14px;
  color: #fff;
  font-family: var(--primary-font);
}

span.detail-heading,
.detail-value {
  font-size: 14px;
  color: #fff;
  font-family: var(--primary-font);
}

button.enable-btn {
  padding: 2px 5px;
  border: 0px;
  border-radius: 3px;
  font-size: 10px;
  color: #fff;
  text-transform: capitalize;
  background: #29841a;
  margin: 0px 6px;
}

.section-nav {
  position: absolute;
  content: "";
  top: 50%;
  right: 200px;
  width: 20px;
  height: calc(100% - 250px);
  transform: translateY(-50%);
  background: transparent;
  z-index: 1;
}

.section-nav-inner.section-nav-inner-wrapper {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: calc(100% - 50px);
  transform: translate(-50%, -50%);
}

.subnav-items {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

a.subnav-title {
  font-size: 12px;
  font-family: var(--primary-font);
  color: #fff;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section-nav-arrow-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.section-nav-line {
  width: 1px;
  height: 100%;
  background: #7e7e7e;
  position: absolute;
  content: "";
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

.section-nav-line-selector {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 3px;
  height: 68px;
  background: #fff;
  transform: translate(-50%, -50%);
}

/* Loader css */
.loader {
  width: 100vw;
  height: 100vh;
  background: #000;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loaderlogo {
  animation: sptext 2s linear alternate;
}

.loading-text span {
  font-size: 60px;
  color: transparent;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: -6px;
  font-family: var(--primary-font);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #fff, #000);
  animation: sptext 2s linear alternate;
}

/* swiper */
.swiper-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 200px; */
}

.swiper {
  cursor: none;
  /* height: 600px; */
  padding-top: 200px !important;
  padding-bottom: 80px !important;
}

.swiper .swiper-slide {
  cursor: none;
  background-position: center;
  background-size: cover;
  width: 500px;
  height: 400px;
  -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
}

/* swiper */


@keyframes sptext {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes sptext {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes sptext {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.progres-bar {
  max-width: 1170px;
  width: 100%;
  height: 5px;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  content: "";
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

.inner-progress-line {
  width: 50%;
  height: 100%;
  background: #0034f0;
  border-radius: 10px;
  animation: progress 5s linear infinite;
}

section.membership-section {
  padding-bottom: 90px;
}

.membership-heading {
  margin-bottom: 50px;
}

.membership-heading h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-moz-keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .loaderlogo {
    width: 50px;
  }

  .loading-text span {
    font-size: 30px;
    line-height: 24px;
    letter-spacing: -3px;
  }
}

/*--  MEDIA QURIES CSS START --*/
@media screen and (min-width: 992px) and (max-width: 1400px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  section.scroll.section-2 {
    height: auto;
  }

  .swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 480px;
    height: 390px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
  }

  section.scroll.section-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 81%;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.46) 100%);
    background-repeat: no-repeat;
    background-size: cover;
  }
}



@media screen and (max-width: 1400px) {}

@media screen and (max-width: 991px) {
  .swiper {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  section.scroll.section-2 {
    height: 70vh;
  }

  .swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 480px;
    height: 390px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
  }

  section.scroll.section-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.46) 100%);
    background-repeat: repeat;
    background-size: cover;
  }
}

@media screen and (min-width:768px) and (max-width: 991px) {
  .swiper {
    padding-top: 160px !important;
    padding-bottom: 115px !important;
  }

  section.scroll.section-2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 81%;
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.46) 100%);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 576px) {}

@media screen and (max-width: 400px) {}

/* updated------------------------------------------------------------- */
section.detail-section {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 1;
}

.car-bg {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.car-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.15) 55.73%, rgba(0, 0, 0, 0.00) 100%, rgba(0, 0, 0, 0.00) 100%);
}

.car-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.detail-inner-blk {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

.detail-bar {
  background: rgba(0, 0, 0, 0.73);
  backdrop-filter: blur(4.5px);
  padding: 28px 30px;
  position: absolute;
  content: "";
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.detail-inner-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
}

.detail-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}

.detail-inner-bar h1 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  margin-bottom: 0px;
  text-transform: capitalize;
}

ul.car-features-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}

.car-feature-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

span.feature-list-icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

span.feature-list-title {
  font-size: 14px;
  color: #fff;
  text-transform: capitalize;
  font-family: var(--primary-font);
}

h2.rent-per-day {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-align: right;
  margin-bottom: 0px;
}


.car-detail-card {
  padding: 20px 35px;
  background: rgba(0, 0, 0, 0.51);
  backdrop-filter: blur(4.5px);
  position: absolute;
  content: "";
  bottom: 220px;
  right: 0;
  max-width: 495px;
  width: 100%;
}

.car-detail-card.detail-card {
  left: 0;
}

.car-detail-card.policy-card {
  bottom: 60%;
  left: 0;
}

.car-detail-header-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}

.car-detail-heading h2 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.car-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}

.car-detail-title span {
  font-size: 14px;
  color: #fff;
  font-family: var(--primary-font);
}

span.detail-heading,
.detail-value {
  font-size: 14px;
  color: #fff;
  font-family: var(--primary-font);
}

button.enable-btn {
  padding: 2px 5px;
  border: 0px;
  border-radius: 3px;
  font-size: 10px;
  color: #fff;
  text-transform: capitalize;
  background: #29841A;
  margin: 0px 6px;
}




.section-nav {
  position: absolute;
  content: "";
  top: 50%;
  right: 200px;
  width: 20px;
  height: calc(100% - 250px);
  transform: translateY(-50%);
  background: transparent;
  z-index: 1;
}

.section-nav-inner.section-nav-inner-wrapper {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: calc(100% - 50px);
  transform: translate(-50%, -50%);
}

.subnav-items {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

a.subnav-title {
  font-size: 12px;
  font-family: var(--primary-font);
  color: #fff;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section-nav-arrow-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.section-nav-line {
  width: 1px;
  height: 100%;
  background: #7E7E7E;
  position: absolute;
  content: "";
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

.section-nav-line-selector {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 3px;
  height: 68px;
  background: #fff;
  transform: translate(-50%, -50%);
}


.common-service-hero-section,
section.common-service-content-section {
  background: #fff;
}

.common-service-main-wrapper {
  padding-top: 69px;
  position: relative;
  z-index: 1;
}

.common-service-banner {
  background-blend-mode: overlay;
  background-repeat: no-repeat !important;
  width: 100%;
  height: 580px;
  background-size: cover !important;
  background-position: center !important;
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.video-banner {
  height: 720px;
}

.video-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 75%), transparent);
}

.common-service-heading {
  padding-top: 300px;
}

.topmargin {
  margin-top: 40px;
}

.common-service-main-wrapper h1 {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-family: var(--primary-font);
  font-weight: 700;
}

.common-service-description-block {
  background: #fff;
  padding: 55px 138px;
  text-align: center;
  margin-top: 150px;
  position: relative;
}

.common-service-description-block h2 {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--black-clr);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.common-service-description-block p {
  font-size: 14px;
  font-family: var(--primary-font);
  margin-bottom: 20px;
  line-height: 24px;
}

.common-service-description-block p:last-child {
  margin-bottom: 0px;
}

section.common-service-content-section .container {
  max-width: 1640px;
}

.common-service-content-section .car-section-spacer {
  margin-left: 69px;
  margin-right: 69px;
}

.car-img-wrapper {
  width: 100%;
  height: 100%;
}

.car-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-service-content-block {

  background: #202325;
  position: relative;
}

.common-service-content-block:before {
  position: absolute;
  content: "";
  top: -130px;
  left: 0;
  width: 100%;
  height: 130px;

  background: #202325;
  z-index: -1;
}

.common-service-content-block h2 {
  font-family: var(--primary-font);
  font-weight: 700;

  color: #fff;
  margin-bottom: 20px;
}

.common-service-content-block p {
  font-size: 14px;
  font-family: var(--primary-font);
  line-height: 24px;
  color: #fff;
}

.service-top-content {
  text-align: center;
}

.common-service-content-block .row:nth-child(2) {
  margin: 60px 0px;
}

.common-service-content-block .row:nth-child(2) .col-lg-10 .row .col-lg-6 .service-content {
  padding: 46px 0px 46px 64px;
}

.common-service-content-block .row:last-child .col-lg-10 .row .col-lg-6 .service-content {
  padding: 46px 64px 46px 0px;
}

.service-img {
  width: 100%;
  height: 100%;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service-discover page css start */

section.services-hero {
  width: 100%;
  height: 100vh;
  background-blend-mode: overlay;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.service-hero-inner-blk h1 {
  font-size: 24px;
  text-align: center;
}

.service-hero-inner-blk h2 {
  font-size: 52px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0px;
}

section.service-content-section {
  padding: 200px 0px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.content-blk {
  text-align: center;
}

.content-blk h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

a.section-btn {
  padding: 10px 20px;
  border: 1px solid #000;
  color: #000;
  border-radius: 50px;
  max-width: 170px;
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

section.service-slider-section {
  padding: 50px 0px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.slider-wrapper {
  padding: 100px 0px;
}

.slider-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.img-slide {
  width: 55%;
  height: 780px;
}

.img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-text-block {
  width: 45%;
  padding: 0px 100px;
}

.car-text-block p {
  font-size: 20px;
  margin-bottom: 0px;
}

section.img-card-section {
  padding-bottom: 100px;
  background: #fff;
}

.images-blk {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1200px;
}

.images-blk div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-img-blk,
.second-img-blk,
.third-img-blk {
  position: absolute;
  content: "";
}

.first-img-blk {
  top: 0;
  left: 0;
  width: 56%;
  height: 100%;
}

.second-img-blk {
  top: -100px;
  right: 30px;
  width: 40%;
  height: 400px;
}

.third-img-blk {
  bottom: -60px;
  right: 30px;
  width: 40%;
  height: 920px;
}

a.slider-btn {
  padding: 10px 20px;
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  border-radius: 50px;
  max-width: 170px;
  width: 100%;
  display: block;
  margin: 30px 0px 0px;
  text-align: center;
}

.selected_cars {
  position: fixed;
  top: 175px;
  right: 300px;
  z-index: 1;
  width: 150px;
  background: #000;
  border-radius: 0px;
  border: 1px solid #fff;
}

.selected_cars select {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  width: 100%;
  padding: 5px;
  border: 1px solid transparent;
  background: #000;
}

.selected_cars select:focus {
  outline: 0;
  border-color: transparent !important;
  box-shadow: none !important;
}


/* Service-discover page css end */


section.membership-section {
  padding-bottom: 90px;
}

.membership-heading {
  margin-bottom: 50px;
}

.membership-heading h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
}

.common-inner-wrap {
  padding: 20px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

h2.price-format {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0px;
}

.price-header {
  margin: 20px 0px;
}

h2.price-amount {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 0px;
}

h2.price-amount span {
  font-size: 24px;
  font-weight: 600;
  color: #7e7e7e;
  font-family: var(--primary-font);
}

span.amount-currency {
  margin-right: 5px;
}

span.amount-period {
  margin-left: 5px;
}

span.price {
  color: var(--secondary-clr);
  font-weight: 500;
  font-family: var(--primary-font);
}

.checkbox-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.check-input-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.checkbox-blk:not(:last-child) {
  margin-bottom: 16px;
}

.check-input-blk input[type="checkbox"] {
  display: none;
}

.check-input-blk input[type="checkbox"]+label {
  width: 21px;
  height: 21px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  cursor: default;
  position: relative;
  margin-right: 12px;
}

.check-input-blk input[type="checkbox"]:checked+label {
  background: var(--primary-clr);
  border-color: var(--primary-clr);
}

.check-input-blk input[type="checkbox"]:checked+label::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 4px;
  transform: rotate(320deg);
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.checkbox-blk span {
  display: flex;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.25);
  font-weight: 500;
  font-family: var(--primary-font);
}

.check-input-blk input[type="checkbox"]:checked+label+span {
  color: rgba(0, 0, 0, 0.5);
}

.buy-plan-blk {
  margin-top: 30px;
}

.buy-plan-blk a {
  padding: 10px 20px;
  border: 1px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0) !important;
  border-radius: 50px;
  min-width: 170px;
  width: 100%;
  display: block;
  text-align: center;
}

section.common-card-section {
  padding: 100px 0px;
  position: relative;
  z-index: 1;
  background: #fff;
}

span.position-text {
  position: absolute;
  content: "";
  top: 50%;
  right: 160px;
  transform: translateY(-50%);
  width: auto;
  height: 100%;
  font-size: 70px;
  font-weight: 600;
  color: #f1f1f1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-lr;
  -webkit-text-stroke-width: 2px;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
}

.common-section-heading h2 {
  font-size: 30px !important;
  margin-bottom: 0px;
}

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

.common-inner-wrapper {
  flex-basis: 32%;
  position: relative;
  z-index: 1;
}

a.common-card-link {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.common-img-wrapper {
  width: 100%;
  height: 414px;
}

.common-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-card-heading {
  padding: 10px;
  position: relative;
  z-index: 1;
  margin: 10px 0px 20px;
}

.common-card-heading::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #000;
}

.common-card-heading h2 {
  font-size: 20px !important;
  margin-bottom: 0px;
}

.common-section-text p {
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 24px;
  color: #7c7c7c;
}

.about-hero {
  height: 70vh !important;
}

.about-content-section {
  background: #f5f5f5 !important;
}

.full-img-blk {
  width: 100%;
  height: 787px;
}

.full-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




/*--  MEDIA QURIES CSS START --*/
@media screen and (min-width: 992px) and (max-width: 1400px) {}

@media screen and (min-width: 992px) and (max-width: 1200px) {}

@media screen and (max-width: 1400px) {}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 576px) {
  .logo-blk {

    width: 80px;
  }

  .book-btn-blk a {
    font-size: 12px;
  }

  a.page-links {
    font-size: 16px;
  }

  a.page-links2 {
    font-size: 16px;
  }

  .menu-inner-wrapper {
    width: 100%;
    padding-right: 80px;
  }

  .mainwrap {
    margin-bottom: 0px;
  }

  .hero-inner-blk h1 {
    font-size: 22px !important;
  }

  .splittext {
    color: #fff;
    letter-spacing: 4px;
    font-size: 14px !important;
  }

  .custom-cursor,
  .follower,
  span.position-text {
    display: none;
  }

  .common-inner-wrapper {
    flex-basis: 100%;
  }

  section.scroll.section-2 {
    height: 100% !important;
    /* padding-bottom: 50px; */
  }

  section.scroll.section-2 .feature-inner-blk {
    height: 100% !important;
    margin-top: 50px;
  }

  section.scroll.section-2 .feature-card {
    gap: 30px;
    flex-wrap: wrap;
  }

  section.scroll.section-2 .feature-heading-blk {
    padding-top: 50px;
  }

  .feature-inner-card {
    width: 310px;
    height: 430px;
  }

  footer {
    position: static;
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav-link {
    gap: 45px;
  }

  .contact-section .common-heading h1 {
    font-size: 32px;
  }

  .contact-detail-blk {
    width: 100%;
  }

  .contact-form-blk {
    width: 100%;
  }

  .service-hero-inner-blk h2 {
    font-size: 32px;
  }

  .slider-wrapper {
    padding: 50px 0px;
  }


  .img-slide {
    width: 100%;
    height: 490px;
  }

  .car-text-block {
    width: 100%;
    padding: 50px 20px;
  }


  .common-service-main-wrapper h1 {
    font-size: 32px;
  }

  .common-service-content-section {
    padding: 0px 10px 50px;
  }

  .common-service-description-block {
    padding: 55px 38px;
  }


  .common-service-content-section .car-section-spacer {
    margin-left: 10px;
    margin-right: 10px;
  }


  .common-service-content-block {
    padding: 50px 5px;
  }

  .common-service-content-block .row:nth-child(2) .col-lg-10 .row .col-lg-6 .service-content {
    padding: 46px 0px 0px 0px;
  }

  .common-service-content-block .row:last-child .col-lg-10 .row .col-lg-6 .service-content {
    padding: 46px 0px 0px 0px;
  }

  section.service-content-section {
    padding: 100px 0px;
  }

  .images-blk {
    height: 100%;
  }

  .first-img-blk,
  .second-img-blk,
  .third-img-blk {
    width: 100% !important;
    position: static;
    height: 320px !important;

  }

  section.collection-section .bg {
    position: fixed;
  }

  .feature-inner-blk {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
  }

  /* .feature-section {
    position: relative;
    padding-bottom: 50px;
  }
  .feature-section .feature-inner-card.feature-heading-blk {
    height: 100px;
  }
  .feature-section .bg {
    height: 100%;
  }
  .feature-section .feature-inner-blk {
    height: 100%;
  }
  .feature-section .feature-card {
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 120px;
  } */

  .selected_cars {
    top: 175px;
    right: 20px;
    z-index: 5;
  }

  .section-nav {
    display: none;
  }

  .detail-inner-bar {
    align-items: flex-start;
    gap: 30px;
  }

  .detail-bar {
    bottom: 20px;
  }

  .full-img-blk {
    width: 100%;
    height: 487px;
  }
}

@media screen and (max-width: 400px) {
  .mainwrap {
    margin-bottom: 0px;
  }
}

/* 1. Style your chosen HERO section to be full screen */
section.hero-section { /* Or whichever class you used for the main hero video */
  width: 100%;
  height: 100vh; /* Full viewport height */
  position: relative;
  overflow: hidden; /* Good practice for full-screen video containers */
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.hero-section .bg { /* Assuming .bg wraps your video element */
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  z-index: 1;
}

section.hero-section .bg video {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

section.hero-section .hero-content-blk { /* For the "COLLECTION" title over the video */
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  z-index: 2; 
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.hero-section .hero-content-blk h1 {
  color: white; /* Adjust styling as needed */
  margin-bottom: 60px; /* Space for date picker below */
}

/* Hero Date Picker Styles - Added to your existing hero */
.hero-datepicker-container {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 80px auto; /* Space above and below */
  padding: 0 20px;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3; /* Above video and content */
}

.hero-datepicker-container .booqable-datepicker {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll to Explore Button - positioned at bottom of hero */
.scroll-to-explore {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  font-family: var(--primary-font);
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.scroll-arrow {
  font-size: 16px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Enhanced Date Picker Styling within Hero */
.hero-datepicker-container .booqable-datepicker input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--primary-font);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.hero-datepicker-container .booqable-datepicker input:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.hero-datepicker-container .booqable-datepicker button {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--primary-font);
  letter-spacing: 1px;
  width: 100%;
}

.hero-datepicker-container .booqable-datepicker button:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 2. Adjust CSS for the section INSIDE CarCollections.js */
section.collection-section { /* This class is inside your CarCollections component */
   width: 100%;
  height: auto !important;
  /* padding-top: 40px; <--- REMOVE or significantly reduce this */
  /* padding-bottom: 40px; */ /* Keep bottom padding or adjust as needed */
  padding-top: 0; /* Make it flush with the hero above */
  background-color: #dcdcdc; /* Or your desired page background for this area */
  position: relative;
  z-index: 1;
  justify-content: center !important;
}

/* HIDE the video background that is part of the CarCollections component,
   because you now have a dedicated hero video section above it. */
section.collection-section > .bg { /* Target the .bg direct child of .collection-section */
  display: none !important;
}

/* Ensure containers that might have been used for horizontal scroll (like from GSAP)
   are now just normal flow containers if they still exist around .collection-section */
.scrollcontainer,
.scrollinnerwrap {
  height: auto;
  width: 100%;
  padding-top: 0;
  margin-top: 0;
}

/* Ensure inner blocks also use auto height */
section.collection-section .feature-blk,
section.collection-section .feature-inner-blk {
  height: auto !important;
  padding-top: 0;
  margin-top: 0;
}

.splittext {
  color: #fff;
  letter-spacing: 17px;
  font-size: 20px !important;
  font-weight: 400;
  font-family: var(--primary-font);
  margin-bottom: 0px;
  overflow: hidden;
  display: inline-block; /* Ensures it respects text-align from parent and fits its content */
  /* Or if it must be block: */
  /* display: block; */
  /* text-align: center; */ /* Explicitly center its own text content */
}

.scrollinnerwrap {
  padding-top: 0 !important; /* Remove any top padding */
  margin-top: 0 !important;  /* Remove any top margin */
}

/* Responsive Design for Hero Date Picker */
@media (max-width: 768px) {
  section.hero-section .hero-content-blk h1 {
    margin-bottom: 40px;
  }
  
  .hero-datepicker-container {
    padding: 0 15px;
    margin: 30px auto 60px auto;
    padding-top: 50px;
  }
  
  .hero-datepicker-container .booqable-datepicker {
    padding: 20px;
  }
  
  .scroll-to-explore {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-datepicker-container .booqable-datepicker {
    padding: 15px;
  }
  
  .hero-datepicker-container .booqable-datepicker input {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .hero-datepicker-container .booqable-datepicker button {
    padding: 12px 24px;
    font-size: 12px;
  }
}

/* Car Detail Container */
/* Full black background */
body {
  background-color: #050505;
  background-image: url(images/nyc.jpg);
  /* Add other background properties for better control: */
  background-size: cover;       /* Scales the image to cover the entire body */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: center center; /* Centers the image */
  background-attachment: fixed; /* Keeps the image fixed when scrolling (optional) */
}

.car-detail-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  color: #eeebeb; /* White text */
  /* --- CRUCIAL: Establish positioning context for absolutely positioned children --- */
  position: relative;
  /* You might need a min-height here if the content inside is very short,
     to ensure there's enough room for the button at the bottom. */
  min-height: 500px; /* Adjust this value as needed based on your content length */
}

/* Main Image */
.main-image {
  margin-bottom: 1rem;
  padding-top: 140px; /* Assuming this is for header clearance */
}

.main-image img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 15px;
  border-width: 6px;
  border-color: rgb(176, 176, 176);
  border-style: solid; /* Add this line */
}

/* Gallery Carousel */
.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 10px;
  border-width: 20px;
  border-color:  rgba(176, 176, 176, 0.229);
}

.thumbnail {
  width: 100px;
  height: 75px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.thumbnail.active {
  border-color: rgb(176, 176, 176); /* White border for active */
}

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

/* Car Info (no 'position: relative' here anymore for the button's sake) */
.car-info {
  padding-top: 1rem;
  /* Remove position: relative; from here because the button is likely not its child */
  /* min-height will only affect the height of .car-info itself, not the button's positioning relative to it */
}

.car-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.car-type {
  display: block;
  color: #aaa; /* Light gray */
  margin-bottom: 0.5rem;
}

.car-rent {
  display: block;
  font-weight: bold;
  color: #d32f2f; /* Red accent */
  margin-bottom: 1.5rem;
}

/* Details Grid */
.details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05); /* Slight contrast */
  border-radius: 4px;
}

.detail-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #ccc; /* Light gray */
}

.detail-value {
  font-size: 1.1rem;
}

/* Description */
.car-description {
  line-height: 1.6;
  margin-top: 1.5rem;
  color: #eeebeb; /* Changed to match other text, was #0f0000 (black) */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .details {
    grid-template-columns: repeat(2, 1fr);
  }

  .car-name {
    font-size: 1.5rem;
  }
}

/* Add to Cart Container */
.add-to-cart-container {
  position: absolute;
  bottom: 245px;
  right: 200px;
}



