.airports-title,
.fleet-heading,
.services-title,
.stations-heading {
  font-size: 2.5rem;
  text-align: center;
}
.content-wrapper,
.custom-footer,
.fleet-detail p,
.fleet-heading {
  font-family: Arial, sans-serif;
}
.airport-btn2,
.airport-card,
.download-app-image,
.fleet-content,
.fleet-heading,
.footer-bottom,
.services-title,
.station-card {
  text-align: center;
}
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.content-info-section {
  background-color: #ffffff;
  padding: 0px 20px;
  padding-bottom: 50px;
}
.content-wrapper {
  max-width: 1200px;
  margin: auto;
  transform: translateY(30px);
  transition: 0.8s;
}
.content-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}
.content-wrapper h2 {
  color: #571089;
  font-size: 28px;
}
.content-wrapper p {
  color: #333 !important;
  line-height: 1.6;
  margin-top: 10px;
  font-size: 16px;
}
.airports-section {
  background: #f7ecff;
  color: #0b0b0b;
  padding: 80px 20px;
}
.airports-title,
.stations-heading {
  color: #0b0b0b !important;
  margin-bottom: 50px;
  font-weight: 700;
}
.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 90%;
  margin: 0 auto;
}
.airport-card {
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgb(155, 155, 155);
  padding-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.airport-btn2,
.service-btn {
  transition: background 0.3s;
  font-weight: 700;
  text-decoration: none;
}
.airport-card img {
  margin: 10px;
  border-radius: 16px;
  width: 94%;
  height: 180px;
  object-fit: cover;
}
.airport-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
}
.airport-card p {
  padding: 0 15px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.airport-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #555;
  color: #fff;
  border-radius: 40px;
}
.airport-btn:hover {
  background: #571089;
  color: #fff;
}
.airport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.our-services {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background: #fafafa;
  overflow: hidden;
}
.blur-circle {
  position: absolute;
  border-radius: 50%;
  background: #571089;
  filter: blur(100px);
  opacity: 0.3;
}
.circle1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}
.circle2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -80px;
}
.services-title {
  margin-bottom: 40px;
  color: #000;
  font-weight: 700;
}
.services-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}
.service-item {
  flex: 1 1 45%;
  min-width: 300px;
  background: 0 0;
  backdrop-filter: blur(10px);
  padding: 70px;
}
.service-img-wrapper {
  border-radius: 8px;
  padding: 5px;
}
.service-item img {
  background: #571089;
  width: 48px;
  padding: 10px;
  height: auto;
  border-radius: 8px;
}
.service-item h3 {
  font-size: 1.8rem;
  color: #0b0b0b;
  margin-bottom: 15px;
}
.service-item p {
  color: #333;
  line-height: 1.6;
}
.service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #555;
  color: #fff;
  border-radius: 40px;
}
.service-btn:hover {
  background: #571089;
  color: #fff;
}
.stations-section {
  padding: 60px 20px;
  background: #bd60fc1c;
  color: #fff;
}
.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
.station-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  border: 1px solid rgb(188 188 188);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fleet-tab,
.station-btn {
  transition: background 0.3s;
}
.station-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.station-card img {
  padding: 10px;
  border-radius: 24px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.station-card h3 {
  font-size: 1.4rem;
  margin: 15px 0 10px;
  color: #0b0b0b;
}
.station-card p {
  color: #0b0b0b;
  font-size: 0.95rem;
  padding: 0 15px;
  flex-grow: 1;
}
.station-btn {
  display: inline-block;
  margin: 15px auto 20px;
  padding: 10px 20px;
  color: #fff;
  background-color: #555;
  border: 1px solid #a3a3a3;
  text-decoration: none;
  border-radius: 40px;
}
.station-btn:hover {
  background-color: #571089;
  color: #fff;
}
.fleet-section {
  background: #f9f9f9;
  padding: 60px 20px;
}
.fleet-container {
  max-width: 1200px;
  margin: auto;
}
.fleet-heading {
  margin-bottom: 40px;
  font-weight: 700;
  color: #0b0b0b;
}
.fleet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.fleet-tab {

  color: #0b0b0b;
  border: 1px solid #a3a3a3;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 30px;
}
.fleet-tab.active,
.fleet-tab:focus,
.fleet-tab:hover {
  background: #571089;
  color: #fff;
}
.fleet-detail {
  display: none;
}
.fleet-detail.active {
  display: block;
}
.fleet-img {
  max-width: 600px;
  margin: auto auto 20px;
  width: 100%;
  border-radius: 8px;
}
.fleet-detail p {
  font-size: 1.1rem;
  color: #333;
}
.download-app-section {
  background: #faf3ff;
  padding: 60px 20px;
}
.download-app-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}
.download-app-text {
  flex: 1;
  min-width: 300px;
}
.download-app-heading {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #0b0b0b;
}
.download-app-para {
  font-size: 1rem;
  line-height: 1.6;
  color: #0b0b0b;
  margin-bottom: 25px;
}
.download-app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
  border:none;
}
.dark-btn {
  background: #571089;
  color: #fff;
}
.dark-btn:focus,
.dark-btn:hover {
  background: #0b0b0b;
  color: #fff;
}
.download-app-image {
  flex: 1;
  min-width: 300px;
}
.download-app-image img {
  max-width: 100%;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .airports-section {
    padding: 40px 0;
  }
  .airports-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 100%;
  }
  .services-wrapper {
    flex-direction: column;
    padding: 20px;
    width: 100%;
  }
  .service-item {
    padding: 0;
    margin-top: 30px;
    min-width: 270px;
  }
  .download-app-container {
    flex-direction: column;
    text-align: center;
  }
  .download-app-buttons {
    justify-content: center;
  }
}
.custom-footer {
  position: relative;
  background: #fff;
  padding: 60px 20px 20px;
  overflow: hidden;
}
.footer-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  z-index: 0;
}
.circle-1 {
  width: 500px;
  height: 500px;
  background: #ffffff;
  top: -200px;
  left: -150px;
}
.circle-2 {
  width: 600px;
  height: 600px;
  background: #ffffff;
  bottom: -250px;
  right: -200px;
}
.footer-container {
  padding-left: 50px;
  padding-right: 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}
.footer-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-heading {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
  color: #555;
}
.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #571089;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.txb-contact {
  background: linear-gradient(to right, #f8f9fa, #fff);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.txb-contact__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.txb-contact__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.txb-contact__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.txb-contact__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
.txb-contact__item img {
  width: 32px;
  height: 32px;
}
.txb-contact__item a,
.txb-contact__item span {
  font-size: 12px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.txb-contact__item a:hover {
  color: #571089;
}
.txb-contact__map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}


#moreModalitem .card-header button, .modal-footer button{
  color: #fff;
}

.cusFormWrap {
  border: 1px solid #cecece;
  border-radius: 35px;
  background: none;
}