/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
 font-family: 'Roboto', sans-serif;
  background: #e7f2fd;
  padding-top: 110px;
}
ul {
  list-style-type: none;
}
html {
  scroll-behavior: smooth;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}
body {
  font-family: 'Lato', sans-serif;
}
.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.top-header {
  background-color: #00469b;
  color: #fff;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.top-left, .top-right {
  display: flex;
  gap: 16px;
  font-size: 16px;
}

.top-header a {
  color: #fff;
  text-decoration: none;
}

.top-right .whatsapp-icon i {
  color: #25d366;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 20px;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo img {
  height: 45px;
}
.logo span {
  font-weight: 700;
  font-size: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #00469b;
}
/* For tablets and below (≤ 768px) */
@media (max-width: 768px) {
  .logo span {
    font-size: 32px;
  }
}

/* For mobile phones (≤ 480px) */
@media (max-width: 480px) {
  .logo span {
    font-size: 26px;
  }
}

.logo small {
  color: #666;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #00469b;
}
.menu-close {
  display: none;
  font-size: 28px;
  padding: 16px;
  width: 100%;
  text-align: right;
}

.nav-menu {
  display: flex;
  transition: right 0.3s ease-in-out;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 8px;
  font-weight: 500;
}
.nav-links a:hover {
  color: #00469b;
}

.contact-btn {
  background: #00469b;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  z-index: 1000;
  min-width: 160px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #333;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  .menu-close {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    padding-top: 60px;
    align-items: flex-start;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 20px;
  }
  .dropdown-menu {
    position: static;
    background: #f5f6f7;
    box-shadow: none;
    display: none;
  }
  .dropdown-menu.open {
    display: block;
  }
  .dropdown-menu a {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 15px;
    padding: 12px 55px;
    font-size: 24px;
  }
  .top-left,
  .top-right {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Banner */
.banner-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
}
.banner-slide.active {
  opacity: 1;
}
.banner-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: #fff;
  border-radius: 10px;
  font-size: 2rem;
  animation: fadeInUp 1s ease forwards;
  text-align: center;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .banner-text {
    font-size: 1.5rem;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .banner-text {
    font-size: 1.2rem;
    padding: 10px;
  }
}


/* reg  */
/* style.css */
.booking-section {
  /* background: #f5f8ff; */
  padding: 40px 20px;
  text-align: center;
}

.booking-section h3 a {
  color: #0056d2;
  font-size: 18px;
  text-decoration: underline;
}

.booking-section h1 {
  font-size: 28px;
  margin: 10px 0;
  color: #111;
}

.booking-section p {
  color: #444;
  margin-bottom: 30px;
}

.booking-form {
  background: white;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 8px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.full-width {
  flex: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.form-button {
  text-align: right;
}

button {
  padding: 10px 20px;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-button {
    text-align: center;
  }
}


/* about us  */
/* style.css */
.welcome-section {
  padding: 60px 20px;
  background: #fff;

}

.welcome-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.welcome-text {
  flex: 1;
  min-width: 300px;
}

.welcome-text h4 a {
  color: #0056d2;
  text-decoration: underline;
  font-size: 18px;
}

.welcome-text h1 {
  font-size: 36px;
  margin: 10px 0;
  color: #222;
}

.welcome-text h1 span {
  color: #ff4d00;
}

.welcome-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.btn-about {
  display: inline-block;
  padding: 12px 30px;
  background-color: #0056d2;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-about:hover {
  background-color: #0044aa;
}

.welcome-image {
  flex: 1;
  text-align: center;
}

.welcome-image img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-container {
    flex-direction: column;
    text-align: center;
  }

  .welcome-text h1 {
    font-size: 28px;
  }
}


/* why so  */
/* style.css */
.why-choose {
  background: #fff;
  padding: 60px 20px;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.why-image {
  flex: 1;
  min-width: 300px;
}

.why-image img {
  width: 100%;
  height: 34px;
  object-fit: cover;
}

.why-content {
  flex: 1;
  background: #1e1f26;
  color: white;
  padding: 40px;
}

.why-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.why-content p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card i {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ff6600;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffb73f;
}

.why-card p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
#whyImage {
  transition: opacity 1s ease-in-out;
}
#whyImage {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}


/* service  */
.services-section {
  padding: 60px 20px;
  text-align: center;
}

.services-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.services-container p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  position: relative;
  width: 280px;
  height: 360px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(255, 102, 0, 0.1));
  color: #fff;
  text-align: left;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.service-card .overlay i {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card .overlay h3 {
  margin: 0;
  font-size: 20px;
  transition: color 0.3s ease;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .overlay {
  background: linear-gradient(to top, rgba(85, 85, 85, 0.95), rgba(255, 188, 143, 0.3));
}

.service-card:hover .overlay i,
.service-card:hover .overlay h3 {
  color: #ffe600;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
    height: auto;
  }

  .service-card img {
    height: 220px;
  }
}





   .success-section {
      background: #005eb8;
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    .success-section h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .success-section h2 {
      font-size: 2.4rem;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .card-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
    }

    .counter-card {
      background: white;
      color: #000;
      border-radius: 15px;
      padding: 30px 20px;
      width: 230px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .counter-card i {
      font-size: 36px;
      margin-bottom: 15px;
      color: #005eb8;
    }

    .counter-card .count {
      font-size: 32px;
      font-weight: 700;
      color: #005eb8;
      margin-bottom: 8px;
    }

    .counter-card p {
      font-size: 15px;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .counter-card {
        width: 100%;
        max-width: 300px;
      }
    }


    /* booking  */
    /* Card Section */
.card-section {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  text-align: center;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  padding: 15px;
  /* background-color: #007bff; */
  color: white;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.card-body {
  padding: 15px;
  background-color: #ffffff;
}

.card-body h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #007bff;
}

.card-body p {
  font-size: 14px;
  color: #555;
}
.booking-header {
  text-align: center;
  margin: 40px 20px;
}

.booking-header h2 {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.booking-header h3 {
  font-size: 18px;
  font-style: italic;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.booking-header {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.booking-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  animation: slideUp 0.4s ease;
}
.popup-content h2 {
  margin-bottom: 20px;
}
.popup-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.popup-content button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
.popup-content button:hover {
  background: #0056b3;
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}
.error {
  color: red;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    width: 90%;
  }
}

.popup-content textarea,
.popup-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
.popup-content textarea {
  resize: vertical;
  min-height: 80px;
}



.aa-contact-wrapper {
  /* background: #f8fafd; */
  padding: 60px 20px;
}
.aa-contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.aa-contact-header h2 {
  font-size: 32px;
  color: #1e2d50;
}
.aa-contact-header p {
  color: #555;
  font-size: 16px;
}

.aa-contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.aa-contact-left, .aa-contact-right {
  flex: 1 1 350px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.aa-contact-left h3,
.aa-contact-right h3 {
  margin-bottom: 20px;
  color: #003d6a;
  font-size: 22px;
}

.aa-contact-form input,
.aa-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}
.aa-contact-form button {
  background-color: #003d6a;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.aa-contact-form button:hover {
  background-color: #005494;
}

@media (max-width: 768px) {
  .aa-contact-container {
    flex-direction: column;
  }
}
/* footer  */
.airport-footer {
  background: #002b4e;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 25px;
  margin-bottom: 15px;
  color: #00cfff;
}

.footer-column p,
.footer-column li {
  font-size: 18px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #00cfff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #004d7a;
  margin: 30px 50px 0 50px;
  font-size: 16px;
  flex-wrap: wrap;
  gap: 10px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 5px 0;
  flex: 1 1 45%;
}

.footer-credit a {
  color: #00bfff;
    text-decoration: underline;
 
  font-weight: 500;
}

.footer-credit a:hover {
   text-decoration: none;
  text-decoration: underline;
  color: #ffffff;
}

.footer-bottom i {
  margin-right: 8px;
  color: #007acc;
}

/* ✅ Responsive for screens below 768px */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin: 30px 20px 0 20px;
    font-size: 15px;
  }

  .footer-bottom p {
    width: 100%;
    text-align: left;
  }
}



.footer-column i {
  margin-right: 8px;
  color: #00cfff;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}


.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: rgb(38, 139, 38);
  color: #fff;
  font-size: 20px;
  padding: 14px 16px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  background-color: rgb(0, 109, 0);
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-3px);
}


/* flip  */
.flip-card {
  width: 300px;
  height: 400px;
  perspective: 1000px;
  margin: 20px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  position: relative;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
  color: white;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 43, 78, 0.7);
  padding: 15px;
  border-radius: 10px;
}

.overlay i {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
  color: #00cfff;
}

.flip-back {
  background: linear-gradient(to bottom right, #003a6b, #005a9c);
  transform: rotateY(180deg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-back h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00cfff;
}

.flip-back ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.flip-back li {
  margin-bottom: 6px;
}


/* About  */
.airport-intro {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 60px 40px;
  gap: 40px;
  background: #fff;
  flex-wrap: wrap;
}

.airport-content {
  flex: 1;
  max-width: 600px;
}

.airport-subtitle {
  font-size: 16px;
  color: #004eab;
  font-weight: 600;
  text-decoration: underline;
}

.airport-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.airport-title span {
  color: #f24c1a;
}

.airport-description {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.airport-btn {
  display: inline-block;
  background-color: #0056d2;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.airport-btn:hover {
  background-color: #003f9a;
}

.airport-image img {
  max-width: 100%;
  max-height: 400px; /* limit height */
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


/* ✅ Responsive Media Query */
@media (max-width: 768px) {
  .airport-intro {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .airport-content {
    max-width: 100%;
  }

  .airport-title {
    font-size: 26px;
  }

  .airport-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .airport-image img {
    max-height: 300px;
  }
}


    .airport-booking-btn {
      padding: 12px 28px;
      font-size: 18px;
      background-color: #0078D4;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s ease;
      margin: 40px auto;
      display: block;
    }

    .airport-booking-btn:hover {
      background-color: #005fa3;
    }

    /* Popup Overlay */
    .airport-booking-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Popup Box */
    .airport-booking-box {
      background: #fff;
      padding: 32px;
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      position: relative;
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from { transform: scale(0.95); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .airport-booking-title {
      margin: 0 0 24px;
      color: #0078D4;
      text-align: center;
      font-size: 22px;
    }

    /* Form Groups */
    .airport-booking-group {
      margin-bottom: 18px;
    }

    .airport-booking-group label {
      font-weight: 600;
      margin-bottom: 6px;
      display: block;
      color: #333;
    }

    .airport-booking-group label span {
      color: red;
    }

    .airport-booking-group select {
      width: 100%;
      padding: 10px 12px;
      font-size: 16px;
      border-radius: 6px;
      border: 1px solid #ccc;
      background: #f9f9f9;
      outline: none;
      box-sizing: border-box;
    }

    /* Submit Button */
    .airport-booking-submit-btn {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      background: #0078D4;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
      margin-top: 20px;
    }

    .airport-booking-submit-btn:hover {
      background-color: #005fa3;
    }

    /* Close Button */
    .airport-booking-close-btn {
      position: absolute;
      top: 12px;
      right: 16px;
      background: transparent;
      border: none;
      font-size: 28px;
      color: #666;
      cursor: pointer;
    }

.ab-btn-primary {
  padding: 12px 24px;
  font-size: 16px;
  background: #0078D4;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.ab-btn-primary:hover {
  background-color: #005fa3;
}

.ab-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.ab-popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: abFadeIn 0.3s ease;
}

@keyframes abFadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ab-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
}

.ab-popup-title {
  text-align: center;
  color: #0078D4;
  margin-bottom: 20px;
}

.ab-form-group {
  margin-bottom: 15px;
}
.ab-form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}
.ab-form-group label span {
  color: red;
}
.ab-form-group input,
.ab-form-group select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Disable scroll */
/* body.airport-popup-no-scroll {
  overflow: hidden;
} */

.fixed-contact-icons {
  position: fixed;
  top: 40%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fixed-contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgb(38, 139, 38);
  color: white;
  text-decoration: none;
  border-radius: 6px 0 0 6px;
  transition: background 0.3s ease;
}

.fixed-contact-icons a:hover {
  background-color: rgb(0, 109, 0);
}

.fixed-contact-icons i {
  font-size: 25px;
}

/* ===== SECTION WRAPPER ===== */
#ab-assist-wrapper {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

#ab-assist-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

/* ===== GRID SYSTEM ===== */
#ab-assist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

/* ===== CARD FLIP BASE ===== */
.ab-card-box {
  perspective: 1000px;
  height: 330px;
}

.ab-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
  border-radius: 16px;
}

.ab-card-box:hover .ab-flip-inner {
  transform: rotateY(180deg);
}

/* ===== FRONT SIDE (Image) ===== */
.ab-flip-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

/* ===== BACK SIDE (Colored BG) ===== */
.ab-flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  background-color: #00457C;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 25px;
  box-sizing: border-box;
  text-align: center;
}

/* ===== TEXT ===== */
.ab-back-title {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.ab-back-desc {
  font-size: 17px;
  color: #dfdfdf;
  line-height: 1.5;
}

/* ===== IMAGE CLASSES (Front Images) ===== */
.ab-front-porter {
  background-image: url('../images/porter\ airport.jpg');
}

.ab-front-vip {
  background-image: url('../images/vip.jpg');
}

.ab-front-fasttrack {
  background-image: url('../images/ftc.jpg');
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
  #ab-assist-heading {
    font-size: 26px;
  }

  .ab-back-title {
    font-size: 18px;
  }

  .ab-back-desc {
    font-size: 14px;
  }

  .ab-card-box {
    height: 300px;
  }
}

.aa-servie {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 15px;
  border-radius: 0 0 16px 16px;
  text-align: center;
  margin: 0;
}
@media (max-width: 600px) {
  .aa-servie {
    font-size: 16px;
    padding: 10px 12px;
  }
}
.aa-servie {
  transition: background 0.3s ease, color 0.3s ease;
}
