  .main-section {
    background: url('../Images/services-banner.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    position: relative;
  }

  .content-box {
    position: relative;
    z-index: 2;
  }

  .section-tagline {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  
  .section-tagline::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #dc3f4d;
    /* margin: 10px auto 0; */
    border-radius: 2px;
  }

  .section-heading {
    font-size: 40px;
    font-weight: 700;
    /* margin-top: 25px;  */
  }


  .info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }

  .info-box {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
  }

  /* 🖼️ Icon Image */
  .info-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
  }

  .info-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
  }

  .info-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }

  /* Hover Effect */
  .info-box:hover {
    background-color: #3257a8e8;
    transform: translateY(-6px);
  }

  .info-box:hover .info-title,
  .info-box:hover .info-text {
    color: #fff;
  }

  .info-box:hover .info-icon {
    filter: brightness(0) invert(1); /* makes icon white */
  }


  .event-section {
      background: url('../Images/family-background.png') no-repeat center center/cover;
      padding: 100px 0;
      color: #000;
      position: relative;
    }

    /* .event-overlay {
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.8);
      z-index: 1;
    } */

    .event-content {
      position: relative;
      z-index: 2;
    }

    .event-heading {
      font-size: 46px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 60px;
      text-transform: uppercase;
      color: #000;
    }

    /* ===== Card Styling ===== */
    .event-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 40px 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      position: relative;
    }

    .event-icon {
      width: 60px;
      height: 60px;
      object-fit: contain;
      position: absolute;
      top: 25px;
      left: 25px;
      transition: all 0.3s ease;
    }

    .event-title {
      font-size: 24px;
      font-weight: 700;
      color: #000;
      margin-top: 100px; /* pushes below icon */
      margin-bottom: 15px;
    }

    .event-text {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
    }

    /* Hover effect */
    .event-card:hover {
      background-color: #dc3f4cde;
      color: #fff;
      transform: translateY(-6px);
    }

    .event-card:hover .event-title,
    .event-card:hover .event-text {
      color: #fff;
    }

    .event-card:hover .event-icon {
      filter: brightness(0) invert(1); /* makes icon white */
    }

    .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.icon-img {
  width: 55px;
  height: 55px;
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* Background Image + Overlay */
.airport-transfer-section {
  position: relative;
  background: url('../Images/Airport-Transfers-services-new-page.png') no-repeat center center/cover;
  background-color: white;
  color: #0e0e0e;
  overflow: hidden;
}

/* .airport-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
} */

/* Main Heading */
.airport-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 2;
}

/* Card Styling */
.airport-card {
  z-index: 2;
  transition: all 0.3s ease;
  background-color: white;
}

.airport-card:hover {
  transform: translateY(-5px);
}

/* Icon Styling */
.airport-icon-img {
  width: 55px;
  height: 55px;
}

/* Card Title & Text */
.airport-card-title {
  color: #000000;
}

.airport-card-text {
  color: #000000;
  line-height: 1.6;
}


/* ========== MEDIA QUERIES ========== */

/* Large screens (1200px to 1400px) */
@media (max-width: 1440px) {
    
.main-section {
    height: 30rem;
}
    .section-tagline {
        font-size: 44px;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .event-heading {
        font-size: 42px;
    }
    
    .airport-heading {
        font-size: 2.3rem;
    }
}

/* Medium-large screens (992px to 1199px) */
@media (max-width: 1199px) {
    .main-section {
        height: 28rem;
    }
    
    .airport-card-title {
    color: #000000;
    font-size: 20px;
}
    
    .section-tagline {
        font-size: 40px;
        letter-spacing: 1.5px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .info-section {
        padding: 70px 0;
    }
    
    .info-box {
        padding: 35px 25px;
    }
    
    .info-icon {
        width: 55px;
        height: 55px;
    }
    
    .info-title {
        font-size: 20px;
    }
    
    .info-text {
        font-size: 15px;
    }
    
    .event-section {
        padding: 80px 0;
    }
    
    .event-heading {
        font-size: 38px;
        margin-bottom: 50px;
    }
    
    .event-card {
        padding: 35px 25px;
    }
    
    .event-icon {
        width: 55px;
        height: 55px;
        top: 20px;
        left: 20px;
    }
    
    .event-title {
        font-size: 22px;
        margin-top: 90px;
    }
    
    .event-text {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .icon-img {
        width: 50px;
        height: 50px;
    }
    
    .airport-heading {
        font-size: 2.1rem;
    }
    
    .airport-icon-img {
        width: 50px;
        height: 50px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
      .main-section {
        height: 35vh;
    }
    
    .section-tagline {
        font-size: 34px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .info-section {
        padding: 60px 0;
    }
    
    .info-box {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .info-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .event-section {
        padding: 60px 0;
    }
    
    .event-heading {
        font-size: 35px;
        margin-bottom: 40px;
    }
    
    
    .event-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .event-icon {
        width: 50px;
        height: 50px;
        top: 20px;
        left: 20px;
    }
    
    .event-title {
        font-size: 18px;
        margin-top: 80px;
        margin-bottom: 12px;
    }
    
    .event-text {
        font-size: 14px;
    }
    
    .section-title {
         font-size: 35px;
    }
    
    .icon-img {
        width: 45px;
        height: 45px;
    }
    
       .airport-heading {
        font-size: 35px;
    }
    
    .airport-card-title {
    color: #000000;
    font-size: 20px;
}
    
    .airport-icon-img {
        width: 45px;
        height: 45px;
    }
}

/* Small tablets and large phones (576px to 767px) */
@media (max-width: 767px) {
    .main-section {
        height: 60vh;
    }
    
    .content-box {
        padding: 0 20px;
        margin-top: 50px;
    }
    
    .section-tagline {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .info-section {
        padding: 50px 0;
    }
    
    .info-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .info-title {
        font-size: 18px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .event-section {
        padding: 50px 0;
    }
    
    .event-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .event-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .event-icon {
        width: 45px;
        height: 45px;
        top: 20px;
        left: 20px;
    }
    
    .event-title {
        font-size: 18px;
        margin-top: 70px;
    }
    
    .event-text {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .icon-img {
        width: 40px;
        height: 40px;
    }
    
    .airport-heading {
        font-size: 1.7rem;
    }
    
    .airport-icon-img {
        width: 40px;
        height: 40px;
    }
}

/* Mobile phones (481px to 575px) */
@media (max-width: 575px) {
    .main-section {
        height: 50vh;
    }
    
    .section-tagline {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .info-section {
        padding: 40px 0;
    }
    
    .info-box {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-title {
        font-size: 16px;
    }
    
    .info-text {
        font-size: 13px;
    }
    
    .event-section {
        padding: 40px 0;
    }
    
    .event-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .event-card {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .event-icon {
        width: 40px;
        height: 40px;
        top: 15px;
        left: 15px;
    }
    
    .event-title {
        font-size: 16px;
        margin-top: 60px;
    }
    
    .event-text {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .icon-img {
        width: 35px;
        height: 35px;
    }
    
    .airport-heading {
        font-size: 1.5rem;
    }
    
    .airport-icon-img {
        width: 35px;
        height: 35px;
    }
}

/* Small mobile phones (320px to 480px) */
@media (max-width: 480px) {
    .main-section {
        height: 38vh;
    }
    
    .content-box {
        padding: 0 15px;
    }
    
    .section-tagline {
        font-size: 24px;
        letter-spacing: 0;
        margin-bottom: 10px;
    }
    
    .section-tagline::after {
        height: 2px;
    }
    
    .section-heading {
        font-size: 17px;
    }
    
    .info-section {
        padding: 30px 0;
    }
    
    .info-box {
        padding: 18px 12px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .info-icon {
               width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .info-title {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .info-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .event-section {
        padding: 30px 0;
    }
    
    .event-heading {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .event-card {
        padding: 18px 12px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    .event-icon {
        width: 45px;
        height: 40px;
        top: 12px;
        left: 12px;
    }
    
    .event-title {
        font-size: 20px;
        margin-top: 50px;
        margin-bottom: 10px;
    }
    
    .event-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .icon-img {
        width: 45px;
        height: 45px;
    }
    
    .airport-heading {
        font-size: 26px;
    }
    
    .airport-icon-img {
        width: 45px;
        height: 45px;
    }
    
        .airport-card-title {
        color: #000000;
        font-size: 17px;
    }
    
    /* Reduce hover effects on touch devices */
    /*@media (hover: none) {*/
    /*    .info-box:hover,*/
    /*    .event-card:hover,*/
    /*    .card:hover,*/
    /*    .airport-card:hover {*/
    /*        transform: none;*/
    /*    }*/
    /*}*/
}