/* ===============================
   SERVICES SECTION
================================ */
.services-section {
  background: #fff;
  padding: 70px 20px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* SECTION HEADING */
.services-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  position: relative;
}

.services-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff4d6d;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===============================
   GRID
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ===============================
   CARD
================================ */
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 320px; /* CLS-safe */
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 77, 109, 0.25);
}

/* IMAGE */
.service-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  background: rgba(255, 77, 109, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img img {
  max-width: 60px;
  height: auto;
}

/* TITLE */
.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-title a {
  text-decoration: none;
  color: #111;
}

.service-title a:hover {
  color: #ff4d6d;
}

/* DESCRIPTION */
.service-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
      .mainHd {
        color: #222;
      }
      .slog-para {
        color:#555;
      }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-heading {
    font-size: 28px;
  }

  .service-card {
    padding: 28px 20px;
  }
}


.airport-services {
  background: #fff;
  padding: 70px 20px;
}

.airport-container {
  max-width: 1200px;
  margin: auto;
}

.airport-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
  position: relative;
}

.airport-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff4d6d;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* GRID */
.airport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD LINK */
.airport-card {
  text-decoration: none;
  color: inherit;
}

.airport-card-inner {
  background: #fff;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 350px; /* uniform height */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.airport-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 77, 109, 0.25);
}

/* PLANE ICON BADGE */
.card-icon {
  background: #ff4d6d;
  color: #fff;
  width: 80px;
  height: 80px;
  font-size: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* TITLE */
.airport-card-inner h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

/* DESCRIPTION */
.airport-card-inner p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .airport-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .airport-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


.cars-fleet {
  background: #f9f9f9; /* light background */
  padding: 80px 20px;
  color: #111;
}

.cars-container {
  max-width: 1200px;
  margin: auto;
}

.cars-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  color: #ff4d6d;
}

.cars-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff4d6d;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* GRID */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CAR CARD */
.car-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.car-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ff4d6d;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 77, 109, 0.25);
}

/* CAR IMAGE */
.car-img {
  width: 100%;
  max-width: 300px;

  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.car-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* CAR TITLE */
.car-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
}

/* CAR DETAILS */
.car-details {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.car-details li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.car-details li .icon {
  font-size: 18px;
  margin-right: 6px;
}

.car-details li .label {
  font-weight: 500;
  color: #555;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .cars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mt-5, .my-5{
  margin-top: 0 !important;
}
}

/* ===============================
   CUSTOM FOOTER - LIGHT VERSION
================================ */
.custom-footer {
  background-color: #f9f9f9; /* light background */
  color: #111; /* text dark for contrast */
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo */
.footer-logo img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff4d6d; /* accent color */
  color: #fff;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4);
}

/* Copyright */
.footer-copy {
  flex: 1 1 100%;
  margin-top: 20px;
  font-size: 14px;
  color: #555; /* slightly dark for light bg */
}

.footer-copy a {
  color: #ff4d6d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover {
  color: #111;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
      .mainHd {
        color: #222;
      }
      .slog-para {
        color:#555;
      }
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }

  .footer-copy {
    margin-top: 10px;
  }
}

.text-center,.about-sec{
  text-align: left !important;
}

