
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



/* .........................................All Three Section Start....................................*/
.all-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.all-content {
  max-width: 700px;
  margin: 0 auto 60px;
}

.all-heading {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.all-subtext {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
}

/* ✅ Link reset */
.all-card-link {
  text-decoration: none !important;
  color: inherit;
}

.all-card-link:hover,
.all-card-link:focus {
  text-decoration: none !important;
  color: inherit;
}

/* ✅ Card Styling */
.all-card {
  position: relative;
  min-height: 320px;
  padding: 40px 25px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f9fbfc, #eef4f7);
  border: 1px solid rgba(26, 184, 235, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08),
              inset 0 0 8px rgba(255, 255, 255, 0.4);
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.all-card::before,
.all-card::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 184, 235, 0.25), transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 0;
}

.all-card::before { top: -60%; left: -60%; }
.all-card::after { bottom: -60%; right: -60%; }

.all-card:hover::before,
.all-card:hover::after {
  opacity: 1;
}

.all-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(26, 184, 235, 0.3);
}

.all-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1AB8EB, #128abf);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(26, 184, 235, 0.4);
  transition: transform 0.5s ease;
}

.all-card:hover .all-icon {
  transform: rotateY(360deg) scale(1.1);
}

.all-title {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.all-card:hover .all-title {
  color: #1AB8EB;
}

.all-text {
  position: relative;
  z-index: 2;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1; /* ✅ equalize height */
}

  
/* .........................................All Three Section End....................................*/


/* .................................................Airport Section Start.................................. */

/* Section Styling */
.airport-section {
  text-align: center;
  padding: 60px 20px;
  background: aqua;
  font-family: "Poppins", sans-serif;
}

.airport-section h2 {
  font-size: 2.3em;
  margin-bottom: 10px;
  color: #111;
}

.airport-section p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Cards Layout */
.airport-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Card Styling */
.airport-card {
  position: relative;
  width: 260px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.airport-img {
  position: relative;
  overflow: hidden;
}

.airport-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Gradient Overlay for hover effect */
.airport-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.airport-content {
  padding: 15px 20px 25px;
  text-align: center;
  transition: color 0.3s ease;
}

.airport-content h3 {
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #111;
  font-weight: 600;
}

.airport-content p {
  color: #666;
  font-size: 0.95em;
}

/* Modern Hover Animation */
.airport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.airport-card:hover img {
  transform: scale(1.1);
}

.airport-card:hover .airport-img::after {
  opacity: 1;
}

.airport-card:hover .airport-content h3 {
  color: #0078ff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .airport-cards {
    flex-direction: column;
    align-items: center;
  }

  .airport-card {
    width: 90%;
    max-width: 350px;
  }
}


/* .................................................Airport Section End.................................. */

/* .........................................................Station Section Start.......................................... */

.station-section {
  padding: 60px 20px;
}

.station-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
  padding-bottom: 6px;
}

.station-section p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 20px auto; 
  font-size: 1.1em;
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  text-align: center;
}

.station-box {
  position: relative;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.station-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.station-text {
  position: relative;
  z-index: 1;
}

.station-text h3 {
  margin: 0 0 6px 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.station-text span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.station-box:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(26, 184, 235, 0.4);
  z-index: 2;
}

.station-box:hover::after {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .station-box {
    height: 200px;
    padding: 15px;
  }

  .station-text h3 {
    font-size: 1.1rem;
  }

  .station-text span {
    font-size: 0.85rem;
  }
}

.station-kingscross { background-image: url('../../img/kingscross.webp'); }
.station-waterloo { background-image: url('../../img/waterloo.webp'); }
.station-euston { background-image: url('../../img/euston.webp'); }
.station-londonbridge { background-image: url('../../img/londonbridge.webp'); }
.station-victoria { background-image: url('../../img/victoria.webp'); }
.station-charingcross { background-image: url('../../img/charingcross.webp'); }
.station-paddington { background-image: url('../../img/paddington.webp'); }

/* ...............................................................Station Section End..................................... */











/* ...............................................................Sevices Section End..................................... */

.services-section {
  padding: 60px 20px;
  background-color: aqua; 
}

.services-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  border-bottom: 3px solid #1AB8EB;
  padding-bottom: 6px;
  display: inline-block;
}

.services-section p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.05em;
  font-weight: 500;
  text-align: center;
}

/* Card Styling */
.service-card {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px 20px 20px;
  color: #111;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 2px solid #1AB8EB;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(26, 184, 235, 0.3);
}

.service-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.service-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1AB8EB;
}

.service-text p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    min-height: 220px;
    padding: 20px;
  }

  .service-icon img {
    width: 60px;
    height: 60px;
  }
}

/* ...............................................................Sevices Section End.................................. */


/* ...............................................................All Section Heading Start.................................. */

/* Services Section Header */
.services-header {
  text-align: center;
  margin-bottom: 50px; /* space below header */
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111; /* dark text for readability */
  margin-bottom: 12px;
  border-bottom: 3px solid #1AB8EB; /* brand color underline */
  display: inline-block;
  padding-bottom: 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-header p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #555; /* soft gray */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ...............................................................All Section Heading End.................................. */


/* ...............................................................Fleet Section Start.................................. */

/* Fleet Section */
.fleet-cards-section {
  padding: 80px 20px;
  background: #f0f4f8; /* light travel-friendly background */
}

.fleet-header {
  text-align: center;
  margin-bottom: 60px;
}

.fleet-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1AB8EB;
  border-bottom: 4px solid #1AB8EB;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.fleet-header p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Fleet Cards */
.fleet-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fleet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1AB8EB 0%, #00CFFD 100%);
  opacity: 0.05;
  border-radius: 15px;
  z-index: 0;
}

.fleet-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 35px rgba(26, 184, 235, 0.3);
}

.fleet-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  margin-top: 30px;
}

/* Fleet Type Ribbon */
.fleet-type {
  position: absolute;
  top: 15px;
  left: -5px;
  background: #1AB8EB;
  color: #fff;
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0 12px 12px 0;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Fleet Card Text */
.fleet-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
  z-index: 1;
  position: relative;
}

/* Fleet Icons */
.fleet-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  z-index: 1;
  position: relative;
}

.fleet-icons img {
  width: 35px;
  height: 35px;
  padding: 6px;
  border-radius: 50%;
  background: #f0f4f8;
  transition: transform 0.3s ease, background 0.3s ease;
}

.fleet-icons img:hover {
  transform: scale(1.2);
  background: #1AB8EB;
  filter: brightness(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .fleet-text {
    font-size: 0.9rem;
  }
  .fleet-icons img {
    width: 30px;
    height: 30px;
  }
}


/* ...............................................................Fleet Section End.................................. */

/* ...............................................................Footer Section Start.................................. */

/* Footer Styles */
footer {
  background-color: #111;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

footer .footer-column img {
  width: 150px;
  margin-bottom: 15px;
}

footer .footer-column p {
  line-height: 1.6;
}

footer .footer-column h3 {
  color: #1AB8EB;
  margin-bottom: 10px;
}

footer .footer-column ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

footer .footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

footer .footer-column ul li a:hover {
  color: #1AB8EB;
}

footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
  font-size: 14px;
}

footer .footer-bottom a.footer_a {
  color: #fff;
  text-decoration: none;
}

footer .footer-bottom a.footer_a:hover {
  color: #1AB8EB;
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-column {
    text-align: center;
  }
}


/* ...............................................................Footer Section End.................................. */