/* Background Image Section */
.airport-section {
  position: relative;
  height: 60vh;
  background: #ccc;
  background-size: cover;
}
section.airporttransfer-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}
/* Overlay for dark effect */
.airport-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Text Content */
.airport-section .content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 15px;
}

.airport-section h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #0072bb;
}

.airport-section p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0072bb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .airport-section {
    height: 40vh;
  }

  .airport-section h1 {
    font-size: 1.7rem;
  }

  .airport-section p {
    font-size: 1rem;
    font-weight: 500;
  }
}

.features-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 50px 20px;
}

.feature-card {
  background: #fff;

  border-radius: 12px;
  padding: 30px;
  height: 250px;
  box-sizing: border-box;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.transfersection-cardlist span {
  font-size: 20px;
}

.feature-card:hover {
  box-shadow: 0px 4px 20px rgba(0, 114, 187, 0.3);
}

.feature-icon {
  font-size: 50px;
  color: #0072bb;
  margin-bottom: 15px;

  width: 60px;
  height: 60px;
  border-radius: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 10px 10px;
  color: #000;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-heading {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.animate-text {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

@media (max-width: 575.98px) {
  .transfersection-cardlist span {
    font-size: 16px;
  }
}

/* Small tablets / big phones (incl. some Android tabs, iPad Mini portrait) */
@media (min-width: 576px) and (max-width: 767.98px) {
}

/* iPad (Mini/Air/Pro) portrait & many tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* iPad landscape / small laptops */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Large desktops */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* Extra large / 4K */
@media (min-width: 1400px) {
}
