.station-custom-card-ui {
  padding: 60px 20px;
  background: #fdfdfd;
  display: flex;
  justify-content: center;
}

.card-container-station {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1300px;
  width: 100%;
}

.station-card-main {
  position: relative;
  width: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.station-card-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.station-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 15px;
  background-color: #000;
  padding: 10px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.card-content a {
  display: inline-block;
  padding: 8px 18px;
  background: #FF8585;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.card-content a:hover {
  background: #e77070;
}

@media (max-width: 768px) {
  .station-card-main {
    width: 100%;
    max-width: 90%;
    height: auto;
  }

  .card-content {
    padding: 20px 15px;
  }

  .card-content img {
    width: 55px;
    height: 55px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 13px;
  }
}


.all-heading-main{
  text-align: center;
}

.all-heading-main h2{
  font-size: 30px;
  font-weight: 700;
}

.all-heading-main span{
  color: #e77070;
  font-weight: 800;
}

.all-headings-main{
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  color: #fff;
}

.all-headings-main h2 {
  font-weight: 900;
}

/* Station end */

/* airport start */


.airport-section {
  position: relative;
  background: url('../../img/airport-bg-main.webp') no-repeat center/cover;
  padding: 100px 20px;
  z-index: 1;
  background-color: #000000a6;
  background-blend-mode: multiply;
}

.airport-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.airport-row {
  position: relative;
  z-index: 1;
  row-gap: 40px;
}

.airport-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  height: 100%;
}

.airport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.airport-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.airport-card:hover img {
  transform: scale(1.05);
}

.airport-content {
    padding: 48px 17px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-bottom: 3px solid pink;
    border-radius: 30px;
}


.airport-title {
  font-size: 1.3rem;
  color: #FF8585;
  font-weight: 700;
  margin-bottom: 14px;
  font-weight: 700;
}

.airport-desc {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.airport-card a {
  display: inline-block;
  align-self: center;
  padding: 14px 32px;
  background-color: #FF8585;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(255, 133, 133, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.airport-card a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.airport-card a:hover::before {
  transform: scaleX(1);
}

.airport-card a:hover {
  background-color: #ff6b6b;
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .airport-section {
    padding: 60px 10px;
  }

  .airport-card img {
    height: 150px;
  }
}


/* Airport End */


/* fleet start */

.fleet-top-div{
  margin-top: 20px;
  margin-bottom: 20px;
}
.fleet-main-div{
  border: 3px solid #000;
  padding: 10px;
  background-color: #FF8585;
  border-radius: 20px;
  margin-top: 20px;
}

.fleet-main-div img{
  width: 100%;
}

.fleet-main-div h2{
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  color: #fff;
}

.fleet-main-para-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-main-para-info p{
  color: #fff;
}

.fleet-main-para-info img{
  width: 20%;
}

/* Fleet End */


/* Service Start */















.Services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background-color: #e77070cf;
  padding: 30px;
}

.Services-card {
  width: 300px;
  text-decoration: none !important;
  color: white;
  background-color: #e65252;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  position: relative;
}

.Services-card:hover {
  transform: translateY(-5px);
}

.Services-text {
  padding: 20px 15px 10px;
}

.Services-text h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ffffff !important;
}

.Services-line {
  width: 50px;
  height: 3px;
  background-color: #fff;
}

.Services-image {
  position: relative;
}

.Services-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.Services-read {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #e65252;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .Services-container {
    flex-direction: column;
    align-items: center;
  }

  .Services-card {
    width: 90%;
  }
}
