@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

* {
  margin: 0px;
  padding: 0px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
}

:root {
  --main: #ffa300;
  --main2: #012b67;
  --black: #000;
  --white: #fff;
  --light-grey: #828282;
  --dark-grey: #4e4c4c;
  --text-default: clamp(0.9rem, calc(0.15vw + 0.9rem), 0.9rem);
  --text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
  --color-black-500: hsl(210, 15%, 4%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 30px 50px 30px rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: var(--main);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.3);
}

::selection {
  color: var(--white);
  background-color: var(--main);
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  font-style: normal;
}

.text-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.text-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.text-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.text-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.text-main {
  color: var(--main);
}

p {
  text-align: justify;
}

.btn-default {
  background: var(--main);
  color: var(--white);
  text-transform: capitalize;
  border-radius: 0rem;
  border: 2px solid var(--main);
  font-weight: 500;
  font-size: 14px;
  padding: 0.5rem 2rem;
}

.btn-default:hover {
  background: transparent;
  color: var(--main);
  border: 2px solid var(--main);
}

.btn-default-book {
  background: var(--main);
  color: var(--white);
  text-transform: capitalize;
  border-radius: 0rem;
  border: 2px solid var(--main);
  font-weight: 500;
  font-size: 14px;
  padding: 0.35rem 2rem !important;
}

.btn-default-book:hover {
  background: transparent;
  color: var(--main);
  border: 2px solid var(--main);
}

.btn-secondary {
  background: var(--main2);
  color: var(--black);
  text-transform: capitalize;
  border-radius: 0rem;
  border: 2px solid var(--main2);
  font-weight: 500;
  font-size: 14px;
  padding: 0.5rem 1rem;
}

.btn-secondary:hover {
  background: var(--main);
  color: var(--white) !important;
  border: 2px solid var(--main);
}

.mobile-btn {
  display: none;
}

.main-heading {
  color: var(--main2);
  font-size: 2rem;
  font-weight: 600;
  text-transform: capitalize;
}

.sub-heading {
  font-size: 1rem;
  font-weight: 500;
  text-transform: inherit;
  color: var(--main2);
}

/* header start */
header {
  background-color: #fff;
}
nav .nav-link {
  font-weight: 600 !important;
  font-size: 1rem !important;
}

header .nav-item {
  position: relative;
}

header .nav-item .nav-link.active {
  color: black;
}

.navbar-expand-lg {
  display: block;
  padding: 0;
  background-color: #e7e7e7;
}

.header.fixed-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-header .fixed-top {
  background-color: var(--dark-grey);
}

.navbar-brand img {
  width: 85%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-like.active {
  color: var(--main);
}

.navbar a.nav-link {
  padding: 0.7rem 1rem !important;
}

.lighter-text {
  color: var(--main);
  font-weight: 600;
}

.cross i {
  font-size: 1.2rem;
  color: var(--main2);
  margin-left: 1rem;
}

.top-cont {
  list-style-type: none;
  background-color: #e9e9e9;
  padding: 0.5rem 1rem;
  margin-bottom: 0rem;
}

.top-cont a {
  color: #000;
}

.top-cont a {
  display: flex;
  column-gap: 0.7rem;
  color: #012b67;
}
/* header end */
/* Breadcrumb */
.breadcrumb-bg {
  background-position: bottom right;
  background-size: cover;
  background: var(--main);
  float: left;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-bg h1 {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
}

.grey-bg {
  background-color: #f3f4f6;
  padding: 3rem 0rem;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.42);
  transition: all 0.2s;
  z-index: 999;
}

.xs-hidden {
  display: block;
}

.md-hidden {
  display: none;
}

.blink-text {
  animation: blink 2s linear infinite;
  width: 0;
  /* animation: blink-box 2s ease-in-out infinite */
  /* animation: typing 5s steps(50, end) infinite; */
}

@keyframes blink-box {
  0% {
    background-color: #f1c9af;
  }

  50% {
    background-color: #f1c9af;
  }

  75% {
    background-color: #f7e87a;
  }

  100% {
    background-color: #f1c9af;
  }
}

@keyframes blink {
  0% {
    color: red;
    opacity: 1;
  }

  100% {
    color: #000;
    opacity: 0.7;
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes an-glare {
  0% {
    opacity: 0;

    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    -webkit-transform: translateX(150%);
    -moz-transform: translateX(150%);
    -o-transform: translateX(150%);
    transform: translateX(150%);
  }
}

/* Responsive media breakpoint */

/* Burger menu */
.burger {
  position: absolute;
  display: block;
  cursor: pointer;
  user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
  right: 1rem;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: var(--color-black-500);
  transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

.mobile-nav-cross {
  display: none;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

/* slider start*/
#sliderproduct {
  width: 100%;
}

#sliderproduct .col-sm-6:last-child {
  padding-top: 27px;
  padding-bottom: 27px;
}

#sliderproduct .carousel-item {
  transition: 0.4s;
}

#sliderproduct a.carousel-control-prev,
#sliderproduct a.carousel-control-next {
  border-radius: 50%;
  background-color: var(--main);
  width: 46px;
  height: 46px;
  font-size: 30px;
  text-align: center;
  line-height: 40px;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -60%);
  margin-left: 2.5rem;
}
.banner-cont p {
  margin-bottom: 0rem;
  font-size: 1rem;
  color: var(--black);
}
.banner-cont h1 {
  font-size: 2rem;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  font-weight: 400;
  margin-bottom: 3rem;
}

.banner-cont h4 {
  color: var(--main);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}
.banner-cont {
  /* box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px; */
  color: #fff;
  width: 60vw;
  position: absolute;
  bottom: 2rem;
  left: 20%;
  text-align: left;
}
.banner-cont .btn-default {
  width: 100%;
}
.banner-cont #pills-tab li a {
  flex-direction: row;
  gap: 0.5rem;
}
.banner-cont .tab-content {
  background-color: #fff;
  box-shadow: none;
}
.tab-content > .active {
  padding: 20px 20px;
}
.tab-rcontent {
  border-left: 1px solid #ffa300;
  padding-left: 50px;
}
.tab-sub-heading {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: inherit;
  color: var(--main2);
}
.banner-cont .tab-content label {
  color: #000;
  font-weight: 500;
}
.banner-cont #pills-tab {
  border-bottom: 4px solid var(--main);
  gap: 0.1rem;
}
.banner-cont i {
  color: #000;
}
.banner-cont #pills-tab li:has(.nav-link.active) {
  background: var(--main);
  border-top: 4px solid var(--main);
  box-shadow: none;
}
/* slider end*/

/* Why Choose section Start*/
.why-choose {
  padding: 4rem 0rem;
}

.why-choose .grid-30-30 {
  display: grid;
  grid-template-columns: 33.33% 33.33% 33.33%;
}

.why-choose .card {
  padding: 3rem 2rem;
  border-radius: 0rem;
  text-align: center;
  background-color: #ffffff;
  transition: 200ms all ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
}

.colmun-30 .card img {
  aspect-ratio: 5 / 3;
  object-fit: contain;
  width: 4vw;
}

.colmun-30:nth-child(2n + 1) .card {
  background-color: #e8ede9;
}

.colmun-30:nth-child(2n + 2) .card {
  background-color: #f4f8f5;
}

.why-choose .card p {
  text-align: center;
  color: var(--black);
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.why-choose .card:hover {
  box-shadow: 0 6px 18px 0 rgba(21, 34, 53, 0.3);
}

/* Why Choose section end*/

/* Book Online Outstation Cab section end*/
.outstation-cab {
  padding: 4rem 0rem;
  background-color: #f2f4f7;
}
.outstation-cab table tr td:nth-child(2),
.outstation-cab table tr td:nth-child(3),
#PackageContent table tr td:nth-child(2),
#PackageContent table tr td:nth-child(3) {
  -webkit-box-shadow: -5px 0px 5px 0px rgba(196, 205, 220, 1);
  -moz-box-shadow: -5px 0px 5px 0px rgba(196, 205, 220, 1);
  box-shadow: -5px 0px 5px 0px rgba(196, 205, 220, 1);
}
.outstation-cab table tr th:nth-child(2),
.outstation-cab table tr th:nth-child(3),
#PackageContent table tr th:nth-child(2),
#PackageContent table tr th:nth-child(3) {
  -webkit-box-shadow: -5px 0px 5px 0px rgba(0, 28, 67, 1);
  -moz-box-shadow: -5px 0px 5px 0px rgba(0, 28, 67, 1);
  box-shadow: -5px 0px 5px 0px rgba(0, 28, 67, 1);
}
.thead-dark th {
  background-color: #012b67 !important;
  color: #fff;
}

.thead-dark th:first-child {
  border-top-left-radius: 0.5rem;
}

.thead-dark th:last-child {
  border-top-right-radius: 0.5rem;
}

.table-striped > tbody > tr:nth-of-type(even) td {
  background: #e6e8f4;
}

.table-striped > tbody > tr:nth-of-type(odd) td {
  background-color: #fff;
  /* box-shadow: none; */
}
.table-striped > tbody > tr > td:nth-child(1) {
  box-shadow: none;
}
.table-striped tbody tr:last-child td:first-child {
  border-bottom-left-radius: 0.5rem;
}

.table-striped tbody tr:last-child td:last-child {
  border-bottom-right-radius: 0.5rem;
}

.table-responsive {
  box-shadow: 0 6px 18px 0 rgba(21, 34, 53, 0.3);
}

.table-responsive .table {
  margin-bottom: 0rem;
}

/* Book Online Outstation Cab section end*/

/* Testimonials section Start*/
.testimonials-sec {
  background: url(../images/testimonial-bg.jpg);
  padding: 4rem 0rem;
  background-repeat: no-repeat;
}

.testimonials-sec h3 {
  color: var(--white);
  text-align: center;
  background-attachment: fixed;
}

/* .test-box{color: var(--white);} */
.test-box {
  display: grid;
  grid-template-columns: 30% 70%;
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
}

.designation {
  color: #000;
}

.name {
  color: var(--main);
  text-transform: uppercase;
}
.clientimg {
  text-align: center;
}

.image-testimonial {
  border-radius: 50%;
  border: 1px solid var(--main);
}

.clientimg img {
  width: 7vw !important;
  display: inline !important;
}

.deliver-info {
  padding-left: 1.5rem;
}

.clientimg p {
  text-align: center;
  margin-bottom: 0rem;
  font-weight: 500;
}

.testimonials-sec .col-md-8::before {
  position: absolute;
  left: -4rem;
  top: -2rem;
  content: "\f6b0";
  font-family: bootstrap-icons !important;
  color: var(--main);
  font-size: 2.5rem;
}

.testimonials-sec .col-md-8::after {
  position: absolute;
  right: -4rem;
  bottom: 3rem;
  content: "\f6b0";
  font-family: bootstrap-icons !important;
  color: var(--main);
  transform: rotate(180deg);
  font-size: 2.5rem;
}

.testimonials-sec .owl-theme .owl-dots .owl-dot.active span,
.testimonials-sec .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--main);
}

.testimonials-sec .owl-theme .owl-dots .owl-dot span {
  margin: 3px 3px;
  width: 6px;
  height: 6px;
}

.testimonials-sec .owl-theme .owl-dots .owl-dot {
  margin-left: 0.2rem;
}

.testimonials-sec .owl-theme .owl-dots .owl-dot {
  border: 1px solid #fff;
  border-radius: 50%;
}

/* Testimonials section end*/

/* Booking Tariff section start*/
.booking-tariff {
  padding: 4rem 0rem;
}
.booking-tariff a.btn-default {
  color: var(--white);
}
.booking-tariff a.btn-default:hover {
  color: var(--main);
}
.booking-tariff a {
  color: var(--main);
}
.booking-tariff #pills-tab {
  gap: 0.1rem;
}
.booking-tariff #pills-tab a {
  padding: 1.5rem 2rem;
}
.tab-content {
  box-shadow: 0px 0px 13px 0px #dbd9d9;
}

#pills-tab li:has(.nav-link.active) {
  background: #fff;
  border-top: 4px solid var(--main);
  box-shadow: 0px -9px 13px 0px #dbd9d9;
}

#pills-tab li {
  background: #edf2ee;
  text-align: center;
}

#pills-tab li a {
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
}
#pills-tab li a.active {
  color: #ffa300;
}
#pills-tab li.topnav a.active {
  color: #000;
}

.note {
  color: var(--main2);
}

.list {
  list-style-type: none;
  padding-left: 0;
}

.list li {
  position: relative;
  padding-left: 2rem;
  line-height: 30px;
}

.list li::before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "";
  background: url("../images/traffic-1.png") no-repeat;
  height: 4rem;
  width: 4rem;
  background-size: 29%;
}

/* Booking Tariff section end*/

/* Booking Tariff section start*/
.from-app {
  padding: 4rem 0rem;
  background-color: #f2f4f7;
}

/* Booking Tariff section end*/

/* support-team section start*/
.support-team {
  background: var(--main);
  color: #fff;
  padding: 1rem 0rem;
}

.support-team p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0rem;
}
.service-banner {
  background: url(../images/banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0rem;
  height: 60vh;
  position: relative;
}
.service-second {
  padding: 4rem 0rem;
}
.service-four {
  padding: 4rem 0rem;
}
/* support-team section end*/
/* Blogs style */
.blog-sec {
  padding: 3rem 0rem;
  background: #f6f6f6;
}

.content-description {
  padding: 4rem 0rem;
  text-align: justify;
}

.blog-box {
  transition: all 0.4s linear 0s;
  position: relative;
  box-shadow: 0 4px 6px -1px #ccc, 0 2px 4px -2px #ccc;
}

.blog-box:hover {
  box-shadow: 0 4px 6px -1px #ccc, 0 2px 4px -2px #ccc;
  transform: translateY(-10px);
  /* background-color: var(--main);
  color: var(--white); */
}

.blog-box .box-content {
  padding: 1rem;
}

.blog-box .box-content .date {
  margin-bottom: 0rem;
  color: #818283;
  font-size: 0.8rem;
  font-weight: 400;
}

.blog-box .box-content .title {
  line-height: 1.5;
  color: #000;
  font-size: 1vw;
  font-weight: 600;
}

/* Blogs style end */
/* breadcrumb style start */
ol {
  list-style: none;
}

.breadcrumb {
  width: 100%;
  padding: 7px;
  position: relative;
  display: flex;
  background: transparent;
  margin-bottom: 0rem;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
}

.breadcrumb li {
  height: 30px;
  line-height: 30px;
  padding: 0 12px;
  position: relative;
}

.breadcrumb li a {
  text-decoration: none;
}

.breadcrumb li:after {
  position: absolute;
  content: "|";
  color: var(--main);
  right: 0;
}

.breadcrumb li:last-child::after,
.breadcrumb li:first-child::after {
  display: none;
}

.breadcrumb li .home-icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.breadcrumb li .home-icon i {
  color: #fff;
  font-size: 0.8rem;
}

.breadcrumb a:hover {
  text-decoration: none;
}

.breadcrumb-fill {
  color: #063f66;
  font-weight: 600;
}

.breadcrumb-fill .home-icon {
  position: absolute;
  background: var(--main);
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.2);
}

.breadcrumb-fill,
.breadcrumb-fill li,
.breadcrumb-fill li a {
  color: var(--white);
}

.breadcrumb-fill li:first-child {
  margin-right: 15px;
}

.breadcrumb-sec {
  background: var(--main2);
}

.breadcrumb-fill li.active {
  color: var(--secmain);
}

/* breadcrumb style end*/

/* Tariff Page Style Start */
.price-field {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.product-box .btn {
  width: 100%;
}
.product-box {
  border-radius: 1rem;
  background: #fff;
  padding: 0.7rem;
  transition: all 0.2s linear 0s;
  position: relative;
  border: 1px solid #ddd;
}

.product-box:hover .pro-box-img img {
  transform: scale(1.05);
}

.pro-box-img {
  border-radius: 0.8rem;
  background: #fff;
  text-align: center;
}

.pro-box-img img {
  padding-block: 10px;
  border-radius: 0.8rem;
  transition: transform 0.3s ease-in-out;
}

.product-box h5 a {
  color: var(--black);
  font-weight: 600;
  font-size: 1.1rem;
}

.product-box p {
  font-weight: 600;
  font-size: 14px;
}

.pro-box-info h5 {
  margin-bottom: 0rem;
}

.pro-box-info .price {
  color: var(--main);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0rem;
}

.product-box:hover,
.new-arrivals .product-box:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.product-box .text-btn {
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.product-box:hover .pro-arrow a {
  background: var(--main);
}
/* Tariff Page Style end */

/* About Us Page Style Start */
.about-page {
  padding: 4rem 0rem;
  background: #f4f5f9;
}

.inner-content {
  box-shadow: 0px -2px 48px 10px #d5d0d39e;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 1rem;
  /* background: #e39bc830; */
  font-size: 15px;
  letter-spacing: 1px;
}

.inner-content :where(a, b) {
  color: var(--main);
}

.inner-content ol {
  counter-reset: li;
  list-style: none;
  padding: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  column-count: 3;
}

.inner-content ol li {
  position: relative;
  display: block;
  padding: 0.4em 0.4em 0.4em 2em;
  margin: 0em 0 0.5em;
  background: var(--main2);
  color: #000;
  text-decoration: none;
  border-radius: 0.3em;
  transition: 0.3s ease-out;
}

.inner-content ol li:hover {
  background: #ccc;
}

.inner-content ol li:hover:before {
  transform: rotate(360deg);
}

.inner-content ol li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -0.8em;
  top: 57%;
  margin-top: -1.3em;
  background: var(--main);
  height: 2em;
  width: 2em;
  border: 0.3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  transition: all 0.3s ease-out;
}

.inner-content .sub-heading {
  color: var(--black);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* About Us Page Style End */
/* Feedback page style */
.feedback-page {
  padding: 0rem 0rem 4rem;
}
.feedback-page .get_say_form {
  padding: 0;
}
.feedback-page .input-box {
  margin-bottom: 1rem;
}
/* Feedback page style end */

/* contact us page style */
.intro {
  padding: 114px 0 78px 0;
}

.sec-card .card:hover {
  box-shadow: 0 6px 18px 0 rgba(21, 34, 53, 0.3);
}

.sec-card .card {
  padding: 24px 24px;
  border-radius: 1rem;
  text-align: center;
  background-color: #ffffff;
  transition: 200ms all ease;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.sec-card i {
  font-size: 30px;
  color: var(--main);
}
.sec-card a {
  color: #6a6868;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  width: 100%;
}
.sec-card .card {
  width: 100%;
}
.contact-banner {
  padding: 4rem 0rem;
}
.sec-card h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #012b67;
}
.icon-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border-top: 2px dashed var(--main);
  border-right: 2px dashed var(--main);
  border-left: 2px dashed var(--main2);
  border-bottom: 2px dashed var(--main2);
  padding: 25px;
  /*animation: spin 10s infinite linear;*/
}
.icon-circle i {
  animation: spin 10s infinite reverse linear;
  width: 100%;
  border-radius: 50%;
}
@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}
.intro {
  position: absolute;
  top: 0;
  height: 80vh;
  width: 100%;
  z-index: -1;
  background-color: #f3f5f9;
}
.contact-page {
  padding: 4rem 0rem;
}

.grid-70-30 {
  display: grid;
  grid-template-columns: 70% 30%;
}

.get_form_inner {
  display: block;
  padding: 50px 40px;
  background: #fff;
  box-shadow: 0px 0px 20px #cfd5df;
  border-radius: 10px 0px 0px 10px !important;
}

input[type="text"],
input[type="text"],
input[type="email"],
input[type="tel"] {
  outline: 0;
}

.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

.grid-full {
  margin: 20px 0;
}

textarea {
  outline: 0;
  margin-bottom: 20px;
}

.get_form_inner_text h3 {
  color: #333;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}

.get_say_form {
  display: grid;
  padding: 45px 0 25px 30px;
  background: var(--main);
  position: relative;
  box-shadow: 6px -4px 20px #cfd5df;
  border-radius: 0px 12px 12px 0px;
}

.get_say_form h5 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 40px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.get_say_social-icn {
  display: flex;
  /*position: absolute;*/
  bottom: 40px;
}
.get_say_social-icn li {
  /*background: blue;*/
  border-radius: 50px;
  width: 32px;
  height: 32px;
  padding: 5px 8px;
  margin-right: 10px;
}
.get_say_social-icn li:hover {
  background: #012b67;
}

.get_say_social-icn a {
  font-size: 18px;
  color: #fff;
  padding: 0 20px 0 0;
}

.get_say_info_sec i {
  color: #fff;
  font-size: 32px;
}

.get_say_info_sec > li {
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  margin-bottom: 10px;
}

.get_say_info_sec > li a {
  width: 100%;
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: 14px;
  text-decoration: unset;
  font-weight: 500;
  background: var(--main);
  border-radius: 5px 0 0 5px;
  transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -ms-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: background 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.get_say_info_sec > li a:hover {
  background-color: var(--main2);
  color: #fff;
}
/* contact us page style end */

/* faq page style start */
.faq-section {
  padding: 4rem 0rem;
  position: relative;
  background: #fdfdfd;
}

.faq-des h5 {
  font-weight: 600;
  font-size: 1rem;
}

.faq-des p {
  font-weight: 400;
}
.faq .card .card-header {
  padding: 1rem;
}
a.faq-title {
  cursor: pointer;
}
.faq-title[aria-expanded="false"] {
  color: #000;
}
.card-header:has(.faq-title[aria-expanded="true"]) {
  background-color: var(--main) !important;
}
.card-header:has(.faq-title[aria-expanded="true"]) a {
  color: #000;
}
.card-header::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  bottom: 21px;
  right: 1rem;
  color: #000;
  font-weight: 600 !important;
}

.card-header:has(.faq-title[aria-expanded="true"])::after {
  transform: rotate(275deg);
  color: var(--main);
}
.card-header p {
  margin-bottom: 10px;
}

.faq {
  background: transparent;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  z-index: 9;
  backdrop-filter: blur(10px);
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
}

.faq .card .card-header {
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header .card-header[aria-expanded="true"] {
  border-bottom: 2px solid #000;
}

.faq .card .card-header .card-header {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #000;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .card-header .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: var(--main);
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq .card .card-body {
  padding: 15px;
  font-weight: 500;
  color: var(--dark-grey);
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #f3f8ff;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}

#accordion {
  position: relative;
}

.arrow {
  position: relative;
  padding-top: 2rem;
}

.arrow .left-move {
  top: -2rem;
  position: absolute;
}

/* faq page style end */

.myfielderr {
  color: red;
  margin-top: 5px;
  display: none;
}

.dnone {
  display: none;
}

.btn-submit {
  background: var(--main);
  color: #fff;
  border-radius: 5px;
  padding: 0.5rem 1.2rem;
}

.btn-submit:hover {
  color: #fff;
}

.banner-cont p a {
  margin-bottom: 0rem;
  color: #000;
}

.banner-cont .form-control {
  background-color: #ececec;
  border: 1px solid transparent;
}

.banner-cont .form-control::placeholder {
  font-weight: normal;
  font-size: 14px;
  color: #000;
}

.banner-cont hr {
  background: #f5f5f5;
}

.carousel-caption {
  right: 5% !important;
}

.banner-cont .price {
  font-size: 4rem;
  font-weight: 100 !important;
  color: #000;
}

.carousel-item {
  /* height: 600px; */
  width: 100vw;
  background: black;
  overflow: hidden;
}

/* about sec start*/
.about-sec {
  padding: 4rem 0rem;
  background: #f4f4f4;
}
.about-sec .light-font {
  text-transform: uppercase;
}
.about-sec img {
  width: 80%;
}
.light-font {
  font-weight: normal;
  margin-bottom: 0rem;
  color: var(--main);
}
.from-app .light-font {
  font-weight: 600;
}

tbody,
td,
tfoot,
th,
thead {
  padding: 1rem 3rem !important;
}
.about-home {
  padding: 0rem 0rem 3rem;
}

.slide-read-more {
  overflow: hidden;
}

.slide-read-more-button {
  cursor: pointer;
  text-align: right;
  margin-top: 8px;
  display: none;
}

/* about sec end*/

.form-group {
  margin-bottom: 1rem;
}

input.form-control,
textarea.form-control,
select.form-control {
  border-radius: 0rem;
  background-color: #f5f5f554;
  border: 1px solid #ccc;
  padding: 6px 20px;
}

input.form-control::placeholder {
  font-weight: 200;
}
textarea.form-control::placeholder {
  font-weight: 200;
}

input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--main);
}
.form-box.login .btn {
  width: 100%;
}
label {
  margin-bottom: 3px;
  color: #312f2f;
  font-size: 0.8rem;
}

.input-box {
  position: relative;
}

.input-box .icon {
  position: absolute;
  top: 2.2rem;
  left: 1rem;
}

.input-box input {
  padding: 10px 10px 10px 35px;
}

.left-move {
  animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

@keyframes bounce {
  50% {
    -webkit-transform: translatex(-10px);
    transform: translatex(-20px);
  }
}

/* Contact sec end*/

/* footer start*/
.footer {
  position: relative;
  padding: 3rem 0rem 1rem 0rem;
  width: 100%;
  background: #111111;
  color: #fff;
}
.footer .title {
  text-transform: capitalize;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.footer .address a {
  color: var(--white);
  font-size: 14px;
}
.footer .location {
  color: var(--white);
  font-size: 1rem;
}
.footer-bottom a {
  color: var(--main);
  text-decoration: none;
}
footer .para {
  font-size: 14px;
  margin-top: 1rem;
  color: #8f8f8f;
}
footer h3 {
  text-transform: capitalize;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.foot-grid {
  display: grid;
  grid-template-columns: 20% 70%;
}
.footer-list {
  list-style-type: none;
  padding-left: 0rem;
}
.popular-cities {
  list-style-type: none;
  display: flex;
  margin-bottom: 0.5rem;
  padding-left: 0rem;
}
.popular-cities li {
  position: relative;
  margin-right: 0.5rem;
  padding-right: 0.8rem;
  font-weight: 300 !important;
}
.popular-cities li a {
  color: #fff;
}
.popular-cities li::after {
  content: "|";
  right: 0;
  position: absolute;
}
.popular-cities li:last-child::after {
  display: none;
}
.footer-list li {
  margin-bottom: 0.5rem;
}
.footer-list a {
  position: relative;
  color: #8f8f8f;
}
.footer-list a:hover:before,
.footer-list a:focus:before {
  max-width: 100%;
  width: 100%;
}
.footer-list a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  max-width: 0;
  content: "";
  -webkit-transition: max-width 0.5s;
  -moz-transition: max-width 0.5s;
  transition: max-width 0.5s;
  background: #8f8f8f;
  height: 2px;
  margin-top: 1rem;
}
.foot-cont {
  list-style-type: none;
  margin-left: 0rem;
  padding-left: 0rem;
  padding-bottom: 1rem;
}
.foot-cont li a {
  position: relative;
  color: #8f8f8f;
  padding-left: 1.5rem;
}
.foot-cont li.call a::before {
  position: absolute;
  left: 0;
  content: "\f4e7";
  font-family: bootstrap-icons !important;
  color: var(--main);
}
.foot-cont li.mail a::before {
  position: absolute;
  left: 0;
  content: "\f32c";
  font-family: bootstrap-icons !important;
  color: var(--main);
}
footer h3 {
  position: relative;
}
footer h3::after {
  position: absolute;
  bottom: -0.4rem;
  width: 2rem;
  height: 2px;
  background: var(--main);
  content: "";
  left: 0;
}
.social-links {
  list-style-type: none;
  display: flex;
  gap: 1rem;
  justify-content: end;
  margin-bottom: 0;
}
.social-links li a {
  position: relative;
  background-color: transparent;
  color: #8f8f8f;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #3c3c3c;
  border-radius: 50%;
}
.social-links li a:hover {
  background-color: var(--main);
  color: #000;
}
.social-links li a i {
  font-size: 1rem;
}
#btn-back-to-top i {
  color: #fff;
}
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: var(--main) !important;
}
/* footer end*/
.sedan-car,
.suv-car {
  width: 50px;
  margin-right: 15px;
}
.car-line {
  width: 90%;

  height: 1px;
  background: #000;
  display: inline-block;
}
.car-line:after {
  display: none;
  content: "";
  width: 100px;
  height: 50px;
  background: url(../../../optimarkservices.in/staticwork/onewaydroptaxi/assets/images/car-icon.html)
    no-repeat;
}
img.car-icon {
  width: 45px;
  height: 20px;
}
@media (max-width: 660px) {
  .banner-cont h1 {
    font-size: 1.5rem;
  }
  .breadcrumb-fill {
    justify-content: left;
  }
  .breadcrumb {
    padding: 7px 0rem;
  }
  table i {
    display: none;
  }
  .booking-tariff .traffi-tab#pills-tab a {
    padding: 0.5rem 0.8rem;
  }
  #pills-tab li a img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
  }
  .booking-tariff #pills-tab a {
    padding: 0.5rem 0.64rem;
  }
  .table-responsive {
    box-shadow: none;
  }
  .table-striped > tbody > tr > td:nth-child(1),
  .outstation-cab table tr td:nth-child(2),
  .outstation-cab table tr td:nth-child(3),
  #PackageContent table tr td:nth-child(2),
  #PackageContent table tr td:nth-child(3) {
    box-shadow: -1px 0px 5px 0px rgba(196, 205, 220, 1);
  }
  tbody,
  td,
  tfoot,
  th,
  thead {
    padding: 1rem 1rem !important;
  }
  table {
    border: 0;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }

  thead {
    display: none;
  }

  tr {
    display: block;
    border: 1px solid #8b8686;
    padding: 0.5em 0.7rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0rem;
  }

  td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8em;
    line-height: 1.35em;
    margin-top: 0.8em;
    border-bottom: 0;
  }

  td:before {
    content: attr(data-label);
    font-size: 0.9em;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 45%;
    color: #545454;
  }

  td:last-child {
    border-bottom: 0;
  }

  .banner-cont h1 {
    margin-bottom: 1.5rem;
  }
  .tab-content > .active {
    padding: 20px 1px;
  }
  header .text-right {
    text-align: left !important;
  }

  .banner-content {
    top: -22rem;
  }

  .form-content {
    position: absolute;
    top: -13rem;
  }

  .bnrform {
    position: relative !important;
    height: 103vh;
    top: 6rem;
  }

  .luxuary-sec h4 {
    margin-top: 2rem;
  }

  nav {
    position: relative;
  }

  .navbar-toggler {
    position: absolute;
    left: 18rem;
    top: 1rem;
    border-color: var(--main) !important;
  }

  .pr-5 {
    padding-right: 0rem !important;
  }

  .our-gallery-sec {
    padding-top: 0rem;
  }

  .main-heading {
    font-size: 1.6rem;
  }

  #sliderproduct .banner-cont {
    position: relative;
    padding: 1.5rem 0.5rem;
    /* background: linear-gradient(#a3010e, #a0176a); */
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    color: #fff;
    width: 100%;
    bottom: 0.1rem;
    right: 0rem;
    border-top-left-radius: 0rem;
  }

  #sliderproduct .main-heading {
    font-size: 1.5rem;
  }

  button.navbar-toggler:focus {
    outline: none;
  }

  .carousel-indicators {
    display: none;
  }

  #sliderproduct .sub-heading {
    margin-bottom: 0.3rem;
    font-size: 20px;
  }

  .xs-hidden {
    display: none;
  }

  .md-hidden {
    display: block;
  }

  #sliderproduct .para {
    /* font-size: 17px; */
    line-height: 30px;
    font-size: 25px;
    margin-bottom: 0rem;
  }

  #sliderproduct a.carousel-control-prev {
    margin-left: 1.5rem;
    top: 55%;
    display: none;
  }

  #sliderproduct a.carousel-control-next {
    margin-right: -1.5rem;
    top: 55%;
    display: none;
  }

  .cream-box,
  .purpal-box {
    margin-bottom: 1rem;
  }

  .navbar-nav {
    display: block;
  }

  .carousel-caption {
    top: 0rem;
    left: 7%;
    width: 86%;
  }

  .image-sec {
    min-height: fit-content;
  }

  .luxuary-sec .image-sec {
    order: 2;
  }

  .luxuary-sec .content-sec {
    order: 1;
    margin-bottom: 2rem;
  }

  .pl-5 {
    padding-left: 1rem !important;
  }

  .contact-box iframe {
    width: 100%;
  }

  .deliver-sec h4 .light-font {
    text-transform: capitalize;
    font-size: 24px !important;
  }

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

  .carousel-item .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .carousel-item .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .carousel-item .col-md-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .carousel-item .col-md-9 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  /* .carousel-item .col-md-4 img{width:20%;} */
  .luxuary-sec {
    background-size: cover;
  }

  .border-right {
    border-right: 1px solid transparent !important;
  }

  .border-right {
    margin-bottom: 1rem;
  }

  .banner-content .mb-4 {
    margin-bottom: 0.5rem !important;
  }

  .image-sec {
    margin-top: 2rem;
  }

  .contact-sec::after {
    position: relative;
    left: 5rem;
    bottom: -4rem;
  }

  .mobile-btn {
    display: block !important;
  }

  .top-bar .col-md-6 {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .top-address {
    justify-content: space-between;
  }

  header .social-links {
    display: none;
  }

  .navbar-block {
    position: absolute;
    left: 0;
    width: 100%;
    height: calc(100vh - 4rem);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    background-color: var(--white);
    transition: opacity 0.4s ease;
  }

  .navbar-block.is-active {
    opacity: 1;
    pointer-events: initial;
  }

  .menu-link {
    font-size: var(--text-base);
    font-weight: 500;
    line-height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    color: var(--color-black-500);
    transition: color 0.3s ease;
  }

  .dropdown-show > .dropdown-toggle i.bi {
    rotate: 180deg;
  }
  .why-choose .grid-30-30 {
    grid-template-columns: 50% 50%;
  }
  .why-choose .card {
    padding: 3rem 1rem;
    margin-bottom: 1rem;
  }
  .colmun-30 .card img {
    width: 15vw;
  }
  .test-box {
    display: block;
  }
  .clientimg img {
    width: 20vw !important;
    display: inline !important;
  }
  .deliver-info {
    padding-left: 0rem;
  }
  #pills-tab li a {
    padding: 0.5rem 0.55rem;
  }
  .banner-cont h1 {
    color: #000;
  }
  #sliderproduct .banner-cont {
    width: 95%;
    right: 0.5rem;
    left: 0.5rem;
  }
  .product-box {
    margin-bottom: 1rem;
  }
  .grid-50-50 {
    grid-template-columns: 1fr;
  }
  .get_form_inner {
    padding: 1rem;
  }
  .contact-banner {
    padding: 4rem 0rem 2rem;
  }
  .sec-card .card {
    margin-bottom: 1rem;
  }
  .grid-70-30 {
    grid-template-columns: 1fr;
  }
  .get_say_social-icn {
    bottom: 10px;
  }
  .service-banner {
    height: auto;
  }
  .service-banner .banner-cont {
    position: relative;
    width: 93vw;
    left: 0.8rem;
  }
  .service-banner .banner-cont h1 {
    color: #fff;
  }
}
.banner-form#pills-tab li a.active {
  color: #000;
}
.input-box input {
  font-size: 0.8rem;
}
.input-box input:placeholder {
  font-size: 0.8rem;
}
.input-box select {
  font-size: 0.8rem;
}

/*----------------Toast style--------------------- */
.toast-container {
  position: fixed;
  top: 60px;
  right: 20px;
  min-width: 270px;
  max-width: 270px;
  z-index: 9999;
}

.toast-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.425);
  animation: fadeInOut 3s ease-in-out forwards;
  font-weight: 500;
}

.toast-message.success {
  background-color: #28a745;
  color: #fff;
}

.toast-message.error {
  background-color: #dc3545;
  color: #fff;
}

.toast-message .fas {
  font-size: 20px;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/*----------------Toast style--------------------- */

/* ------------ Form Styles ------------ */
.form-select {
  border-radius: 0px;
  padding: 10px 10px 10px 35px;
  border: none;
  color: #282c30;
  background-color: #ececec;
  cursor: pointer;
  width: auto;
  min-width: 120px;
  max-width: 100%;
}

.form-select-package {
  border-radius: 0px;
  padding: 10px 10px 10px 35px;
  border: none;
  color: #282c30;
  background-color: #ececec;
  cursor: pointer;
  width: 100% !important;
}

.form-select-package:focus {
  border: 1px solid var(--main) !important;
  box-shadow: 0px 0px 0px transparent !important;
}

.form-select:focus {
  border: 1px solid var(--main) !important;
  box-shadow: 0px 0px 0px transparent !important;
}

.form-control::placeholder {
  color: #808080 !important;
}

.themed-datepicker {
  background-color: #2a2a2a;
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 8px 12px;
}

.flatpickr-calendar {
  border-radius: 8px;
}

/* ------------ Form Styles end ------------ */

/* ------------search result page------------- */
.search_container {
  min-height: 80vh;
}
.x_car_offer_price {
  position: relative;
  text-align: center;
}
.x_car_offer_price_inner {
  margin-top: 30px;
  margin-bottom: 10px;
  display: inline-block;
  width: 120px;
  height: 50px;
  border: 1px solid #eeeeee;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  background: #ffffff;
  z-index: 1;
  position: relative;
}

.x_car_offer_price_inner h3 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  color: var(--main);
  font-weight: 800;
  line-height: 50px;
  display: inline-block;
  font-style: italic;
}

.x_car_offer_price:after {
  content: "";
  border: 1px solid #eeeeee;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0px auto;
  top: 53px;
}

.x_car_offer_heading {
  text-align: center;
  line-height: 10px;
  color: #6a6a6a;
  font-size: 13px;
  font-family: Oxygen, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.back-btn {
  display: flex;
  align-items: center;
  width: fit-content !important;
  gap: 8px;
  padding: 22px 16px;
  padding-bottom: 0px !important;
  font-size: 16px;
  color: #a09393;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.back-btn:hover {
  color: var(--main);
}

.back-btn i {
  font-size: 18px;
}

/* ------------search result page end------------- */

/* ------------------Tariff page------------------ */
.mobile_feild {
  display: none;
}

.desktop_Feid {
  display: block;
  margin-bottom: 20px;
}

.location_button {
  width: max-content;
  padding: 6px 15px;
  border: 2px solid #ffa300;
  border-radius: 8px;
  background-color: #ffa300;
  color: #012b67;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background 0.3s, border 0.3s;
}

.location_button:hover {
  scale: 1.03;
}

.active_location_button {
  color: #ffffff;
  border-color: #012b67;
  background-color: #012b67;
  box-shadow: 0px 0px 10px #808080;
}

.custom-dropdown {
  width: max-content;
  padding: 6px 15px;
  border: 2px solid #ffa300;
  border-radius: 8px;
  background-color: #ffa300;
  color: #012b67;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: background 0.3s, border 0.3s;
}

.custom-dropdown:focus {
  color: #012b67;
  border-color: #61ff28;
}

.custom-dropdown option {
  background-color: #012b67;
  color: #ffa300;
  padding: 5px 10px;
}

.pro-box-img {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-image {
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.mobile-table {
  display: none;
}

.isDesckop {
  display: block;
}

/* ---------------Tariff page end----------------- */

/* ----------------booking screen------------------ */
.page_cover {
  background-color: #f4f4f4;
}

.card_details {
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: end;
  color: #4e4e4e;
  padding: 5px !important;
}

.card_detail_heading {
  font-size: 15px;
  display: flex;
  align-items: center !important;
  font-weight: 500;
  color: #312f2f !important;
  padding: 3px !important;
  padding-left: 10px !important;
}
.card_detail_row {
  padding: 0px !important;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dddddd;
}
.price_amounts {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 5px !important;
}
.Dot {
  padding: 3px !important;
  padding-top: 10px !important;
}
.dashed {
  border-bottom: 2px dashed var(--main);
}
.final_amt {
  background-color: #8fe96f40;
  color: #141414 !important;
  font-size: large;
  font-weight: 600;
  border-radius: 0px 0px 10px 10px;
}
.final_amt .card_detail_heading {
  color: #141414 !important;
  font-weight: 600;
  font-size: large;
}

/*-------------booking screen end------------------*/

/* ------------Google Location Dropdown------------*/
.pac-container {
  z-index: 1051;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pac-logo:after {
  font-size: 10px;
  color: #999;
  display: block;
  text-align: right;
  padding-right: 8px;
}
/* ------------Google Location Dropdown end------------*/

/* -----------------Spinner---------------------------  */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.loader {
  transform: rotateZ(45deg);
  perspective: 200px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  color: #fff;
}
.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader:after {
  color: var(--main);
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
/* -----------------Spinner end---------------------------*/

/* ------------------Booking Page ------------------------- */
.btn-disabled {
  cursor: not-allowed !important;
  background-color: #ccc !important;
  border: none;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  width: 10 0%;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.success-icon {
  margin-bottom: 15px;
}

.success-icon svg {
  animation: pop 0.5s ease forwards;
  transform-origin: center;
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-content h2 {
  color: #4caf50;
  margin-bottom: 10px;
}

.popup-content p {
  color: #565656;
  margin-bottom: 20px;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btns {
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  width: 100px;
}

.btn-home {
  background-color: #4caf50;
  color: #fff;
}

.btn-close {
  background-color: #f44336;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.otpinput {
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0.25rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
.disabled-btn {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed !important;
}

.nghidden {
  display: none;
}

.edit_link {
  cursor: pointer;
}

/* ------------------Booking Page end -------------------------  */
/* -------------------Contact us page --------------------------- */
.btn-disabled-contact {
  cursor: not-allowed !important;
  background-color: #b4adad !important;
  border: none !important;
}
/* -------------------Contact us page page --------------------------- */
/* ----------------------Common Styles start ------------------------- */

/* Adjust based on expected header height */
[ng-include] {
  display: block;
  min-height: 73px;
}

.faq_text {
  color: var(--main2) !important;
  font-size: 2rem !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
}
.faq_text small {
  color: var(--main);
}
.faq_ques {
  color: #19191b !important;
  font-weight: 600;
}
.faq_items {
  font-weight: 400;
  color: #4d4747;
}
.oneway-taxi-single {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f2f4f7;
}
.oneway-taxi {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background-color: #f9f9f9;
}
.oneway-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.oneway-item:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.199);
}
.oneway-img {
  height: 90px;
}
.oneway-mt {
  margin-top: 20px;
}
.oneway-heading {
  color: #012b67;
  margin-bottom: 20px;
}
.oneway-text {
  color: #32cd32;
  margin-top: 10px;
}
.oneway-container {
  text-align: center;
  width: 100%;
  padding-inline: 2rem;
}
.oneway-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.oneway-col {
  flex: 1;
  min-width: 250px;
}

.taxi-fare {
  padding: 50px 0;
  /* background-color: #f9f9f9; */
}
.taxi-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0px 18px rgb(0 0 0 / 20%);
  transition: transform 0.3s ease-in-out;
  text-align: center;
  flex: 1;
  min-width: 200px;
}
.taxi-card:hover {
  /* transform: scale(1.5); */
  box-shadow: inset 0 0px 18px rgba(0, 0, 0, 0.26);
}
.taxi-img-small {
  max-width: 60px;
  height: auto;
  margin-bottom: 10px;
}
.taxi-heading {
  color: #012b67;
  margin-bottom: 20px;
}
.taxi-text {
  color: #32cd32;
  margin-top: 10px;
  font-weight: bold;
}
.taxi-container {
  text-align: center;
}
.taxi-row {
  margin-top: 2rem;
  display: flex;
  padding-inline: 30px;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.heading_cards {
  color: var(--main) !important;
}
.li {
  width: 25%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgb(50, 205, 50),
    transparent
  );
  margin: 0 auto 15px;
  padding: 0 5px;
  text-decoration: none;
}
.li-clr {
  margin-bottom: 2.4rem;
}

/* ----------------------Common Styles end ------------------------- */

/* ----------------------Scroll card Styles start ------------------------- */

/* Scrollable container */
.scroll-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin-top: 5px;
  margin: auto;
}

.scroll-content {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.scroll-content::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}

/* .scroll-item:hover {
  transform: scale(1.05);
} */

.scroll-btn {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.left {
  left: 5px !important;
}

.right {
  right: 5px !important;
}
/* ----------------------Scroll card Styles start ------------------------- */

/*------------------Mobile View------------------------*/
@media (max-width: 768px) {
  .booking-summary,
  .booking-form {
    max-width: 100% !important;
    padding: 1.5rem !important;
  }
  .card_detail_row,
  .card_details,
  .price_amounts {
    flex-direction: row;
    align-items: flex-start !important;
    padding: 5px 0 !important;
  }
  .mobile_container {
    gap: 30px !important;
  }
  .form-select {
    width: 100%;
  }
  /* ---------------Search result page------------------------- */
  .mobileComment {
    max-width: 185px !important;
  }
  .card_detail_heading {
    padding-left: 0px !important;
  }
  .card_detail_row {
    align-items: center !important;
  }
  /* ---------------Search result page end------------------------- */

  /* ---------------Tariff page------------------------- */
  .tab_mob_contain {
    display: block !important;
    max-width: 100%;
    overflow-x: hidden;
  }
  .mobile_feild {
    display: block;
  }
  .desktop_Feid {
    display: none !important;
  }
  .isDesckop {
    display: none !important;
  }
  .tariff-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tariff-card {
    background: #19191b;
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .tariff-header {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    background: #ffa300;
    color: #012b67;
    padding: 8px;
    border-radius: 5px;
  }

  .tariff-details {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px !important;
  }

  .tariff-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
  }

  .car-icon {
    width: 30px;
    height: 20px;
    margin-right: 10px;
  }

  .car-name {
    flex-grow: 1;
    font-weight: bold;
  }

  .car-price {
    background: white;
    color: #012b67;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
  }
}

.taxi-area {
        position: relative
    }

    .taxi-item {
        background: #ffffff;
        padding: 30px;
        border-radius: 20px;
        margin-bottom: 25px;
        box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    }

    .taxi-img {
        width: 100%;
        height: 205px;
        padding: 20px;
        background: #F9F9F9;
        border-radius: 15px
    }

    .taxi-img img {
        width: 100%;
    }

    .taxi-head {
        text-align: center;
        margin-top: 25px;
    }

    .taxi-head h4 {
        font-size: 18px;
        margin-top: 0px;
        margin-bottom: 5px;
        font-weight: 700;
        text-transform: uppercase
    }

    .taxi-head span {
        font-weight: 500;
        color: #FFA300
    }

    .taxi-feature {
        padding-top: 20px;
        margin: 20px 0 0px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        ;
        position: relative
    }

    .taxi-feature::before {
        content: "";
        position: absolute;
        width: 50px;
        height: 6px;
        background: #FFA300;
        border-radius: 50px;
        left: 50%;
        top: -4px;
        transform: translateX(-50%)
    }

    .taxi-feature ul li {
        padding: 4px 0
    }

    .taxi-feature ul li span {
        float: right
    }

    .taxi-feature ul li i {
        width: 30px;
        height: 30px;
        line-height: 28px;
        color: #ffffff;
        border-radius: 50px;
        margin-right: 10px;
        text-align: center;
        background: #FFA300
    }

    .taxi-content .theme-btn {
        width: 100%
    }

    .taxi-content button {
        width: 100%;
    }

    .filter-btns {
        text-align: center;
        margin-bottom: 40px
    }

    .filter-btns li {
        display: inline-block;
        background: var(--color-dark);
        color: #ffffff;
        border-radius: 50px;
        margin: 0 5px 8px 0;
        padding: 8px 25px;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 2px
    }

    .filter-btns li.active {
        background: #FFA300
    }

    .taxi-single-img {
        display: flex;
        align-items: center;
        height: 500px;
        border-radius: 20px;
        background: #F9F9F9;
        position: relative
    }

    .taxi-single-img::before {
        content: "";
        position: absolute;
        border: 5px solid #FFA300;
        border-radius: 20px;
        width: 95%;
        height: 95%;
        left: -30px;
        bottom: -30px;
        z-index: -1
    }

    .taxi-single-img img {
        margin-left: -90px;
        max-width: fit-content
    }

    .taxi-single-details {
        padding-left: 70px
    }

    .taxi-single-top {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .taxi-single-tagline {
        color: #FFA300;
        font-weight: 500;
        font-size: 17px;
        text-transform: uppercase;
        letter-spacing: 3px
    }

    .taxi-single-meta {
        margin-top: 10px
    }

    .taxi-single-meta li {
        display: inline-block;
        margin-right: 12px
    }

    .taxi-single-meta li i {
        color: #FFA300;
        margin-right: 5px
    }

    .taxi-single-meta span {
        font-weight: 500
    }

    .taxi-key-title {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 20px
    }

    .taxi-key-item {
        display: flex;
        gap: 10px;
        margin-bottom: 10px
    }

    .taxi-key-icon {
        width: 35px;
        height: 35px;
        line-height: 35px;
        color: #ffffff;
        background: #FFA300;
        border-radius: 50px;
        text-align: center;
        margin-top: 6px
    }

    .taxi-key-content {
        flex: 1
    }

    .taxi-key-item p {
        font-weight: 500
    }

    .taxi-single-btn {
        margin-top: 20px
    }

    .taxi-single-overview {
        margin-top: 80px;
        background: #F9F9F9;
        padding: 30px;
        border-radius: 15px
    }

    .taxi-single-list li {
        margin: 5px 0
    }

    .taxi-single-list li i {
        color: #FFA300;
        margin-right: 5px
    }

    @media all and (max-width:1199px) {
        .taxi-single-img img {
            margin-left: -10px;
            max-width: 100%
        }

        .taxi-single-details {
            padding-left: 20px
        }
    }

    @media all and (max-width:991px) {
        .taxi-single-details {
            margin-top: 80px
        }
    }

    @media all and (max-width:767px) {
        .taxi-single-img {
            margin-left: 25px;
            height: 300px
        }
    }

    .btn.btn-yellow {
        color: #1F1F1F;
        background: #FFA300;
    }
    </style>
    <style>
    /* Hide forms initially */
    .hidden {
        display: none;
    }

    .booking-form {
        background: white;
        padding: 20px;
        border-radius: 8px;
        width: 410px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .tabs {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .tab-btn {
        flex: 1;
        padding: 10px 5px;
        border: none;
        background: #e6e6e6;
        color: #333;
        font-weight: bold;
        cursor: pointer;
    }

    .tab-btn.active {
        background: #FFA300;
        color: white;
    }

    .form-title {
        text-align: center;
        margin: 15px 0;
        color: #333;
        font-size: 16px;
    }

    .trip-type {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .trip-btn {
        flex: 1;
        padding: 10px 0;
        border: none;
        background: #e6e6e6;
        color: #333;
        font-weight: bold;
        cursor: pointer;
        margin-right: 5px;
    }

    .trip-btn.active {
        background: #FFA300;
        color: white;
    }

    .trip-btn:last-child {
        margin-right: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }

    input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .search-btn {
        width: 100%;
        padding: 10px;
        background: #FFA300;
        color: white;
        border: none;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }

    .search-btn:hover {
        background: #FFA300;
    }


    #loader {
        position: absolute;
        top: 49%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    @media only screen and (max-width: 600px) {
        .para1 {
            display: none;
        }

        .para2 {
            display: none;
        }

        .para {
            margin-top: 40px;
        }
    }

    @media only screen and (min-width: 600px) {
        .para {
            display: none;
        }
    }
    </style>
    <style>
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #E7E7E7;
        color: black;
        position: relative;
    }


    .logo {
        font-size: 1.5rem;
        font-weight: bold;
    }

    nav {
        display: flex;
        gap: 25px;
    }

    nav a {
        color: black;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s;
    }

    nav a:hover {
        color: white;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
        height: 25px;
        gap: 5px;
        z-index: 1001;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: black;
        border-radius: 2px;
        transition: all 0.4s ease-in-out;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    /* Mobile styles */
    @media (max-width: 768px) {
        nav {
            position: absolute;
            top: 0;
            left: 0;
            flex-direction: column;
            background-color: #E7E7E7;
            width: 100%;
            height: 100vh;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: transform 0.5s ease;
            z-index: 1000;
        }

        nav.active {
            transform: translateY(0);
        }

        .hamburger {
            display: flex;
        }

        .navbar-nav {
            display: flex;
            flex-direction: column !important;
        }
    }

    .navbar-brand1 img {
        display: none;
    }

    @media only screen and (max-width: 600px) {
        .navbar-brand1 {
            display: block;
        }
    }