@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* Navbar */
header {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
}

.logo a {
  color: #cdfe00;
  font-size: 20px;
}

.logo img {
  margin-right: 20px;
  width: 60px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 25px 0;
  position: relative;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  transition: right 0.4s ease;
  margin: 0;
}

.nav-links li {
  margin-left: 25px;
  position: relative;
  list-style: none;
}

.dropdown-content li {
  margin-left: 0;
}

.dropdown-content li a {
  font-size: 14px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  /* adjust underline position */
  width: 0%;
  height: 2px;
  /* underline thickness */
  background: #cdfe00;
  /* underline color */
  transition: 0.3s ease;
  border-radius: 20px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #cdfe00;
}

/* Dropdown */
.dropdown .arrow {
  margin-left:-2px;
  transition: transform 0.3s ease;
}

.dropdown-content {
  position: absolute;
  top: 40px;
  left: 0;
  background: #333;
  border-radius: 6px;
  min-width: 180px;
  overflow: hidden;
  z-index: 99999;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #fff;
}

.dropdown-content a:hover {
  background: #444;
}

/* banner-css-start */
.banner {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Bubble container */
/* Bubble wrapper behind content */

/* Bubbles container */
.banner-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* So clicks pass through */
  overflow: hidden;
}

/* Individual bubble */
.banner-bubbles span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5),
    0 0 30px rgba(255, 255, 255, 0.3), 0 0 45px rgba(255, 255, 255, 0.2);
  animation: float 8s linear infinite, glow 2s ease-in-out infinite alternate;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) scale(1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-20vh) translateX(50px) scale(1.2);
    opacity: 0;
  }
}

/* Glow effect */
@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
      0 0 20px rgba(255, 255, 255, 0.3);
  }

  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 1),
      0 0 40px rgba(255, 255, 255, 0.7);
  }
}

/* Random positions for each bubble */
.banner-bubbles span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  width: 15px;
  height: 15px;
}

.banner-bubbles span:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  width: 25px;
  height: 25px;
}

.banner-bubbles span:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  width: 18px;
  height: 18px;
}

.banner-bubbles span:nth-child(4) {
  left: 40%;
  animation-delay: 1s;
  width: 22px;
  height: 22px;
}

.banner-bubbles span:nth-child(5) {
  left: 50%;
  animation-delay: 3s;
  width: 20px;
  height: 20px;
}

.banner-bubbles span:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
  width: 17px;
  height: 17px;
}

.banner-bubbles span:nth-child(7) {
  left: 70%;
  animation-delay: 0.5s;
  width: 23px;
  height: 23px;
}

.banner-bubbles span:nth-child(8) {
  left: 80%;
  animation-delay: 2.5s;
  width: 19px;
  height: 19px;
}

.banner-bubbles span:nth-child(9) {
  left: 90%;
  animation-delay: 4.5s;
  width: 21px;
  height: 21px;
}

.banner-bubbles span:nth-child(10) {
  left: 15%;
  animation-delay: 1.5s;
  width: 16px;
  height: 16px;
}

.banner-main-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}

.banner-main-card h2 {
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.banner-main-card a {
  color: #000;
}

.banner-main-card h2 span {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  /* Important for animation */
  animation: gradientMove 4s ease infinite;
  /* Animation */
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.banner-card {
  box-shadow: 1px 1px 4px rgba(23, 199, 163, 0.6);
  border-radius: 10px;
  padding: 22px;
  transition: all 0.35s ease;
}

.banner-card:hover {
  /* background-image: linear-gradient(#fff, #fff),
                    linear-gradient(135deg, #17C7A3, #19A7D1, #0D47A1); */
  background-origin: border-box;
  background-clip: content-box, border-box;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}

.banner-card:hover h4 {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-card .b-card-img {
  overflow: hidden;
  border-radius: 10px;
}

.banner-card:hover .b-card-img img {
  transform: scale(1.05);
}

.b-card-img img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.35s ease;
  /* height: 160px;
    object-fit: cover; */
}

.banner-main-card .col-md-6 {
  margin-top: 20px;
}

.banner-card h4 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.banner-right {
  padding-top: 80px;
}

.banner-right h5 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;

  animation: typing 3s steps(20, end) forwards, blink 0.7s step-end infinite;
  width: 100%;
}

/* Typing width auto-fix */
@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 180px;
  }

  /* adjust if needed */
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.typing-head {
  display: flex;
  justify-content: center;
}

.banner-right h1 {
  display: inline-block;
  /* <- important */
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  letter-spacing: 2px;
  margin-bottom: 20px;

  /* gradient background */
  background: linear-gradient(135deg, #cefc3e, #23a3c9, #23c0ac);
  background-size: 300% 300%;
  background-repeat: no-repeat;

  /* clip gradient to text */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* makes the text show the background */

  /* animate */
  animation: gradientMove1 4s linear infinite;
  /* optional: force GPU compositing for smoother animation */
  transform: translateZ(0);
  width: 100%;
}

@keyframes gradientMove1 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.banner-right p {
  color: #fff;
  text-align: center;
  padding: 0 30px;
}

.banner-car-img {
  padding-top: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner-car-img img {
  width: 100%;
}

/* banner-botton-sec */
.banner-bottom-sec {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  padding: 20px;
  border-radius: 10px;
  margin-top: -75px;
  position: relative;
}

.call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #cdfe00;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-icon img {
  width: 25px;
}

.call {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.call a {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  margin-left: 10px;
  letter-spacing: 2px;
  transition: 0.8s;
}

.call a:hover {
  color: #cdfe00;
}

.banner-bottom-sec {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.play-store-app {
  display: flex;
  align-items: center;
}

.play-store-app h4 {
  margin-right: 30px;
  font-size: 24px;
  color: #000;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.play-store-app img {
  width: 160px;
}

/* about-sec-css */
.about {
  padding: 60px 0;
}

.about-right img {
  width: 100%;
  border-radius: 10px;
}

.cmn-heading {
  margin-bottom: 60px;
}

.cmn-heading h4 {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
}

.cmn-heading h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 48px;
  color: #000;
  font-weight: 600;
}

.about .row {
  align-items: center;
}

.about-left p {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.cmn-btn a {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  font-size: 20px;
  padding: 18px 53px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover effect */

.cmn-btn a:hover {
  background: linear-gradient(315deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  color: #fff;

  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(23, 199, 163, 0.6), 0 0 25px rgba(13, 71, 161, 0.6);
}

.about .cmn-btn {
  margin-top: 55px;
}

/* what-we-offer-css */
.what-we-offer .cmn-heading {
  margin-bottom: 40px;
}

.what-we-offer .container {
  padding: 50px 25px;
  border-radius: 80px 0 80px 0;
  background: linear-gradient(to bottom, #17c7a3 0%, #19a7d1 79%, #0d47a1 100%);
}

.what-we-offer .cmn-heading h2 {
  color: #fff;
}

.what-we-offer-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  height:330px;
}

.w-img {
  width: 80px;
  height: 80px;
  padding: 18px;
  text-align: center;
  box-shadow: 4px 4px 4px rgba(23, 199, 163, 0.6);
  border-radius: 20px;
  margin: 0 auto;
  margin-bottom: 27px;
}

.w-img img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.w-body {
  text-align: center;
}

.w-body h3 {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.w-body p {
  color: #000;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}

/* testimonials-start */
.testimonials {
  padding: 60px 0;
}

.testimonials .cmn-heading {
  margin-bottom: 30px;
}

.testimonials-card {
  margin: 15px;
  border-radius: 20px;
  box-shadow: 1px 4px 4px 0px rgba(23, 199, 163, 0.6);
  padding: 14px;
}

.testimonials-card img {
  width: 100%;
  margin-bottom: 26px;
}

.testimonials-card .t-text {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

/* footer-css */
.footer {
  padding: 50px 0px 0px 0;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 62%, #0d47a1 100%);
}

.f-logo img {
  width: 70px;
  margin-right: 10px;
}

.f-logo a {
  display: flex;
  align-items: center;
}

.f-logo span {
  font-size: 25px;
  color: #cdfe00;
}

.f-logo {
  margin-bottom: 20px;
}

.footer p {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  width: 306px;
}

.f-con h3 {
  font-size: 25px;
  color: #cdfe00;
  margin-bottom: 35px;
}

.f-con ul {
  list-style-type: none;
  padding-left: 0;
}

.f-con ul li {
  margin-bottom: 20px;
}

.f-con ul li a {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.f-middle ul {
  columns: 2;
  /* Split into 2 columns */
  column-gap: 30px;
  /* Space between columns */
  list-style: none;
  padding: 0;
}

.f-con a span {
  display: block;
}

.f-end a {
  display: block;
}

.f-end a {
  display: flex;
  /* align-items: center; */
}

.f-end ul a {
  margin-bottom: 20px;
}

.f-end ul img {
  margin-right: 10px;
}

.bottom-footer {
  background-color: #000;
  padding: 10px 0;
}

.bottom-footer p {
  width: 100%;
  margin: 0;
  font-size: 12px;
}

.bottom-footer p a {
  color: #cdfe00;
}

.b-footer {
  display: flex;
  justify-content: space-between;
}

.b-footer img {
  width: 20px;
  margin-right: 10px;
}

.slick-prev,
.slick-next {
  background: #24c5a7;
  color: #000;
  border: none;
  font-size: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.slick-next:before {
  display: none;
}

.slick-prev:before {
  display: none;
}

/* Hover effect */
.slick-prev:hover,
.slick-next:hover {
  background: #000;
  color: #fff;
}

.b-f-right {
  display: flex;
  align-items: center;
}

.footer ul li a {
  position: relative;
  font-size: 16px;
}

.footer ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  /* adjust underline position */
  width: 0%;
  height: 2px;
  /* underline thickness */
  background: #cdfe00;
  /* underline color */
  transition: 0.3s ease;
  border-radius: 20px;
}

.footer ul li a:hover::after {
  width: 100%;
}

.footer ul li a:hover {
  color: #cdfe00;
}

.bottom-footer p a {
  position: relative;
}

.bottom-footer p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  /* adjust underline position */
  width: 0%;
  height: 2px;
  /* underline thickness */
  background: #cdfe00;
  /* underline color */
  transition: 0.3s ease;
  border-radius: 20px;
}

.bottom-footer p a:hover::after {
  width: 100%;
}

/* popup-css */
/* Background Overlay */
.city-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Card */
/* Popup Background */
.city-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.city-popup-content {
  position: relative;
  background: #fff;
  width: 500px;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  animation: popupFade 0.4s ease;
}

@keyframes popupFade {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.close-popup {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  color: #fff;
  border: none;
  font-size: 18px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  line-height: 28px;
  text-align: center;
}

.city-select {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  font-size: 16px;
}

.city-btn {
  background: #199bff;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.city-popup .city-card img {
  width: 40px;
}

.city-popup .city-card a {
  color: #000;
}

.city-popup .city-card h3 {
  font-size: 15px;
  margin-top: 10px;
}

.city-heading h3 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 800;
}

.city-popup .col-md-6 {
  padding: 0 10px;
  margin-top: 20px;
}

.city-popup .city-card {
  border: 1px solid #000;
  padding: 20px;
  transition: all 0.3s ease;
  /* smooth effect */
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #17c7a3, #19a7d1 40%, #0d47a1) border-box;
  border: 3px solid transparent;
  transition: 0.3s;
}

.city-popup .city-card:hover {
  box-shadow: 0 12px 35px rgba(25, 167, 209, 0.45),
    0 6px 15px rgba(13, 71, 161, 0.35);
  transform: translateY(-6px);
  border-color: transparent;
}

.city-popup {
  border-top: 1px solid #25c6a7;
}

.booking-inner-banner {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 40%;
}

/* ----------booking-form---- */
.booking-form {
  width: 100%;
  max-width: 700px;
  margin: auto;
  padding: 10px 40px 40px;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  z-index: 999;
}

.section-label {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.location-box {
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.location-box input {
  width: 100%;
  border: none;
}

.location-box input:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #d1d1d1 !important;
  /* keep normal border */
}

.loc-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #17c7a3;
}

.dot.active {
  background: #17c7a3;
}

.input-box {
  position: relative;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
}

.real-date {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* hide real input */
  cursor: pointer;
}

.fake-text {
  font-size: 15px;
  color: #555;
}

.input-box input,
.input-box select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
}

.icon {
  opacity: 0.6;
  font-size: 18px;
}

.two-col {
  display: flex;
  gap: 15px;
}

.car-grid {
  margin-bottom: 20px;
}

.car-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-card p {
  margin-bottom: 0;
}

.car-card img {
  width: 46px;
  height: auto;
  margin-top: 6px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  color: #fff;
  font-size: 16px;
  border: none;
  background: #06b2d9;
  border-radius: 10px;
  cursor: pointer;
}

/* ===========================================Jyoti======================================== */
.section-label {
  font-weight: 700;
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 8px;
}

.loc-item p {
  margin-bottom: 0;
  color: #565656;
  font-size: 14px;
}

.car-card {
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 20px;
}

.col-width {
  width: 100%;
}

.car-card.selected {
  background: #b3eeff;
  transform: scale(1.05);
}

.call-btn {
  background-color: #fff;
  color: #000000 !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.download-btn {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 7px;
}

/* Basic reset for breadcrumbs */
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.breadcrumb ol li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb ol li+li::before {
  content: "›";
  /* chevron separator */
  margin: 0 0.5rem;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Links */
.breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: opacity 0.15s;
}

.breadcrumb a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* Banner layout */
.inner-banner {
  --banner-height: 350px;
  position: relative;
  background-image: var(--banner-img);
  background-size: cover;
  background-position: center;
  height: var(--banner-height);
  display: flex;
  align-items: center;
  color: #fff;
}

/* dark overlay to improve text contrast */
.inner-banner__overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.35));
  display: flex;
  align-items: center;
}

/* content layout */
.inner-banner__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* title and subtitle */
.inner-banner__text h1 {
  margin: 0;
  font-size: clamp(1.4rem, 3.8vw, 2.4rem);
  line-height: 1.05;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.inner-banner__text .subtitle {
  margin: 6px 0 0;
  font-size: 0.95rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
  font-family: "Poppins", sans-serif;
}

/* position breadcrumb above title on wide screens */
@media (min-width: 720px) {
  .inner-banner__content {
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }

  .breadcrumb {
    align-self: flex-start;
    margin-bottom: 0.4rem;
    margin: 0 auto;
  }
}

/* mobile tweaks */
@media (max-width: 719px) {
  .inner-banner {
    height: 200px;
  }

  .breadcrumb {
    font-size: 0.9rem;
    align-self: flex-start;
  }

  .breadcrumb a,
  .breadcrumb li[aria-current="page"] {
    color: rgba(255, 255, 255, 0.95);
  }
}

.inner-banner {
  background-image: url(images/banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ==================================contact us================================== */

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header h2 {
  color: #fff;
  font-weight: bold;
  font-size: 3em;
  margin-bottom: 20px;
}

.section-header p {
  color: #fff;
}


.contact-info {
  width: 50%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: #1da9c0;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #fff;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  width: 45%;
  padding-bottom: 20px;
  padding-top: 20px;
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus~span,
.contact-form .input-box textarea:focus~span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}

.contact-form .input-box input[type="submit"] {
  width: 100%;
  background: #00bcd4;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid #00bcd4;
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover {
  background: #fff;
  color: #00bcd4;
}

/* LOG-IN-PAGE-CSS */

.u-login-left img {
  width: 100%;
}

.u-login-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #e1e1e1;
}

.u-login-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.u-login-title {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}

.u-back-btn {
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #f3f4f6;
  border: 1px solid #cfd3d9;
  cursor: pointer;
  color: #000;
}

.u-label {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.u-input-box {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #d1d1d1;
  margin-bottom: 20px;
}

.u-btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 5px;
}

.u-register-text {
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
}

.u-register-text a {
  color: #24c3aa;
  text-decoration: none;
  font-weight: 500;
}

.log-in-inner {
  padding: 40px 0;
}

.log-in-inner .row {
  align-items: center;
}


/* otp-css */
.u-otp-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.u-otp-input {
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #d1d1d1;
  border-radius: 5px;
  outline: none;
  font-weight: 500;
}

.u-otp-input:focus {
  border-color: #000;
}

.booking-inner-banner {
  position: relative;
  overflow: hidden;
  /* important if image inside */
}

.booking-inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* overlay color */
  z-index: 1;
  /* keep overlay above image */
}

/* profile-css */
/* ===== APP ===== */
.prf-app {
  /* min-height: 100vh; */
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 50px 0 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 110px);
}


/* ===== TOP CURVE HEADER ===== */
.prf-top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prf-avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.prf-avatar i {
  font-size: 42px;
  color: #12b7be
}

.prf-name {
  margin-top: 10px;
  color: #fff;
  font-weight: 600
}

.prf-name-line {
  width: 45px;
  height: 3px;
  background: #fff;
  margin-top: 6px;
  border-radius: 4px
}


/* ===== EDIT CARD ===== */
.prf-edit-card {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 16px
}

.prf-edit-title {
  font-size: 15px;
  margin-bottom: 12px;
  color: #000
}


.prf-field {
  position: relative;
  margin-bottom: 12px;
  margin-top: 25px;
}

.prf-field i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #12b7be;
  font-size: 14px
}

.prf-input {
  width: 100%;
  padding: 13px 10px;
  border: none;
  border-radius: 18px;
  padding-left: 36px;
  font-size: 13px;
  outline: none
}

.prf-btn {
  background: #12b7be;
  color: #fff;
  border: none;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 13px;
  float: right;
  margin-top: 20px;
}


/* ===== LIST ===== */
.prf-list {
  margin: 10px 14px
}

.prf-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  font-size: 15px
}

.prf-left {
  display: flex;
  align-items: center;
  gap: 10px
}

.prf-left i {
  color: #12b7be
}


/* ===== LOGOUT ===== */
.prf-logout {
  text-align: center;
  margin: 30px 0
}

.prf-logout button {
  background: #12b7be;
  color: #fff;
  border: none;
  padding: 10px 32px;
  border-radius: 22px;
  font-size: 15px
}

.profile-page {
  width: 600px;
}

/* book-driver-popup */
/* Popup Overlay */
.bk-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.bk-popup-box {
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Close */
.bk-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* Title */
.bk-title {
  color: #10b3bd;
  margin-bottom: 4px;
}

.bk-date {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

/* Route */
.bk-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bk-point {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bk-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.bk-dot.start {
  background: #10b3bd
}

.bk-dot.end {
  background: #000
}

.bk-arrow {
  font-size: 20px
}

/* Footer */
.bk-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 14px;
}

.bk-price {
  font-size: 22px;
  font-weight: bold;
}

.bk-book-btn {
  background: #10b3bd;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
}

/* booking-details-css */
/* ===== APP ===== */
.bklist-app {
  min-height: 100vh;
}


/* ===== TABS ===== */
.bklist-tabs {
  display: flex;
  justify-content: space-around;
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
}

.bklist-tab {
  font-size: 15px;
  color: #000;
  cursor: pointer;
  position: relative;
  padding-bottom: 6px;
}

.bklist-tab.active {
  color: #12b7be;
  font-weight: 600;
}

.bklist-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 4px;
  background: #12b7be;
  border-radius: 6px;
}


/* ===== CARD ===== */
.bklist-card {
  background: #fff;
  margin: 14px;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.bklist-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bklist-user {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bklist-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.bklist-name {
  font-weight: 600;
  font-size: 15px;
}

.bklist-route {
  font-size: 13px;
  color: #666;
}

.bklist-date {
  font-size: 12px;
  color: #888;
}


.bklist-price {
  border: 2px solid #4caf50;
  color: #4caf50;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}


.bklist-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 12px 0;
}


/* ===== DETAILS ===== */
.bklist-details {
  font-size: 13px;
  color: #444;
}

.bklist-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.bklist-detail-item i {
  color: #12b7be;
}


/* ===== EXPAND ICON ===== */
.bklist-expand {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 8px;
}
.bklist-dropdown{
  display:none;
  margin-top:12px;
}

.bklist-card.active .bklist-dropdown{
  display:block;
}

.bklist-expand{
  text-align:center;
  margin-top:10px;
  cursor:pointer;
}

.bklist-expand i{
  transition:0.3s;
}

.bklist-card.active .bklist-expand i{
  transform:rotate(180deg);
}

.booking-details{
  padding: 50px 0;
}

/* rates-css */
.rate-page-wrapper {
  margin: auto;
}

.city-tab-wrapper {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ddd;
}

.city-tab {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.city-tab.active {
  border-bottom: 2px solid #00bcd4;
  font-weight: bold;
}

.rate-city-text {
  margin: 20px 0;
}

.rate-card-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.rate-card {
  flex: 1;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.rate-title {
  font-size: 16px;
}

.rate-price {
  font-size: 24px;
  margin: 10px 0;
}

.rate-sub {
  font-size: 13px;
}

.main-tab-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.main-tab {
  padding: 10px 20px;
  border: 1px solid #00bcd4;
  background: #fff;
  cursor: pointer;
}

.main-tab.active {
  background: #00bcd4;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-note {
  margin-bottom: 10px;
}

.hour-tab-wrapper {
  display: flex;
  gap: 10px;
}

.hour-tab {
  padding: 10px 20px;
  border: 1px solid #00bcd4;
  background: #fff;
  cursor: pointer;
}

.hour-tab.active {
  background: #00bcd4;
  color: #fff;
}
.rates-page{
  padding: 50px 0;
}
.city-tab.active{
  color: #00bcd4;
}
.rate-card-wrapper span i{
  font-size: 35px;
  margin-bottom: 10px;
}
header .navbar .nav-links li .wallet-btn{
    background-color: #cefc3e;
    padding: 10px 20px;
    border-radius: 25px;
    color: #000;
}
/* wallet-pop-up-css */
.wallet-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.wallet-popup {
  background: #fff;
  width: 360px;
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.wallet-title {
  color: #00bcd4;
  margin-bottom: 15px;
}

.wallet-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.wallet-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}

.wallet-option.active {
  background: #d9f7fb;
  border-color: #00bcd4;
}

.wallet-input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin: 15px 0;
}

.wallet-add-btn {
  width: 100%;
  background: #17b7c9;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.user{
      border: 2px solid #cffa56;
    border-radius: 50px;
    padding: 3px;
}
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}
.nav-links li:nth-last-child(-n+2) a::after {
  content: "";
  display: none;
}
.prf-app .cmn-heading h4{
  color: #fff;
      background:unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

/* city-css */
* Banner */
.city-banner {
  background: linear-gradient(135deg, #17c7a3, #1aa7d1);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.city-banner h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

/* Info */
.city-info {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Services */

.service-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 30px;
  color: #17c7a3;
  margin-bottom: 10px;
}

/* CTA */
.city-cta {
  background: #0d47a1;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.city-cta .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #17c7a3;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}
.city-page{
  padding: 50px 0 30px 0;
}
.city-services .col-md-4{
  margin-bottom: 20px;
}

.city-benefits {
  padding: 60px 20px;
  background: #ffffff;
}

.benefits-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: #f9fbfd;
  padding: 30px 22px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.benefit-card i {
  font-size: 32px;
  color: #17c7a3;
  margin-bottom: 14px;
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
}
.city-benefits h2{
  text-align: center;
  margin-bottom: 30px;
}
.city-info{
  margin-bottom: 30px;
}
.city-locations {
  padding: 60px 20px;
  background: #f9fbfd;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 35px;
}

.location-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.location-item {
  background: #fff;
  padding: 14px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.location-item:hover {
  transform: translateY(-4px);
}

.location-item i {
  color: #17c7a3;
  font-size: 16px;
}

.location-item span {
  font-size: 15px;
  font-weight: 500;
}
.section-title{
  text-align: center;
}
.why-us, .about-services {
  padding: 70px 0;
  background: #f9fbfd;
}

.why-card, .service-box {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.why-card i, .service-box i {
  font-size: 32px;
  color: #17c7a3;
  margin-bottom: 10px;
}

.about-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #17c7a3, #1aa7d1);
  text-align: center;
  color: #fff;
}

.about-cta a {
  margin-top: 15px;
  display: inline-block;
}

/* ayan */
.rates-section {
  margin: auto;
  padding: 30px 15px;
}

.sub-text {
  text-align: center;
  font-size: 14px;
  color: #444;
}

.note {
  display: block;
  color: red;
  margin-top: 5px;
}

/* ===== CITY SWITCH ===== */
.city-switch {
  text-align: center;
  margin: 20px 0;
}

.city-switch button {
  padding: 8px 20px;
  border: none;
  background: #fff;
  cursor: pointer;
  color: #fff;
}

.city-switch .active {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  font-weight: bold;
}

/* ===== TABS ===== */
.tabs {
  text-align: center;
  margin-bottom: 20px;
}

.tabs .tab {
  padding: 8px 20px;
  margin: 0 5px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.tabs .tab.active {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  font-weight: bold;
  color: #fff;
}

/* ===== TAB CONTENT ===== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
}

/* ===== RATE GRID ===== */
.rate-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* ===== RATE BOX ===== */
.rate-box {
  border: 1px solid #ddd;
}

.rate-box h4 {
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  margin: 0;
  padding: 8px;
  font-size: 14px;
  color: #fff;
}
.rate-box h6{
  background:#23bfae6e;
  margin: 0;
  padding: 8px;
  font-size: 12px;
  color: #000;
}

/* ===== TABLE ===== */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th, td {
  border: 1px solid #ddd;
  padding: 6px;
  text-align: left;
}

th {
  background: #23bfae6e;
}
.section-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.hours-select {
  display: flex;
  gap: 12px;
}

.hours-select input {
  display: none;
}

.hours-select label {
  padding: 10px 28px;
  border: 1.5px solid #000;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  transition: 0.3s;
}

/* Selected style */
.hours-select input:checked + label {
  background:#b3eeff;
  border-color:#19a7d1;
}
.table-rate-main-box .rate-box{
margin-top: 20px;
}
.table-rate-main-box h3{
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a8bbf;
}

.tab-content { display: none; }
.tab-content.active { display: block; }
.tab.active { background: #000; color: #fff; }
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    display: block;
        width: 30px;
    height: 30px;
}

