@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap");

/*Booking Code Start*/

/*Booking Code End*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Josefin Sans", sans-serif !important;
}

.navbar {
  background-color: transparent;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
}

.navbar-toggler {
  outline: none !important;
  border: 3px solid #802bb1 !important;
  border-radius: 0 !important;
}

.nav-link-div {
  position: relative;
}

.nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #d1d7e0 !important;
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

@media only screen and (min-width: 992px) {
  .nav-link-div:not(:last-child) {
    margin-right: 30px;
  }

  .nav-link-div::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-radius: 100%;
    background-color: #ffffff;
    transition: all 0.1s ease-in-out;
  }

  .nav-link-div:hover::before {
    animation-name: nav_link_div_anim;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    width: 100%;
    height: 2px;
    border-radius: 0;
  }

  @keyframes nav_link_div_anim {
    0% {
      width: 0;
      height: 0;
      border-radius: 100%;
    }
    30% {
      width: 6px;
      height: 6px;
      border-radius: 100%;
    }
    60% {
      width: 0;
      height: 0;
      border-radius: 100%;
    }
    80% {
      width: 2px;
      height: 2px;
      border-radius: 100%;
    }
    100% {
      border-radius: 0;
      width: 100%;
    }
  }

  .nav-link-div.active::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    width: 15px;
    height: 3px;
    border-radius: 0;
    background-color: #ffffff;
    animation: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    background-color: #2d283e;
    border-radius: 20px;
    overflow: hidden;
  }

  .nav-link-div:not(:last-child) {
    margin-bottom: 10px;
  }

  .nav-link-div.active .nav-link {
    background-color: #564f6f !important;
  }

  .nav-link {
    padding: 10px 15px !important;
  }
}

.caret {
  vertical-align: unset;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
}

.caret-up {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #4c495d;
  border: 2px solid #d1d7e0;
  overflow: hidden;
  display: none;
}

@media only screen and (max-width: 991px) {
  .nav-dropdown-menu {
    position: relative;
  }
}

.dropdown-menu-links {
  display: block;
  text-decoration: none !important;
  padding: 6px 5px;
  font-size: 16px;
  font-weight: 500;
  color: #d1d7e0 !important;
  background-color: #4c495d;
  transition: all 0.3s ease-in-out;
}

.dropdown-menu-links:hover {
  background-color: #2d283e !important;
}

.home-page-header {
  background: url("images/header-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home-page-header-opacity {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 140px 0 100px;
  overflow: hidden;
}

.header-span {
  display: block;
  font-size: 32px;
  font-weight: 600;
  color: #d1d7e0;
  margin-bottom: 5px;
}

.header-heading {
  font-size: 50px;
  font-weight: 700;
  color: #b435fd;
  margin-bottom: 0;
  text-shadow: 0px 6px 0px #2d283e;
}

.header-below-heading-span {
  display: block;
  font-size: 25px;
  font-weight: 300;
  color: #ffffff;
}

.call-div {
  display: inline-block;
  padding: 5px 15px;
  background-color: #2d283e;
  border: 1px solid #2d283e;
  border-radius: 10px;
  margin-top: 10px;
}

.call-span {
  font-size: 18px;
  font-weight: 400;
  color: #d1d7e0;
  vertical-align: text-top;
}

@media only screen and (max-width: 280px) {
  .logo {
    width: 170px;
  }

  .call-span {
    font-size: 16px;
  }

  .stores-link-span {
    font-size: 16px !important;
  }
}

.call-link {
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
}

.stores-div {
  display: inline-block;
  margin-top: 10px;
}

.stores-link {
  display: inline-block;
  text-decoration: none !important;
  padding: 5px 15px;
  background-color: #2d283e;
  border: 1px solid #2d283e;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.stores-link:hover {
  background-color: transparent;
  border-color: #802bb1;
}

.stores-link-span {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  vertical-align: bottom;
}

/*Booking form CSS*/
.form-div {
  background-color: #4c495d;
  border-radius: 20px;
  margin-top: 40px;
}

.custom-tables td {
  vertical-align: middle !important;
  border: none !important;
}

.custom-tables tr:not(:last-child) {
  border-bottom: 2px solid #802bb1;
}

.via-labels {
  font-size: 18px;
  font-weight: 500;
  color: #2d283e;
}

.wait-label {
  font-size: 16px;
  font-weight: 500;
  color: #2d283e;
  margin: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#timeModal .input-group-text {
  background-color: #802bb1 !important;
  border: none !important;
  border-radius: 7px !important;
}

#timeModal .input-group-text > label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.loading-div {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: rgba(45, 40, 62, 0.8);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.inner-loading-div {
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.loading-heading {
  font-size: 40px;
  font-weight: 700;
  color: #d1d7e0;
  margin-bottom: 30px;
}

.loading-imgs-div {
  width: fit-content;
  position: relative;
}

.steer {
  animation-name: tire_anim;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes tire_anim {
  0% {
    transform: rotate(0);
  }

  15% {
    transform: rotate(70deg);
  }

  30% {
    transform: rotate(70deg);
  }

  45% {
    transform: rotate(0);
  }

  60% {
    transform: rotate(-70deg);
  }

  75% {
    transform: rotate(-70deg);
  }

  90% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}
/*Booking form CSS end*/

.steps-div {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.steps-img-div {
  display: inline-block;
  background-color: #d1d7e0;
  padding: 13px;
  border: 2px solid #802bb1;
  border-radius: 100%;
  margin-bottom: 10px;
}

.steps-headings {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.steps-line {
  width: 7px;
  height: 50px;
  background-color: #d1d7e0;
}

.steps-heading-div {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-lr;
}

.steps-heading-div > h4 {
  font-size: 25px;
  font-weight: 600;
  color: #d1d7e0;
  letter-spacing: 8px;
  margin: 0;
}

.service-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.main-dark-purple-headings {
  font-size: 40px;
  font-weight: 700;
  color: #2d283e;
  margin-bottom: 0;
}

.main-service-div {
  overflow: hidden;
}

.service-imgs-div {
  display: inline-block;
  background-color: #4c495d;
  padding: 20px;
  border-radius: 100%;
  /*border: 2px solid #4c495d;
    border-bottom-color: transparent;*/
  position: relative;
  transition: all 0.3s ease-in-out;
}

.service-imgs-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-radius: 100%;
  border: 2px solid #4c495d;
  border-bottom-color: transparent;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.service-imgs {
  transition: all 0.3s ease-in-out;
}

.service-headings-div {
  background-color: #2d283e;
  padding: 10px 5px;
  border-radius: 10px;
  position: relative;
  top: -10px;
  transition: all 0.3s ease-in-out;
}

.service-headings {
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.main-service-div:hover .service-imgs-div {
  background-color: transparent;
}

.main-service-div:hover .service-imgs-div::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.main-service-div:hover .service-imgs {
  filter: drop-shadow(0px 6px 3px #2b283e);
  transform: translateY(-6px);
}

.fleet-section {
  background-color: #2d283e;
  overflow: hidden;
}

.fleet-section-img {
  background: url("images/fleet-section-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  padding: 80px 0;
}

@media only screen and (max-width: 767px) {
  .fleet-section-img {
    background-size: 220%;
    background-position: center 2%;
  }
}

.carousel-caption {
  position: relative !important;
  top: unset !important;
  right: unset !important;
  bottom: unset !important;
  left: unset !important;
  background-color: #2d283e !important;
}

.fleet-headings {
  font-size: 35px;
  font-weight: 700;
  color: #d1d7e0;
  margin-bottom: 0;
  letter-spacing: 4px;
}

.fleet-details-div {
  background-color: #d1d7e0;
  padding: 10px 5px;
  border-radius: 20px;
}

.fleet-quantity {
  font-size: 30px;
  font-weight: 500;
  color: #802bb1;
}

.fleet-names {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #4c495d;
}

.carousel-indicators {
  position: relative !important;
  top: unset !important;
  right: unset !important;
  bottom: unset !important;
  left: unset !important;
  margin: 0 !important;
}

.fleet-car-icon-li {
  width: auto !important;
  height: auto !important;
  text-indent: unset !important;
  background-clip: unset !important;
  border: none !important;
  padding: 10px !important;
  border-radius: 100% !important;
}

.fleet-car-icon {
  display: inline-block;
}

.about-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.about-paras {
  font-size: 17px;
  font-weight: 500;
  color: #4c495d;
  text-align: justify;
}

.about-paras:last-child {
  margin-bottom: 0;
}

.sub-headings {
  font-size: 25px;
  font-weight: 700;
  color: #802bb1;
}

.airport-section {
  background: url("images/airport-section-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.airport-section-opacity {
  background-color: rgba(45, 40, 62, 0.8);
  padding: 80px 0;
  overflow: hidden;
}

.main-light-blue-headings {
  font-size: 40px;
  font-weight: 700;
  color: #d1d7e0;
  margin-bottom: 0;
}

.airport-media {
  overflow: hidden;
}

.airport-imgs {
  background-color: #d1d7e0;
  border-radius: 100%;
  padding: 24px 5px;
  float: right;
}

.airport-headings {
  font-size: 24px;
  font-weight: 600;
  color: #b435fd;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .airport-headings {
    font-size: 22px;
  }
}

.airport-paras {
  font-size: 16px;
  font-weight: 500;
  color: #d1d7e0;
  margin-bottom: 0;
  text-align: justify;
}

.airport-links {
  text-decoration: underline;
  color: #ffffff;
  font-weight: 700;
  font-style: italic;
  transition: all 0.3s ease-in-out;
}

.airport-links:hover {
  color: #d1d7e0;
}

.station-section {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.main-grey-purple-headings {
  font-size: 40px;
  font-weight: 700;
  color: #4c495d;
  margin-bottom: 0;
}

.station-media {
  overflow: hidden;
}

.station-imgs {
  border: 2px solid #2d283e;
  border-radius: 100%;
  background-color: #2d283e;
}

.station-headings {
  font-size: 24px;
  font-weight: 700;
  color: #2d283e;
}

.station-paras {
  font-size: 16px;
  font-weight: 500;
  color: #4c495d;
  margin-bottom: 0;
  text-align: justify;
}

.station-links {
  text-decoration: underline;
  color: #2d283e !important;
  font-weight: 700;
  font-style: italic;
  transition: all 0.3s ease-in-out;
}

footer {
  background: url("images/footer-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-opacity {
  background-color: rgba(45, 40, 62, 0.7);
  padding: 50px 0;
  overflow: hidden;
}

.footer-headings {
  font-size: 22px;
  font-weight: 600;
  color: #d1d7e0;
  margin-bottom: 0;
}

.footer-para {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.social-links {
  text-decoration: none !important;
  display: inline-block;
  padding: 6px;
  border: 2px solid #d1d7e0;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}

.social-links:hover {
  border-color: #b435fd;
}

.contact-links {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none !important;
}

.footer-section {
  background-color: #d1d7e0;
  padding: 20px 0;
  overflow: hidden;
}

.footer-link {
  font-size: 15px;
  font-weight: 500;
  color: #4c495d;
  text-decoration: none !important;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

a.footer-link:hover {
  color: #2d283e;
}

/*inner pages styling*/
.inner-pages-header {
  background: url("images/inner-pages-header-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.inner-pages-header-opacity {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 140px 0 100px;
  overflow: hidden;
}

.about-list {
  font-size: 17px;
  font-weight: 500;
  color: #4c495d;
  list-style-type: square;
  padding-left: 16px;
}

.contact-form {
  background-color: #d1d7e0;
  border-radius: 30px;
}

.address {
  font-size: 18px;
  font-weight: 500;
  color: #4c495d;
  margin-bottom: 0;
}

.address-span {
  font-weight: 700;
  color: #2d283e;
}

/*area pages styling*/
.area-pages-header {
  background: url("images/area-pages-header-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.area-pages-header-opacity {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 140px 0 120px;
  overflow: hidden;
}

.area-pages-form-div {
  margin-top: -80px;
}

/*404 page styling*/
.main-404-div {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #2d283e;
}

.inner-404-div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.heading-404 {
  font-size: 100px;
  font-weight: 700;
  color: #b435fd;
}

.sub-heading-404 {
  font-weight: 700;
  color: #d1d7e0;
}

.para-404 {
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.link-404 {
  display: inline-block;
  text-decoration: none !important;
  position: relative;
  font-weight: 700;
  color: #b435fd;
  transition: all 0.3s ease-in-out;
}

.link-404:hover {
  color: #d1d7e0;
}

@media (max-width: 576px) {
  .header-heading {
    font-size: 22px;
  }
  .header-span {
    font-size: 13px;
  }

  .header-below-heading-span {
    font-size: 14px;
  }
  .home-page-header-opacity {
    padding: 70px 0 100px;
  }

  .area-pages-header-opacity {
    padding: 70px 0 120px;
  }

  .logo {
    width: 100px !important;
  }

 
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#emailRender{
  color:  white !important;
}
