:root {
  --white-color: #fff;
  --primary-text: #2d2d2d;
  --secondary-text: #8e8e8e;
  --border-line: #f0f0f0;
  --quote-color: #e6ecf2;
  --arc-radius: -420px;
}

html,
body {
  width: 100%;
  height: 100%;
  color: var(--blue-color);
  background: var(--white-color);
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  min-height: 100vh;
  /* background: #000; */
}

.video-background {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

.video-background.active {
  opacity: 1;
  z-index: 1;
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 90%;
  margin: 0 auto;
  height: 100%;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}


section,
#container {
  position: relative;
  z-index: 1;
}

#container {
  height: auto;
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0e;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.percentage {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.loader-text {
  font-size: 11px;
  font-weight: 600;
  color: #71717a;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 5px;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  transition: width 0.08s ease-out;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Overlay Container */
/* .overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
} */

/* Left side details */
.details-left {
  position: absolute;
  left: 10px;
  top: 40%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  pointer-events: auto;
  /* enable clicks on the button */
}

.details-left .heading {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: var(--white-color);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.details-left .description {
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0 0 30px;
}

.details-left .btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0d0d0e;
  padding: 16px 34px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.details-left .btn-enquire:hover {
  transform: scale(1.04);
  background: #f4f4f5;
}

.details-left .btn-enquire .arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.details-left .btn-enquire:hover .arrow {
  transform: translate(2px, -2px);
}

/* Screen-blocking overlay gate */
.banner-overlay-gate {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: rgba(0, 0, 0, 0.25);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1.3);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Pull to open / Tap to open indicator inside the gate */
.pull-to-open {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 25;
}
.pull-to-open:hover{
animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  20% {
    transform: translateX(-50%) translateY(-8px);
  }
  40% {
    transform: translateX(-50%) translateY(0);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
  80% {
    transform: translateX(-50%) translateY(0);
  }
}
.pull-to-open .pointer-circle {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pull-to-open .pointer-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.2));
}

.pull-to-open .pull-text {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.85;
}

.sec-top-heading {
  text-align: center;
  margin-bottom: 40px;
}

.sec-top-heading .sec-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #7F7F7F;
  letter-spacing: 4%;
  text-transform: uppercase;
  line-height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.sec-top-heading .sec-title {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  line-height: 46px;
  margin: 0;
}

.sec-top-heading-white .sec-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.sec-top-heading-white .sec-title {
  color: #fff;
}

.banner-opened .header {
  display: flex;
}

.header {
  position: absolute;
  top: 0;
  left: max(60px, -960px + 50vw);
  right: max(60px, -960px + 50vw);
  padding: 32px 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.header .header-logo {
  width: 80px;
  min-width: 80px;
}

.header .nav-bar {
  display: none;
}

.header .header-nav {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 28px;
  border-radius: 100px;
}

.header .header-nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header .header-nav ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 4%;
  line-height: 19px;
  text-decoration: none;
}

.header .btn-enquire {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
  height: 48px;
  background: #fff;
  padding: 15px 34px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
}

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

.campaing-main .campaing-left {
  width: 50%;
  border-right: 1px solid #E0E0E0;
  padding: 60px 40px 60px 0;
}

.campaing-left .sec-top-heading {
  text-align: left;
  margin-bottom: 0px;
}

.campaing-left .sec-top-heading .sec-subtitle {
  justify-content: flex-start;
}

.campaing-left .sec-top-heading .sec-title {
  width: 280px;
  text-transform: capitalize;
}

.campaing-main .campaing-right {
  width: 50%;
  padding: 89px 0 60px 70px;
}

.campaing-main .campaing-right p {
  font-size: 16px;
  color: #707070;
  line-height: 24px;
  letter-spacing: 2%;
  text-align: justify;
}

.campaing-video {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
  line-height: 0;
}

/* .campaing-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1px;
  height: 65px;
  background: #E0E0E0;
  margin: 0 auto;
} */

.campaing-video video, .campaing-video iframe {
  width: 100% !important;
  height: 500px !important;
  object-fit: cover;
  border-radius: 20px;
  line-height: 0;
}
.campaing-video .campaing-video-mobile{
  display: none;
}

.why-choose {
  width: 100%;
  position: relative;
  padding: 0px;
  /* background: url('./why-choose-banner.png') no-repeat center center;
  background-size: cover; */
}

.why-choose .sec-top-heading {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

.why-choose-slider {
  padding: 0;
  line-height: 0;
}

.why-choose-slider .item {
  position: relative;
}

.why-choose-slider .item-thumb {
  width: 100%;
  position: relative;
}

.why-choose-slider .item-thumb .why-choose-title {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 26px;
  letter-spacing: 2%;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* .why-choose-slider .item-thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 14, 9, 0.4);
  z-index: 1;
} */

.why-choose-slider .item-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.why-choose-slider .item-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(60px, calc((100vw - 1920px) / 2));
  right: max(60px, calc((100vw - 1920px) / 2));
  transform: translate(0%, -50%);
}

.why-choose-slider .why-choose-list {
  width: 320px;
  min-width: 320px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 28px;
  margin-top: 50px;
}

.why-choose-slider .why-choose-list .why-choose-item {
  position: relative;
  width: 100%;
  height: 75px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  gap: 20px;
}

.why-choose-slider .why-choose-item .why-choose-count {
  font-size: 14px;
  color: #FFFFFFCC;
  font-weight: 400;
  line-height: 19px;
}

.why-choose-slider .why-choose-item .why-choose-details .why-choose-title {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 600;
  line-height: 19px;
  margin-bottom: 4px;
  letter-spacing: 4%;
}

.why-choose-slider .why-choose-item .why-choose-details .why-choose-description {
  width: 217px;
  font-size: 14px;
  color: #FFFFFFCC;
  font-weight: 300;
  letter-spacing: 4%;
  line-height: 19px;
}

.why-choose-slider .why-choose-thumb .why-choose-title {
  font-size: 20px;
  color: #FFFFFFCC;
  font-weight: 400;
  text-align: center;
  line-height: 26px;
  letter-spacing: 2%;
  position: relative;
  top: -30px;
}

.why-choose-slider .slick-arrow {
  font-size: 0;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: absolute;
  right: 90px;
  top: -65px;
  background-color: transparent;
  margin-top: -20px;
  z-index: 12;
  cursor: pointer;
  box-shadow: 0 0 0px rgba(0, 0, 0, .1);
}

.why-choose-slider .slick-next,
.why-choose-slider .slick-prev {
  font-size: 0;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: absolute;
  top: auto;
  left: 70px;
  right: 0px;
  bottom: 60px;
  background-color: transparent;
  margin: -20px auto 0;
  z-index: 12;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.why-choose-slider .slick-next::after,
.why-choose-slider .slick-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-40%, -50%);
  margin: auto;
  background: url(slider-arrow-prev.svg) no-repeat;
  background-size: 100%;
  border-radius: 50%;
  transition: ease-in-out 0.5s;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
}

.why-choose-slider .slick-next::after {
  background: url(slider-arrow-next.svg) no-repeat;
  background-size: 95%;
}

.why-choose-slider .slick-prev {
  left: 0;
  right: 70px;
  /* background-position: 0 -190px; */
}

.why-choose-slider .slick-prev:hover::after {
  background: url(slider-arrow-prev.svg) no-repeat;
  background-size: 100%;
}

.why-choose-slider .slick-next:hover::after {
  background: url(slider-arrow-next.svg) no-repeat;
  background-size: 95%;
}

.why-choose-slider .slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.footer {
  width: 100%;
  padding: 15px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer-logo {
  width: 80px;
  height: 60px;
}
.footer .footer-bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer .footer-bottom ul{
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.footer .footer-bottom ul li{
  list-style: none;
}
.footer .footer-bottom ul li a{
  font-size: 12px;
  color: #353535;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.footer .footer-logo .footerlogo {
  width: 100%;
  height: auto;
}

.footer p {
  font-size: 12px;
  color: #1F1F1FE5;
  line-height: 16px;
}

.footer .footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .footer-links .footer-icon {
  width: auto;
  height: auto;
}

.testimonial-section {
  width: 100%;
  min-height: 700px;
  position: relative;
  padding-top: 60px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background: #F5F5F5;
  margin: 0 auto;
}

/* Center Column Lines */
.center-column-lines {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  border-left: 1px solid var(--border-line);
  border-right: 1px solid var(--border-line);
  z-index: 1;
  pointer-events: none;
}

/* Top Right Navigation */
.testimonial-section .custom-nav-wrapper {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  gap: 20px;
  margin: 0 auto;
  z-index: 50;
  pointer-events: auto;
}

.testimonial-section .nav-btn {
  width: 46px;
  height: 46px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  border: 0;
  transition: all 0.2s ease;
}

/* .testimonial-section .nav-btn:disabled {
  transform: scale(.2);
} */

/* Header */
.section-header {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000;
  z-index: 10;
  background: #fff;
  padding: 0 15px;
}

.section-header .square {
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 2px;
}

/* -------------------------------------
           THE BULLETPROOF ARC WHEEL
        -------------------------------------- */
.wheel-container {
  position: absolute;
  top: 650px;
  left: 50%;
  width: 1200px;
  height: 950px;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 20;
  pointer-events: none;
}

.wheel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 110px;
  /* Centers the item precisely on its coordinate */
  margin-top: -55px;
  margin-left: -75px;
  /* JS will apply transform: rotate(deg) translateY(var(--arc-radius)) */
}

/* Inner box handles Scale and Opacity separately for smooth visual effects */
.img-box {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  opacity:1;
  transform: scale(1);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid #fff;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
}

.img-box .icon-wrapper {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.img-box .loc-icon-inactive {
  display: block;
  width: 18px;
  height: 18px;
}

.img-box .loc-icon-active {
  display: none;
  width: 16px;
  height: 16px;
}

.img-box .location-name {
  font-size: 11px;
  font-weight: 600;
  color: #707070;
  font-family: "Manrope", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0;
  line-height: 14px;
  min-width: 0;
}

/* Active Image State */
.wheel-item.active .img-box {
  opacity: 1;
  transform: scale(1);
  background: #000;
  border-color: #000;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
}

.wheel-item.active .img-box .loc-icon-inactive {
  display: none;
}

.wheel-item.active .img-box .loc-icon-active {
  display: block;
}

.wheel-item.active .img-box .location-name {
  color: #fff;
}
/* -------------------------------------
           TEXT SWIPER
        -------------------------------------- */
.testimonial-section .swiper-text {
  position: absolute;
  top: 350px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 350px;
  text-align: center;
  z-index: 1;
}

.testimonial-section .testimonial-tabs {
  position: absolute;
  top: 95px;
  right: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #D9D9D9;
}

.testimonial-section .testimonial-tab {
  width: 150px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #707070;
  padding: 0 0 7px;
  position: relative;
  cursor: pointer;
}

.testimonial-section .testimonial-tab:last-child {
  text-align: right;
}

.testimonial-section .testimonial-tab.active {
  color: #1F1F1F;
}

.testimonial-section .testimonial-tab.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #1F1F1F;
  border-radius: 10px;
}
#exclusive .wheel-container{left: 50.5%;}

.testimonial-tab-card {
  display: none;
}

.testimonial-tab-card.active {
  display: block;
}
.store-details{
  height: 310px;
}
.store-details .open-tag {
  font-size: 12px;
  font-weight: 500;
  color: #17803D;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.store-details .open-line {
  margin-top: 14px;
}

.store-details .location-tag {
  font-size: 16px;
  color: #1F1F1F;
  font-weight: 600;
  letter-spacing: 4%;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  display: none;
}

.store-details .store-address {
  width: 320px;
  font-size: 14px;
  color: #707070;
  font-weight: 400;
  letter-spacing: 0%;
  line-height: 20px;
  margin: 14px auto 0;
}

.store-details .store-call {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.store-details .store-call .store-call-link {
  font-size: 14px;
  font-weight: 500;
  color: #1F1F1F;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-right: 0px;
  border-right: 1px solid #E0E0E0;
  
}
.store-details .store-call .store-num{
  padding-right: 20px;
}
.store-details .store-call .store-get{
  padding-left: 20px;
}

.store-details .store-call .store-call-link:last-child {
  padding-right: 0;
  border-right: none;
}

/* Responsive adjustments */
.sec-get {
  padding: 85px 0;
  background: #000;
  position: relative;
}

.sec-get .get-touch-heading {
  font-size: 196px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  line-height: 245px;
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0%;
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.get-touch-form {
  width: 1010px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 58px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  /* opacity: 0;
    transform: translateY(300px);
    transition: all 0.2s ease; */
}
/* .sec-get .get-touch-form.show {
    opacity: 1;
   transform: translateY(0);
} */

.get-touch-form .get-form-heading {
  font-size: 36px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 49px;
  text-align: center;
  margin-bottom: 30px;
}

.get-touch-form .form-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.get-touch-form .form-left,
.get-touch-form .form-right {
  width: 50%;
}

.get-touch-form .form-group {
  position: relative;
  margin-bottom: 24px;
}

.get-touch-form .form-label {
  font-size: 16px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 22px;
  padding: 0 10px;
  position: absolute;
  top: -10px;
  left: 12px;
  background: #fff;
  z-index: 1;
}

.get-touch-form .form-control, .select2-container {
  width: 100%;
  padding: 12px 22px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 14px;
  color: #707070;
  line-height: 19px;
  font-family: "Manrope", sans-serif;
  height: 56px;
}
.select2-container .select2-selection{
border: 0;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  padding: 0;
}

.get-touch-form textarea.form-control {
  padding: 32px 22px;
  height: 252px;
  resize: none;
}

.get-touch-form .btn-submit {
  width: 100%;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 19px;
  font-family: "Manrope", sans-serif;
  text-transform: capitalize;
  height: 56px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 19px 30px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  top:15px;
  right: 22px;
}
.get-touch-form .form-control.selectarrow, .select2-container--default .select2-selection--single .select2-selection__arrow{
  background: url(down-arrow.svg) no-repeat 95% var(--white-color);
  background-size: 12px;
  -webkit-appearance: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  display: none;
}

.get-touch-form .form-group:last-child {
  margin-bottom: 0;
}

.get-touch-form .form-control:focus {
  outline: 0px solid #E0E0E0;
  border: 1px solid #E0E0E0;
  box-shadow: 0 0 0;
}
.hero-copy {
  position: fixed;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  text-align: center;
  pointer-events: none;
}

.hero-copy .hero-title {
  margin: 0;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 42%;
  text-transform: uppercase;
}

.hero-copy .hero-subtitle {
  font-size: 14px;
  line-height: 19px;
  color: var(--white-color);
  letter-spacing: 12%;
  text-transform: uppercase;
  margin: 8px auto 0;
}
.largest-sec{
  padding-top: 60px;
  background: #F5F5F5;
}
.largest-main{
  display: grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin: 0 -20px;
}
.largest-main .item{
  border-right: 1px solid #E0E0E0;
  padding: 0 20px 54px;
}
.largest-card .largest-thumb img{
  width: 100% !important;
  height: auto !important;
  border-radius: 20px;
}
.largest-card .largest-contnet{
  margin-top: 20px;
}
.largest-card .largest-contnet .largest-title{
  font-size: 18px;
  color: #1F1F1F;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 2%;
  margin-bottom: 6px;
}
.largest-card .largest-contnet p{
  width: 245px;
  height: 40px;
  font-size: 14px;
  color: #707070;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 4%;
  margin-bottom: 30px;
}
.largest-card .largest-contnet .know-btn{
  font-size: 14px;
  line-height: 19px;
  color: #1F1F1F;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.largest-main .item:last-child{
  border-right: 0;
}
.floating-sec{
  position: fixed;
  bottom: 80px;
  right: 60px;

}
.banner-opened .floating-sec{
  z-index: 1;
}
.floating-sec .floating-list{
  visibility: hidden;
  opacity: 1;
  transition: ease-in-out .2s;
}
.floating-sec .floating-btn{
  font-size: 12px;
  color: #000;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  background: #fff;
  border-radius: 50px;
  padding-left: 20px;
}
.floating-sec.active .floating-list{
  visibility: visible;
  opacity: 1;
}
.floating-sec .floating-click{
  display: block;
  text-align: right;
  cursor: pointer;
}
.floating-sec .floating-click img{
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.floating-sec .floating-click svg{
  width: 50px;
  height: 50px;
  margin-top: 10px;
}
.floating-sec.active .floating-click .arrow-bottom, .floating-sec .floating-click .arrow-top{
  display: none;
}
.floating-sec.active .floating-click .arrow-top{
  display: inline-block;
}
.floating-sec .floating-btn:last-child{
  margin-bottom: 0;
}
.nav-btn.disabled,
.nav-btn:disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}
.select2-search--dropdown{
  position: relative;
}
.select2-search--dropdown::after{
  content: '';
  width: 10px;
  height: 10px;
  background: url(../frontend/search-icon.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 12px;
  right: 12px;
}
@media (min-width: 768px) {
.floating-sec:hover .floating-list{
  visibility: visible;
  opacity: 1;
}
.floating-sec .floating-click .arrow-top, .floating-sec:hover .floating-click .arrow-bottom{
  display: none;
}
.floating-sec:hover .floating-click .arrow-top{
  display: inline-block;
}
}

@media (min-width: 992px) and (max-width: 1024px) {

  .video-background{
    height: auto;
    min-height: auto;
  }
  .overlay-container {
    height: 100vh;
    min-height: 100vh;
    overflow: visible;
  }

  .video-background {
    object-position: center center;
  }
}

@media (max-width: 1199px) {
  :root{
    --arc-radius: -400px;
  }
  .container{
    padding: 0 20px;
  }
  .header{
    left: max(20px, -960px + 50vw);
    right: max(20px, -960px + 50vw);
    padding: 15px 0;
  }
  .overlay-container{
    max-width: 95%;
  }
  .sec-get .get-touch-heading{
    font-size: 80px;
    line-height: 85px;
  }
  .get-touch-form{
    width: 100%;
    padding: 30px 20px;
  }
  .campaing-main .campaing-right p{
    width: 100%;
  }
  .why-choose-slider .item-content{
    top: 65%;
    left: max(20px, calc((100vw - 1920px) / 2));
    right: max(20px, calc((100vw - 1920px) / 2));
    transform: translate(0%, -65%);
  }
  .largest-card .largest-contnet p{
    width: 220px;
  }
}
@media (max-width: 1024px) {
  
  .details-left {
    left: 0%;
    top: 40%;
    max-width: 420px;
  }

  .details-left .heading {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  
  .header .header-nav{
    padding: 15px;
  }
  .header .header-nav ul{
    gap: 15px;
  }
  .header .header-nav ul li a{
    font-size: 12px;
  }
  .header .btn-enquire{
    padding: 15px 20px;
  } 
  .campaing-main .campaing-left{
    padding: 40px 40px 40px 0;
  }
  .campaing-left .sec-top-heading .sec-title{
    width: 100%;
    font-size:24px;
    line-height: 32px;
  }
  .campaing-main .campaing-right{
    padding: 60px 0 40px 40px;
  }
  .campaing-main .campaing-right p{
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  
  .why-choose-slider .why-choose-list{
    width: 320px;
    min-width: 320px;
    margin-top: 0;
  }
  .testimonial-section{
    padding-top: 80px;
  }
  .testimonial-section .testimonial-tabs{
    width: max-content;
    position: absolute;
    top: 25px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  
  .center-column-lines {
    width: 400px;
  }

  .swiper-text {
    max-width: 380px;
  }
  .footer .container{
    flex-wrap: wrap;
  }
  .footer .footer-logo{
    order:1;
  }
  .footer .footer-links{
    order:2;
    position: relative;
    top: 10px;
    gap: 8px;
  }
  .footer .footer-bottom{
    order:3;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .footer .footer-bottom p{
    width: 100%;
  }
  .largest-main{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root{
    --arc-radius: -300px;
  }
  #container{height: 100vh;}
  .container{
    padding: 0 20px;
  }
  .sec-top-heading .sec-title{
    font-size: 28px;
    line-height: 36px;
  }
  .details-left {
    left: 8%;
    right: 8%;
    top: auto;
    bottom: 12%;
    transform: none;
    max-width: 100%;
    gap: 16px;
  }

  .details-left .heading {
    font-size: 28px;
    line-height: 1.2;
  }

  .details-left .description {
    font-size: 14px;
    max-width: 100%;
  }

  .details-left .btn-enquire {
    padding: 10px 24px;
    font-size: 13px;
  }

  .pull-to-open {
    bottom: 42%;
  }

  .pull-to-open .pointer-line {
    height: 40px;
  }

  /* Smaller radius for mobile */
  .testimonial-section {
    padding-top: 100px;
    min-height: 700px;
  }

  .center-column-lines {
    border: none;
  }

  .custom-nav-wrapper {
    top: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .section-header {
    top: 90px;
  }

  .wheel-container {
    top: 540px;
    width: 700px;
    height: 700px;
  }

  .wheel-item {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
  }

  .img-box {
    border-radius: 12px;
    gap: 3px;
    padding: 6px;
  }

  .img-box .location-name {
    font-size: 9px;
    line-height: 12px;
  }

  .swiper-text {
    top: 320px;
    max-width: 95%;
  }

  .quote-text {
    font-size: 15px;
  }
  .header{
    padding: 5px 0;
    left: max(20px, -960px + 50vw);
    right: max(20px, -960px + 50vw);
  }
  .header .header-logo{
    width: 50px;
    min-width: 50px;
  }
  .header .nav-bar{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    border: 0;
  }
  .header .header-nav{
    width: 100%;
    position: fixed;
    top: 45px;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    height:55vh;
    border-radius: 0;
    display: none;
  }
  .header .header-nav ul{
    flex-wrap: wrap;
    gap: 15px;
  }
  .header .header-nav ul li{
    width: 100%;
  }
  .header .header-nav ul li a{
    font-size: 16px;
    color: #1F1F1F;
  }
  .menu-open{
    overflow-y: hidden !important;
  }
  .header .header-nav.active{
    display:block;
  }
  .header .btn-enquire{
    display: none;
  }
  .hero-copy{
    top:10%;
  }
  .hero-copy .hero-title{
    font-size: 16px;
  }
  .hero-copy .hero-subtitle{
    font-size: 12px;
  }
  .get-touch-form .form-control, .select2-container{
    width: 100% !important;
  }
 .banner-opened #container{
    height: auto;
  }
  .banner-opened .video-background{
    position: relative;
  }
  .details-left {
    left: 0;
    right: 0;
    top: 0%;
    gap: 12px;
    text-align: center;
    justify-content: center;
    align-items: center;
    bottom: 0;
  }

  .details-left .heading {
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    margin: 0;
  }

  .details-left .description {
    font-size: 14px;
    line-height:21px;
    letter-spacing: 2%;
    margin: 0 0 14px;
  }
  .campaing-main{
    flex-wrap: wrap;
  }
  .campaing-main .campaing-left{
    width: 100%;
    border-right: none;
    padding: 40px 0px 16px;
  }
  .campaing-main .campaing-right{
    width: 100%;
    padding: 0px 0px 30px;
  }
  .campaing-left .sec-top-heading .sec-title{
    font-size: 24px;
    line-height: 32px;
  }
  .campaing-main .campaing-right p{
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .campaing-video{
    padding-bottom: 40px;
  }
  .campaing-video::after{
    display: none;
  }
  .why-choose{
    padding-top: 24px;
  }
  .why-choose-slider{
    padding-bottom: 90px;
  }
  .why-choose .sec-top-heading{
    position: relative;
    top:0;
    margin: 0 auto 24px;
  }
  .why-choose .sec-top-heading-white .sec-subtitle{
    color: #7F7F7F;
  }
  .why-choose .sec-top-heading-white .sec-title{
    color: #000;
  }
  .why-choose-slider .item-content{
    flex-wrap: wrap;
    position: relative;
    top: 0;
    left: max(0px, calc((100vw - 1920px) / 2));
    right: max(0px, calc((100vw - 1920px) / 2));
    transform: translate(0%);
    margin-top:20px;
    padding: 0 20px;
    gap: 10px;
  }
  .why-choose-slider .why-choose-list{
    width: 100%;
    min-width: 100%;
    gap: 10px;
    margin-top: 0;
  }
  .why-choose-slider .why-choose-list .why-choose-item{
    height: auto;
    background: #F5F5F5;
    padding: 18px 24px;
  }
  .why-choose-slider .why-choose-item .why-choose-details .why-choose-description{
    width: 200px;
    color:#707070;
  }
  .why-choose-slider .why-choose-item .why-choose-count{
    color: #8B8B8B;
  }
  .why-choose-slider .why-choose-item .why-choose-details .why-choose-title{
    color: #1F1F1F;
  }
  .why-choose-slider .why-choose-list .why-choose-item .why-choose-border svg path{
    stroke: #E0E0E0;
    stroke-opacity: 1;
  }
  .why-choose-slider .slick-next, .why-choose-slider .slick-prev{
    top: auto;
    right: -60px;
    left: 0;
    bottom: 30px;
    margin: 0 auto;
  }
  .why-choose-slider .slick-prev::after, .why-choose-slider .slick-prev:hover::after{
    background: url(black-slider-arrow-prev.svg) no-repeat;
  }
  .why-choose-slider .slick-next::after, .why-choose-slider .slick-next:hover::after{
    background: url(black-slider-arrow-next.svg) no-repeat;
  }
  
  .why-choose-slider .slick-prev{
    left: -60px;
    right: 0;
  }
  .why-choose-slider .item-thumb .why-choose-title{
    bottom: 120px;
  }
  .testimonial-section .testimonial-tabs{
    width: max-content;
    top: 50px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .testimonial-section .custom-nav-wrapper{
    width: 100%;
    height: max-content;
    top: auto;
    bottom: 40px;
    left: 0px;
    right: 0;
    margin: 0 auto;
    transform: translateX(0%);
  }
  .testimonial-section .swiper-text{
    max-width: 320px;
    top:320px;
  }
  .store-details .location-tag, .store-details .store-call{
    margin-top: 20px;
  }
  .sec-get{
    padding: 40px 0;
  }
  .sec-get .get-touch-heading{
    font-size:40px;
    line-height: 46px;
  }
  .get-touch-form{
    width: 100%;
    padding: 30px 20px;
  }
  .get-touch-form .get-form-heading{
    font-size: 28px;
    line-height: 36px;
  }
  .get-touch-form .form-row{
    flex-wrap: wrap;
    gap:0;
  }
  .get-touch-form .form-left, .get-touch-form .form-right{
    width: 100%;
  }
  .get-touch-form .form-group:last-child{
    margin-bottom: 24px;
  }
  .get-touch-form .form-right .form-group:last-child{
    margin-bottom: 0;
  }
  
  .footer .container{
    flex-wrap: wrap;
  }
  .footer .footer-logo{
    order:1;
  }
  .footer .footer-links{
    order:2;
    position: relative;
    top: 10px;
    gap: 8px;
  }
  .footer .footer-links a{
    width: 26px;
  }
  .footer .footer-bottom{
    order:3;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .footer .footer-bottom p{
    width: 100%;
  }
  
  .largest-sec{
    padding: 40px 0;
  }
  .largest-sec .sec-top-heading .sec-title{
    width: 300px;
    margin: 0 auto;
  }
  .largest-main{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
    margin: 0px;
  }
  .largest-main .item{
    padding: 0 0 20px;
    border-bottom: 1px solid #E0E0E0;
    border-right: 0;
  }
  .largest-card .largest-contnet p{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .largest-main .item:last-child{
    padding-bottom: 0;
    border-bottom: 0;
  }
  .floating-sec{
    right: 10px;
  }
  .floating-sec .floating-btn{
    margin-bottom: 4px;
    outline: 0;
  }
  .floating-sec .floating-btn svg{
    width: 36px;
    height: 36px;
  }
  .floating-sec .floating-click svg{
    width: 40px;
    height: 40px;
  }
  .campaing-video .campaing-video-mobile{
    display: block;
    aspect-ratio: 4 / 5;
  }
  .campaing-video .campaing-video-desktop{
    display: none;
  }
}

@media (max-width: 480px) {
  

  .details-left .btn-enquire {
    padding: 8px 20px;
    font-size: 12px;
  }

  .pull-to-open .pull-text {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

