body{
      box-sizing: border-box;
      margin: 0;
      padding: 0; 
}  
  
  .content-info-section {
    background-color: #f9f9f9;
    padding: 80px 20px;
  }

  .content-wrapper {
    max-width: 1000px;
    margin: auto;
    font-family: Arial, sans-serif;
    /* opacity: 0; */
    transform: translateY(30px);
    transition: all 0.8s ease;
  }

  .content-wrapper.show {
    opacity: 1;
    transform: translateY(0);
  }

  .content-wrapper h2 {
    color: #e30d16;
    margin-top: 40px;
    font-size: 28px;
  }

  .content-wrapper p {
    color: #333 !important;
    line-height: 1.6;
    margin-top: 10px;
    font-size: 16px;
  }

  .airports-section {
  background: linear-gradient(135deg, #000000 0%, #360407 100%);
  color: white;
  padding: 80px 20px;
}

.airports-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
}

.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 90%;
  margin: 0 auto;
}

.airport-card {
  background: rgba(99, 99, 99, 0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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: 15px;
  background: #e30d16;
  color: white;
      text-align: center;
    width: 120px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.airport-btn:hover {
  background: #ff3b45;
}

.airport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 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: #e30d16;
  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 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000;
  font-weight: bold;
}

.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: transparent;
  backdrop-filter: blur(10px);
  padding: 70px;


}
.service-img-wrapper{
  border-radius: 8px;
  padding: 5px;
}
.service-item img {
  background: #e30d16;
  width: 48px;
  padding: 10px;
  height: auto;
  border-radius: 8px;
}

.service-item h3 {
  font-size: 1.8rem;
  color: #e30d16;
  margin-bottom: 15px;
}

.service-item p {
  color: #333;
  line-height: 1.6;
}

.service-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #e30d16;
  color: #fff;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .airports-section {
    padding: 40px 0px;
  }
  .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: 0px 0px;
    margin-top: 30px;
        min-width: 270px;


  }
  .service-item p {

  }
}

/* Stations Section Styles */
.stations-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #000000 0%, #1a0000 60%, #e30d16 100%);
  color: #fff;
}

.stations-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
}

.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;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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;
}

.station-card p {
  font-size: 0.95rem;
  padding: 0 15px;
  flex-grow: 1;
}

.station-btn {
  display: inline-block;
  margin: 15px auto 20px;
  padding: 10px 20px;
  background-color: #e30d16;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s ease;
}

.station-btn:hover {
  background-color: #b50a11;
}


/* Section styling */
.fleet-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.fleet-container {
  max-width: 1200px;
  margin: auto;
}

.fleet-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #0b0b0b;
}

/* Tabs */
.fleet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.fleet-tab {
  background: #0b0b0b ;
  color: white;
  border: none;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.fleet-tab:hover,
.fleet-tab:focus {
  background: #e30d16;
}

.fleet-tab.active {
  background: #e30d16;
}

/* Fleet content */
.fleet-content {
  text-align: center;
}

.fleet-detail {
  display: none;
}

.fleet-detail.active {
  display: block;
}

.fleet-img {
  max-width: 600px;
  margin: auto;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.fleet-detail p {
  font-size: 1.1rem;
  color: #333;
  font-family: Arial, sans-serif;
}

/* Download App Section */
.download-app-section {
  background: #0b0b0b;
  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: bold;
  color: #ffffff;
}

.download-app-para {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  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: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dark-btn {
  background: #e30d16;
  color: #fff;
}

.dark-btn:hover,
.dark-btn:focus {
  background: #0b0b0b;
  color: #fff;
}

.download-app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.download-app-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .download-app-container {
    flex-direction: column;
    text-align: center;
  }
  .download-app-buttons {
    justify-content: center;
  }
}

/* Footer Base */
.custom-footer {
  position: relative;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 60px 20px 20px;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

/* Background Circles */
.footer-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  z-index: 0;
}
.circle-1 {
  width: 500px;
  height: 500px;
  background: #9e9e9e;
  top: -200px;
  left: -150px;
}
.circle-2 {
  width: 600px;
  height: 600px;
  background: #7c7c7c;
  bottom: -250px;
  right: -200px;
}

/* Container Layout */
.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;
}

/* Company Info */
.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}
.footer-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}


/* Columns */
.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 ease;
}
.footer-links a:hover {
  color: #e30d16;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.txb-contact {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  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 ease, box-shadow 0.3s ease;
}

.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 ease;
}

.txb-contact__item a:hover {
  color: #e63946; /* modern red hover */
}

/* Map Styling */
.txb-contact__map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
