/* AIRPORT SECTIONS CSS START */
.airport-sec {
  padding: 80px 0;
  transition:
    background 0.3s,
    border 0.3s,
    border-radius 0.3s,
    box-shadow 0.3s;
  background: #1d231f;
}

.tag-line {
  font-size: 14px;
  font-weight: 500;
  color: #f7921e;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding: 9px 22px;
  text-transform: capitalize;
  text-align: center;
  margin: 20px;
}

.tag-line::after {
  width: 100%;
  height: 100%;
  background: #63ab45;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.12;
  border-radius: 6px;
}

.airport-sec h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 80px;
  letter-spacing: -0.6px;
  text-align: center;
}

.airport-box {
  position: relative;
  border-radius: 8px;
  border: 1px solid #fff;
  background: #fff;
}

.airport-sec .col-lg-4:nth-child(5) .airport-box,
.airport-sec .col-lg-4:nth-child(6) .airport-box {
  margin-top: 30px;
}

.airport-main-img {
  position: relative;
}

.airport-box:hover .airport-main-img::after {
  background: #63ab45;
}

.airport-main-img::after {
  content: "";
  -webkit-clip-path: polygon(
    50% 28px,
    100% 0,
    100% 12px,
    50% 40px,
    0 12px,
    0 0
  );
  clip-path: polygon(50% 28px, 100% 0, 100% 12px, 50% 40px, 0 12px, 0 0);
  width: 100%;
  height: 39px;
  left: 0;
  bottom: -16px;
  z-index: 1;
  position: absolute;
  background: #fff;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.airport-main-img img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.content-img-airport {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 100%;
  background: #f7921e;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.airport-box:hover .content-img-airport {
  background: #63ab45;
}

.airport-contents {
  padding: 60px 30px 15px;
  position: relative;
  text-align: center;
  -webkit-clip-path: polygon(50% 18px, 100% 0%, 100% 100%, 0 100%, 0% 0%);
  clip-path: polygon(50% 18px, 100% 0%, 100% 100%, 0 100%, 0% 0%);
  background: #fff;
  top: -14px;
}

.airport-contents h3 a {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 15px;
  letter-spacing: -0.4px;
  color: #222;
}

.airport-contents p {
  color: #222;
  font-size: 14px;
  font-weight: 400;
}

/* AIRPORT SECTIONS CSS END */
/* STATIONS CARDS CSS START */
.stations-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  font-family: "Inter", system-ui, sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1d231f;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
  text-align: center;
}

.section-header p {
  font-size: 15px;
  color: #222;
  text-align: center;
}

.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.station-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.station-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 25px 50px rgba(10, 37, 64, 0.15);
}

.card-image {
  height: 220px;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.station-card:hover .card-image img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 35, 31, 0.15) 0%,
    rgba(29, 35, 31, 0.75) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.station-name a {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-body {
  padding: 28px;
}

.station-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #222;
  font-size: 1.05rem;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #63ab45;
  box-shadow: 0 4px 12px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.station-info small,
.station-info strong {
  color: #222;
}

.description {
  color: #222;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f7921e;
  color: #1d231f !important;
  text-decoration: none !important;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.book-btn:hover {
  background: #f7921e;
  transform: translateY(-3px);
}

.tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f7921e;
  color: #1d231f;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px #000;
}

/* STATION CARDS CSS END */
/* SERVICES CARDS CSS START */
.our-services-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #1d231f 0%, #2a332d 100%);
  color: white;
}

.services-header {
  text-align: center;
  margin-bottom: 100px;
}

.services-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
  text-align: center;
}

.services-header p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

.services-grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 50px 35px 45px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-15px);
  border-color: #f7921e;
}

.service-icon-box {
  width: 88px;
  height: 88px;
  background: rgba(99, 171, 69, 0.15);
  border: 2px solid #63ab45;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.4s ease;
}

.service-box:hover .service-icon-box {
  border-color: #f7921e;
  background: rgba(247, 146, 30, 0.15);
  transform: rotate(8deg) scale(1.1);
}

.service-icon-box img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.service-title {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.service-desc {
  opacity: 0.9;
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 36px;
}

.service-action-btn {
  display: block;
  width: 100%;
  padding: 17px;
  background: transparent;
  color: white;
  border: 2px solid #63ab45;
  border-radius: 16px;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.service-action-btn:hover {
  background: #f7921e;
  color: #1d231f;
  border-color: #f7921e;
  transform: translateY(-4px);
}

/* SERVICES CARDS CSS END */
/* FLEET SECTION CSSS START */
.fleet-main-section {
  padding: 130px 20px;
  background: #1d231f;
  color: white;
}

.fleet-main-header {
  text-align: center;
  margin-bottom: 100px;
}

.fleet-main-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
  text-align: center;
}

.fleet-main-header p {
  font-size: 15px;
  opacity: 0.85;
  text-align: center;
  margin: 0 auto;
}

.fleet-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 40px;
  max-width: 1350px;
  margin: 0 auto;
}

.fleet-main-card {
  background: #2a332d;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.fleet-main-card:hover {
  transform: scale(1.03);
}

.fleet-image-side {
  position: relative;
  padding: 35px 40px 0px;
}

.fleet-image-side img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fleet-main-card:hover .fleet-image-side img {
  transform: scale(1.07);
}

.fleet-info-side {
  padding: 38px 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.car-type-label {
  display: inline-block;
  background: #f7921e;
  color: #1d231f;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 6px 26px;
  border-radius: 50px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.fleet-car-name {
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.fleet-subtitle {
  color: #63ab45;
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.fleet-description {
  flex-grow: 1;
  line-height: 1.65;
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 30px;
}

.passenger-count {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.15rem;
  font-weight: 600;
  color: #63ab45;
}

/* FLEET SECTION CSS END */
/* FOOTER SECTION CSS START */
.footer-main {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  color: #1d231f;
  padding: 90px 20px 40px;
  border-top: 1px solid #e5e9e7;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-about {
  max-width: 480px;
}

.footer-about h3 {
  color: #222;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.footer-about p {
  font-size: 15px;
  color: #33423a;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item strong {
  color: #63ab45;
  min-width: 95px;
  display: inline-block;
  font-size: 1.05rem;
}

.contact-item a {
  color: #1d231f;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.footer-bottom {
  margin-top: 90px;
  padding-top: 30px;
  border-top: 1px solid #e5e9e7;
  text-align: center;
}

.footer-bottom p {
  font-size: 1rem;
  color: #64766a;
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .airport-sec .col-lg-4:nth-child(5) .airport-box,
  .airport-sec .col-lg-4:nth-child(6) .airport-box {
    margin-top: 0;
  }
  .airport-box{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .airport-box {
    margin-bottom: 20px;
  }
  .airport-sec .col-lg-4:nth-child(5) .airport-box,
  .airport-sec .col-lg-4:nth-child(6) .airport-box {
    margin-top: 0;
  }
  .stations-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .our-services-section {
    padding: 80px 15px;
  }

  .service-box {
    padding: 40px 28px;
  }
  .fleet-main-grid {
    grid-template-columns: 1fr;
  }
  .fleet-image-side img {
    width: 100%;
  }
  .fleet-main-section {
    padding: 90px 15px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-main {
    padding: 70px 15px 30px;
  }
}

/* FOOTER SECTION CSS END */

/* Whats App Button Css Start */
.wapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px; 
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    cursor: pointer;
    transition: 0.3s;
}

.wapp-btn img {
    width: 30px;
    height: 30px;
}

.wapp-btn:hover {
    transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }

    .wapp-btn img {
        width: 25px;
        height: 25px;
    }
}
/* Whats App Button Css Start */