html, body {
    overflow-x: hidden;
}
* {
    font-family: 'Poppins';
}
/* index */
/* ============================================
   BASE HERO SECTION
================================================ */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 138px 8%;
  flex-wrap: wrap;
  background: #fff;
  gap: 2rem;
 
  /* Background image */
  position: relative;
  width: 100%;
 background-image: url("/images/image 2281.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
 
.content {
  flex: 1 1 400px;
  position: relative;
  z-index: 2;
}
 
/* ============================================
   TEXT & HEADINGS
================================================ */
.h1,h1{
  font-size: 45px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: poppins;
  font-weight: 500;
}
 
.highlight {
  color: #007bff;
  font-weight: 600;
}
 
/* ============================================
   BOOKING FORM
================================================ */
.booking-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid #ddd;
  width: 623px;
  height: auto;
  top:10px;
}
 
.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}
 
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
 
label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}
 
input,
select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 0.95rem;
}
 
/* Button */
.get-btn{
  width: 100%;
  margin-top: 10px;
  height: 45px;
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(90deg, #0d6efd, #007bff);
  color: #fff;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  text-decoration: none;
}
 
.booking-form button:hover {
  background: linear-gradient(90deg, #0056d1, #0041a8);
}
 
/* ============================================
   IMAGE SECTION
================================================ */
.image-section {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
.city-img {
    position: absolute;
    top: -500px;
    right: 30px;
    width: 30%;
    border-radius: 12px;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 538px !important;
}

.city-img-plane {
    position: absolute;
    top: -300px;
    right:45px;
    width: 423px;
    
    z-index: 1;
   
    height: 220px !important;
}
 
.plane-img {
     width: 202px !important;
    position: absolute !important;
    top: -551px !important;
    left: 834px !important;
    transform: translateX(-50%);
    z-index: 2;
        height: 205px;
}
 
/* Blue rotated box */
.plane-img-wrapp {
  position: absolute;
    width: 15%;
    height: 175px;
    background: #186ee3;
    z-index: 2;
    top: -533px;
    left: 757px;
    transform: rotate(-15deg);
    border-radius: 20px;
}
 
/* ============================================
   FLOATING CIRCLES
================================================ */
.text-background-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
 
.text-background-circles .circle {
  position: absolute;
  background-color: #006dff;
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}
 
.text-background-circles .tiny { width: 25px; height: 25px; }
.text-background-circles .small { width: 20px; height: 20px; }
.text-background-circles .medium { width: 15px; height: 15px; }
.text-background-circles .extrasmall { width: 15px; height: 15px; }
 
.text-background-circles .circle:nth-child(1) { top: -5%; left: 1%; }
.text-background-circles .circle:nth-child(2) { top: -10%; left: 30%; }
.text-background-circles .circle:nth-child(3) { bottom: 520px; left: 90%; }
.text-background-circles .circle:nth-child(4) { top: 120px; right: 45%; }
 
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-10px) scale(1.05); opacity: 0.8; }
}
 
/* ============================================
   MOBILE VIEW
================================================ */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
  }
 
  h1 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
 
  .booking-form {
    margin: 0 auto !important;  
     margin-top: 20px !important;
    width: 100% !important;      
    max-width: 330px;            
  }
 
  .form-row {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px;
  }
 
  .form-group {
    width: calc(33.33% - 10px) !important;
  }
 
  .image-section {
    order: 2;
    margin-top: 30px;
  }
 
  .city-img {
    width: 100%;
    right: 0;
  }
 
  .plane-img {
    width: 100% !important;
    margin-top: -60px;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
 
  .content h1{
    font-size:25px;
    text-align:start;
  }
 
  .text-background-circles .circle {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
 
/* Tablet Fix */
@media (max-width: 992px) {
  .hero { flex-direction: column; text-align: center; }
  h1 { font-size: 1.8rem; }
  .image-section { order: -1; }
}
 
 
 
/* ABOUT-US-FOR-DESKTOP */
/* MAIN SECTION */
.about-section {
  position: relative;
  width: 100%;
  padding: 0px 0;
  overflow: hidden;
}



@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2.85rem!important;
        margin-bottom:40px!important;
    }
}
 
.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;
}
 
/* CONTAINER */
.about-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
 
/* LEFT IMAGE STACK */
.about-images {
  position: relative;
  width: 45%;
  top: -170px;
}
 
.about-box {
  width: 280px;
  height: 350px;
  border-radius: 20px;
  position: absolute;
}
 
.box1 {
     top: -40px;
    left: -15px;
    transform: rotate(-1deg);
}
 
.box2 {
    top: 110px;
    left: 20px;
    transform: rotate(1deg);
}
 
.about-photo {
     width: 180px;
    height: 240px;
}
 
.about-pic {
 width: 200px;
    height: 310px;
}
 
.brush {
  position: absolute;
  width: 150px;
  top: -25px;
  left: -25px;
}
 
.brush2 {
  top: -20px;
  left: 110px;
  width: 130px;
}
 
/* CONTENT */
.about-content h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
 
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #263238;
  margin-bottom: 15px;
  text-align:left;
}

.btn-center{
    text-align: center;
}
 
.read-more-btn {
    background: #0a65ff;
    color: #fff;
    padding: 9px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    width: 270px;
    text-align: center;
        height: 45px;
}
 
 
/* Hide on desktop + tablet */
.mobile-only {
  display: none;
}
 
/* Show ONLY on phones */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}
 
/* ⭐ MOBILE VIEW FIX */
@media (max-width: 768px) {
 
  /* Row = Images + first paragraph */
  .about-top-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
 
  .about-images {
    width: 50%;
    top: 0 !important;
    height: auto;
  }
 
  .first-content {
    width: 50%;
  }
 
  .first-para {
    margin-top: 0;
        text-align: justify;
  }
 
  /* Remaining paragraphs full width */
  .after-row {
    width: 100%;
    margin-top: 20px;
        text-align: justify;
  }
 
  .after-row p {
    width: 100%;
  }
 
  .box1 {
     top: -40px;
    left: -15px;
    transform: rotate(-1deg);
}
 
.box2 {
    top: 110px;
    left: 20px;
    transform: rotate(1deg);
}
 
.about-photo {
    width: 180px;
    height: 205px;
    margin-left: -14px;
}
 
.about-pic {
    width: 187px;
    height: 231px;
    margin-top: 30px;
    margin-left: 15px;
}
 
}
 
 
@media (max-width: 420px) {
     .box1 {
       top: 10px;
        left: -22px;
        transform: rotate(-1deg);
    }
 
    .box2 {
       top: 160px;
        left: 10px;
        transform: rotate(1deg);
    }
 
    .about-photo {
        width: 170px;
        height: 230px;
        margin-left: -13px;
        margin-top: 10px;
    }
 
    .about-pic {
        width: 183px;
        height: 260px;
        margin-top: -4px;
        margin-left: 3px;
    }
}
 
 
@media (width: 390px) {
 
.about-images {
        width: 50%;
        top: 40px !important;
        height: auto;
    }
    .box1 {
        top: -25px;
        left: -10px;
        transform: rotate(-1deg);
    }
 
    .box2 {
        top: 90px;
        left: 15px;
        transform: rotate(1deg);
    }
 
    .about-photo {
        width: 160px;
        height: 204px;
        margin-left: 0px;
    }
 
    .about-pic {
        width: 185px;
        height: 244px;
        margin-left: -2px;
    }
}
/* ABOUT-US-FOR-MOBILE */
/* Hide whole section on mobile */
.desk-about-wrapper {
    display: none;
}
 
@media (min-width: 992px) {
    .desk-about-wrapper {
        position: relative;
        width: 100%;
        padding: 25px 0;
        overflow: hidden;
        display: block;
    }
 
    .desk-about-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.8;
        z-index: 0;
    }
 
    .desk-about-inner {
        position: relative;
        z-index: 2;
        width: 90%;
        max-width: 1300px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
 
    /* LEFT IMAGES STACK */
    .desk-about-visuals {
        position: relative;
        width: 45%;
        top: -301px;
    }
 
    .desk-about-card {
        width: 280px;
        height: 350px;
        border-radius: 20px;
        position: absolute;
    }
 
    .desk-card-one {
        top: -40px;
        left: 0;
        /*transform: rotate(-1deg);*/
    }
 
    .desk-card-two {
        top: 75px;
        left: 163px;
        /*transform: rotate(-2deg);*/
    }
 
    /* Images */
    .desk-photo-two {
        margin-left: -39px;
        width: 300px;
        /*height: 340px;*/
        object-fit: cover;
    }
 
    .desk-photo-one {
        margin-left: 15px;
        margin-top: 270px;
        width: 500px;
        height: 250px;
    }
 
    /* Brush strokes */
    .desk-brush-one,
    .desk-brush-two {
        position: absolute;
        top: -25px;
        left: -25px;
        width: 150px;
    }
 
    .desk-brush-two {
        top: -20px;
        left: 110px;
        width: 130px;
    }
 
    /* RIGHT CONTENT */
    .desk-about-textbox {
        width: 50%;
        padding-left: 40px;
    }
 
    .desk-about-textbox h2 {
        font-size: 45px;
        font-weight: 700;
        margin-bottom: 25px;
    }
 
    .desk-about-textbox p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
        color: #263238;
    }
 
    .desk-read-btn {
        display: inline-block;
        background: #006dff;
        color: #fff;
        padding: 12px 32px;
        border-radius: 8px;
        font-weight: 600;
        margin-top: 10px;
        text-decoration: none;
        transition: .3s;
    }
 
    .desk-read-btn:hover {
        background: #004ecc;
    }
}
 
 
 
 
/* EXPLORE-SECTION */
    .explore-section {
    position: relative;
    width: 100%;
    padding: 80px 0 60px;
    text-align: center;
 
 
  background-image: url("/images/group-39901.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
    margin-top: 32px;
}
 
/* TOP MAIN AIRPLANE */
.plane-top img {
       width: 576px;
    margin-bottom: 10px;
    margin-top: -140px;
}
 
/* TITLE */
.explore-title {
    font-size: 45px;
    color: #fff;
    font-weight: 700;
        margin-top: 25px;
    text-transform: uppercase;
}
 
.explore-title span {
    color: #dff3ff;
}
 
/* SUBTITLE */
.explore-subtitle {
    color: #e5f3ff;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 40px;
}
 
/* TRAVEL CARDS (IMAGES) */
.travel-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}
 
.travel-cards .card {
    width: 280px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
    background: #ffffff;
}
 
.travel-cards img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
/* DECORATIVE SMALL PLANES */
.plane-left {
    position: absolute;
    top: 40px;
    left: -5px;
    width: 300px;
    opacity: 0.8;
}
 
.plane-right {
    position: absolute;
    top: 40px;
    right: -5px;
    width: 300px;
    /* transform: scaleX(-1); */
    opacity: 0.8;
}
 
/* MOBILE VIEW — 2 CARDS PER ROW */
@media (max-width: 768px) {
    .travel-cards {
        flex-wrap: wrap;
        gap: 15px;
    }
 
    .travel-cards .card {
        width: calc(50% - 15px); /* 2 cards per row */
        height: 220px;           /* smaller height for mobile */
    }
 
    /* DECORATIVE SMALL PLANES */
.plane-left {
    position: absolute;
    top: 90px;
    left: -90px;
    width: 170px;
    opacity: 0.8;
}
 
.plane-right {
    position: absolute;
    top: 90px;
    right: -90px;
    width: 170px;
    /* transform: scaleX(-1); */
    opacity: 0.8;
}
 
    .plane-top img {
        width: 320px;
        margin-top: -120px;
    }
 
    .explore-title {
        font-size: 25px;
    }
 
    .explore-subtitle {
                font-size: 17px;
        max-width: 72%;
    }
}
/* HOVER EFFECT FOR TRAVEL CARDS */

.travel-cards .card {
    cursor: pointer;
    overflow: hidden;
}

.travel-cards .card img {
    transition: transform 0.4s ease;
}

.travel-cards .card:hover img {
    transform: scale(1.1); /* Only zoom image */
}
/* CARD OVERLAY TEXT */
.travel-cards .card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Zoom effect only */
.travel-cards .card img {
    transition: transform 0.4s ease;
}

.travel-cards .card:hover img {
    transform: scale(1.1);
}

/* HIDDEN TEXT OVERLAY */
.card-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;      /* Full image overlay */
    padding: 20px;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  /* Text stays at bottom */
    
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),   /* darkest at bottom */
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.05)   /* lightest at top */
);

    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Show on hover */
.card:hover .card-info {
    opacity: 1;
    transform: scale(1);
}


/* TEXT VISIBLE ON HOVER */
/*.card:hover .card-info {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*}*/

/* TEXT STYLE */
.card-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.card-info p {
    margin: 5px 0 0;
    font-size: 16px;
    font-weight: 500;
}
/* EXPLORE-SECTION-END*/
 
 
/* WHY-CHOOSE-US-START */
.why-choose-us-section {
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
  
}
 
.why-title {
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 35px;
  color: #000;
  text-align: left;
}
 
.why-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
 
/* ================================
   LEFT IMAGE SECTION
================================ */
.why-left {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
      /*margin-bottom: -220px;*/
}
 
.why-left .main-img {
  width: 100%;
  height:465px;
  object-fit: cover;
  border-radius: 10px;
}
 
.planeed-img {
  position: absolute;
  width: 390px;
  top: 360px;
  right: -10px;
  transform: rotate(-5deg);
  border-radius: 10px;
  z-index: 2;
}
 
/* ================================
   RIGHT SIDE CONTENT BOXES
================================ */
.why-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
/* Boxes */
.why-box,
.why-boxed,
.why-boxes {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #adb5bd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: 0.3s;
  padding-top: 20px;
}
 
.why-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
 
/* Large top box layout */
.why-choose-us-section .why-box {
  display: flex;
  align-items: flex-start;
  gap: 60px;
 padding-bottom: 10px;
}

.travel p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 
/* ICONS */
.travel-icon img {
       width: 65px;
    height: 60px;
    margin-top: 20px;
}
 
.light-icon img {

  margin-bottom: 20px;
    margin-top: 10px;
}
 
.why-icon img {
 
     margin-bottom: 20px;
    margin-top: 10px;
}
 
/* TEXT */
.head h4,
.travel h4,
.light h4 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
 
.travel p {
  font-size: 20px;
  width: 580px;
  color: #555;
  margin-top: -50px;
}
 
.head p,
.light p {
  font-size: 18px;
  color: #555;
  margin: 0;
}
 
/* Row of two boxes */
.why-row {
  display: flex;
  gap: 20px;
}
 
.why-row > div {
  flex: 1;
}
 
/* Full width box */
.full-width {
  width: 100%;
}
 
/* ================================
   RESPONSIVE DESIGN
================================ */
 
/* ============ TABLET (991px) ============ */
@media (max-width: 991px) {
  .why-wrapper {
    flex-direction: column;
    gap: 30px;
  }
 
  .why-left {
    max-width: 100%;
  }
 
  .planeed-img {
    width: 300px;
    top: 280px;
    right: 0;
  }
 
  .why-right {
    width: 100%;
  }
 
  .why-box {
    gap: 40px;
    padding-left: 40px;
  }
 
  .travel p {
    width: 100%;
  }
 
  .why-row {
    flex-direction: column;
  }
 
  .why-icon img,
  .light-icon img {
    margin-left: 0;
    width: 100px;
    height: 100px;
  }
 
 
 
}
 
/* ============ MOBILE (768px) ============ */
@media (max-width: 768px) {
 
  .planeed-img {
    position: relative;
    top: -190px;
    right: 0;
    width: 85%;
    margin: 0 auto;
    display: block;
  }
 
  .main-img {
    height: auto;
  }
 
  .why-box, .why-boxed, .why-boxes {
    padding: 20px;
    text-align: center;
  }
 
  .why-box {
    flex-direction: column;
    gap: 20px!important;
    padding-left: 20px!important;
  }
  
  .why-left .main-img {
      height:400px!important;
  }
 
  .travel p,
  .head p,
  .light p {
    width: 100%;
  }
 
  /* Icons centered */
  .travel-icon img,
  .why-icon img,
  .light-icon img {
    margin: 0 auto;
    display: block;
  }
    .travel-icon img{
    margin-left:140px;
  }
 
 
  .head h3,
  .light h3 {
    font-size: 24px;
  }
  .travel h3{
   margin-left: 65px!important;
  }
}
 
/* ============ SMALL MOBILE (480px) ============ */
@media (max-width: 480px) {
 
  .why-title {
    font-size: 35px;
    text-align: center;
  }
 
  .planeed-img {
    width: 100%;
  }
 
  .why-box, .why-boxed, .why-boxes {
    padding: 18px;
  }
 
  .travel h3,
  .head h3,
  .light h3 {
    font-size: 22px;
  }
   .travel h3{
       margin-left:65px;
   }
 
  .travel p,
  .head p,
  .light p {
    font-size: 16px;
  }
}
 
 
/* TRAVEL-SECTION-START */
.travel-hero {
  background: #e7f0ff;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  height: 380px;
  position: relative;
  overflow: hidden;
}
.travel {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
      
}
 
/* IMAGES SECTION */
.images {
  position: relative;
  width: 50%;
}
 
.images img {
  border-radius: 12px;
  object-fit: cover;
}
 
/* Desktop Positions */
.img1 {
  width: 260px;
  position: absolute;
  top: -10px;
  left: 183px;
  z-index: 3;
}
 
.img3 {
  width: 230px;
  height: 160px;
  position: absolute;
  /* top: -118px; */
  left: 60px;
}
 
.img2 {
  width: 280px;
  height: 150px;
  position: absolute;
  top: 110px;
  left: 90px;
  z-index: 3;
}
 
.plane {
  width: 230px;
  position: absolute;
  top: -70px;
  left: 280px;
  transform: rotate(-5deg);
  z-index: 3;
}
 
/* TEXT */
.text-content {
  width: 45%;
}
 
.text-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1b1b1b;
  margin-bottom: 10px;
}
 
.text-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  text-align: left;
  margin-top:0px!important;
}
 
.cta-btn {
  background: #0a65ff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
 
.cta-btn:hover {
  background: #004ed6;
}

/* Hide <br> on mobile */
@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }
}
 
/* ---------------------------------------- */
/* 📱 MOBILE + TABLET RESPONSIVE DESIGN     */
/* ---------------------------------------- */
 
@media (max-width: 992px) {
  .travel-hero {
    flex-direction: column;
    height: auto;
    text-align: center;
    padding: 40px 20px;
  }
 
  /* IMAGES COME FIRST */
  .images {
    width: 100%;
    height: 260px;
    margin-bottom: -40px;
    margin-top: 80px;
    left: -70px;
  }
 
  /* Scale images for responsive layout */
  .img1 {
    width: 180px;
    top: -40px;
    left: 50%;
    transform: translateX(20%);
  }
 
  .img2 {
    /* width: 200px; */
   top: 40px;
        left: 150px;
        transform: translateX(-10%);
        height: 120px;
  }
 
  .img3 {
    width: 170px;
    top: -60px;
    left: 4;
  }
 
  .plane {
    width: 160px;
    top: -90px;
    /* left: 65%; */
  }
 
  .text-content {
    width: 100%;
  }
 
  .text-content h1 {
    font-size: 23px;
  }
  .cta-btn {
   width: 320px;
  margin-left: -10px;
}
}
 
/* Small Mobile */
@media (max-width: 576px) {
  .images {
    height: 220px;
  }
 
  .img1 {
         width: 250px;
        top: -55px;
        z-index: 3;
        left: 110px;
  }
 
  .img2 {
    width: 160px;
  }
 
  .img3 {
            width: 230px;
  }
 
  .plane {
    width: 130px;
  }
}
 
/* BLOG-SECTION-START */
.latest-blog-section {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
}
 
.latest-blog-section .blog-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
}
 
.latest-blog-section .blog-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
 
.latest-blog-section .blog-card {
    position: relative;
    flex: 1 1 calc(25% - 15px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* height: 350px; */
}
 
.latest-blog-section .blog-card img {
    width: 100%;
    height: auto;
    object-fit: contain; /* show full image */
    display: block;
    background: #fff;
}
 
 
.latest-blog-section .blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: background 1.0s;
}
 
.latest-blog-section .blog-card .blog-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px;
    transition: bottom 0.6s;
}
 
.latest-blog-section .blog-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}
 
.latest-blog-section .blog-card:hover img {
    transform: scale(1.1);
}
 
.latest-blog-section .blog-card::after {
    background: none; /* remove any overlay */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.latest-blog-section .blog-card:hover {
    border: 3px solid #ffffff; /* white border on hover */
    box-sizing: border-box;    /* ensures border doesn’t change layout */
}

 
 
/* Responsive Adjustments */
 
/* Laptops / Large Tablets */
@media (max-width: 1280px) {
    .blog-card {
        flex: 1 1 calc(50% - 15px); /* 2 cards per row */
        /* height: 300px; */
    }
}
 
/* Tablets */
@media (max-width: 992px) {
    .blog-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .blog-card {
        flex: 1 1 calc(50% - 15px); /* 2 cards per row */
        /* height: 280px; */
    }
}
 
/* Mobile Phones */
@media (max-width: 768px) {
    .latest-blog-section .blog-row {
        justify-content: center;
        gap: 15px;
    }
 
    .latest-blog-section .blog-card {
        flex: 1 1 calc(50% - 15px); /* 2 cards per row */
        /* height: 200px; */
    }
    
    .latest-blog-section .blog-title {
    font-size: 35px!important;
    }
 
    .latest-blog-section {
        height: auto !important;
        padding: 40px 15px;
    }
}
 
/* Small Phones (e.g., iPhone SE) */
@media (max-width: 480px) {
    .blog-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    /* .blog-card {
        height: 200px;
    } */
}
 
.blog-img-container {
    position: relative;
    width: 100%;
}
 
.main-img {
    width: 100%;
    border-radius: 15px;
}
 
.plane-img {
    width: 120px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
 
.blog-content {
    margin-top: 15px;
    text-align: left;
    color: #000;
}
 
.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* ================================
   POLICY SECTION
================================ */
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.policy-section {
    background: #e8f2ff;
    padding: 40px 0;
}

.policy-container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* ===== HEADER ===== */
.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

.policy-header h2 {
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

/* ===== ARROWS ===== */
.policy-arrows {
    position: absolute;
    right: 0;
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 2px solid #000;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
}

.arrow-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

/* ===== SLIDER ===== */
.policy-slider-wrapper {
    overflow: hidden; /* important for sliding */
    margin-top: 20px;
}

.policy-cards {
    display: flex;
    gap: 18px;
    transition: transform 0.4s ease;
}

/* ===== CARD ===== */
.policy-card {
    position: relative;
    flex: 0 0 calc((100% - 54px) / 4); /* 4 cards per view */
    border-radius: 12px;
    overflow: hidden;               /* ensures rounded corners are respected */
    background: #fff;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover: zoom card shadow and scale image only */
.policy-card:hover {
    box-shadow: 0 4px 12px #0dcaf0;
    transform: none; /* remove scaling on card itself */
}

.policy-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom image only on hover */
.policy-card:hover img {
    transform: scale(1.05); /* zoom in image */
}

/* TITLE OVERLAY */
.policy-title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-card:hover .policy-title {
    opacity: 1;
}
/* Auto-hover effect */

.policy-card.auto-hover .policy-overlay,

.review-card.auto-hover .review-overlay {

    opacity: 1 !important;

    visibility: visible !important;

}

 


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .policy-card {
        flex: 0 0 calc((100% - 36px) / 3); /* 3 cards per view */
    }
}

@media (max-width: 768px) {
    .policy-arrows {
        right: 5px;
    }
    .policy-card {
        flex: 0 0 100%; /* 1 card per view */
    }
    .policy-header h2 {
        text-align:left !important;
         font-size: 35px!important;
    }
    
   
}
 
/* NEWS-LETTER-SECTION */
 
  .newsletter-box {
    background: linear-gradient(90deg, #1e82ff, #0164de);
    padding: 30px 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
       width: 98%;
    margin-left: 10px;
}
.newsletter-check{
color:#ffffff;
}
 
/* Airplane background */
.newsletter-plane {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.8;
    pointer-events: none;
}
 
.newsletter-content {
    width: 100%;
    z-index: 2;
}
 
.newsletter-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px;
}
 
.newsletter-content p {
    font-size: 15px;
    margin: 0 0 18px;
    opacity: 0.9;
}
 
/* Form */
.newsletter-form {
    display: flex;
    width: fit-content;
    max-width: 450px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
 
.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    font-size: 14px;
}
 
.newsletter-form button {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}
 
.newsletter-form button:hover {
    opacity: 0.8;
}
 
.newsletter-check {
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    opacity: 0.9;
}
 
.newsletter-check input {
    margin-top: 3px;
}
 
/* Responsive */
@media (max-width: 768px) {
    .newsletter-box {
        padding: 25px 20px;
        flex-direction: column;
        text-align: left;
        margin-left:4px;
    }
 
    .newsletter-plane {
        width: 100%;
        bottom: -20px;
        opacity: 0.15;
    }
 
    .newsletter-form {
      width: 300px !important;
        display: grid;
 
    }
    }

/* =========================================
             BLOG PAGE CSS (SAFE)
========================================= */
.blog-page .container-1440 {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    /*padding: 0 91px; */
}

/* ---------- Banner Section ---------- */
.blog-page .banner .container-1440 {
    position: relative;
}
.blog-page .banner-text {
    position: absolute;
    top: 90px;
    left: 80px;
    width: 579px;
    height: 190px;
    z-index: 6;
}
.blog-page .banner-text h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    margin: 0 0 10px 0;
}
.blog-page .banner-text p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}
.blog-page .overlay-image {
    position: absolute;
    top: 70px;
    left: 703px;
    width: 555px;
    height: 170px;
    z-index: 5;
}
.blog-page .overlay-image3 {
    position: absolute;
    top: 0px;
    left: 730px;
    width: 500px;
    height: 300px;
    border-radius: 20px;
    z-index: 4;
}

/* ---------- Blog Section ---------- */
.container-1280 { 
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-page .blog-section {
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    min-height: 400px;
    /*background-image: url('/images/blog page bg.webp');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ecf5fc54;
}

.blog-page .blog-section h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 40px;
    color: black;
}

.blog-page .blog-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.blog-page .blog-card {
    width: calc(50% - 10px);  /* two cards in a row */
    height: 380px;            /* adjust height as needed */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.blog-page .blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;  /* smooth zoom animation */
}

/* Hover effect: zoom image only */
.blog-page .blog-card:hover img {
    transform: scale(1.1);  /* zoom in image */
}

/* =========================================
                MOBILE VERSION
             (max-width: 768px)
========================================= */
@media (max-width: 768px) {
    .blog-page .banner {
        height: 550px;
    }
    .blog-page .banner-text {
        top: 100px;
        left: 20px;
        width: 300px;
    }
    .blog-page .banner-text h1 {
        font-size: 28px;
        margin-top: -80px;
    }
    .blog-page .banner-text p {
        font-size: 14px;
    }
    .blog-page .overlay-image {
        position: absolute;
        top: 240px;
        left: 5%;
        width: 90%;
        max-width: 411px;
        height: auto;
        z-index: 5;
    }
    .blog-page .overlay-image3 {
        position: absolute;
        top: 160px;
        left: 5%;
        width: 90%;
        max-width: 404px;
        height: auto;
        border-radius: 20px;
        z-index: 4;
    }
    .blog-page .blog-section {
        padding: 40px 15px;
        height: auto;
        background-position: top;
    }

    .blog-page .blog-section h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .blog-page .blog-card {
        width: 100%;
        height: auto;
    }
    .blog-page .overlay-img {
        width: 180px !important;
        height: 180px !important;
        top: 58%;
        left: 25%;
    }
    .blog-page .overlay-plane-img {
        width: 220px !important;
        height: 150px !important;
        top: 21%;
        left: 30%;
    }
}
/* =========================
   NEWSLETTER SECTION
========================= */
.blog-page .subscription-email {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.blog-page .newsletter-box {
    background: linear-gradient(90deg, #1e82ff, #0164de);
    padding: 30px 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1278px;
    width: 100%;
    margin: 0 auto;
}
.blog-page .newsletter-left h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}
.blog-page .newsletter-left p {
    font-size: 15px;
    opacity: 0.9;
}
.blog-page .newsletter-plane {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.8;
    pointer-events: none;
}
.blog-page .newsletter-form {
    display: flex;
    max-width: 450px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.blog-page .newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    font-size: 14px;
}
.blog-page .newsletter-form button {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.blog-page .newsletter-check {
    font-size: 13px;
    display: flex;
    gap: 6px;
    opacity: 0.9;
}
/* =========================
   NEWSLETTER MOBILE
========================= */
@media (max-width: 768px) {
    .blog-page .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        max-width: 376px;
        width: 93%;
    }
    .blog-page .newsletter-plane {
        opacity: 0.15;
        bottom: -20px;
        width: 100%;
    }
    .blog-page .newsletter-form {
        width: 100%;
        display: block;
    }
    .blog-page .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }
    .blog-page .newsletter-form button {
        width: 100%;
    }
}

/* =========================================
             BLOG Detail CSS (SAFE)
========================================= */
/* Container */
        .container-1440 {
            position: relative;
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }

        .banner-text {
            position: absolute;
            top: 90px;
            left: 80px;
            width: 579px;
            z-index: 6;
        }

        .banner-text h1 {
            font-family: "Poppins", sans-serif;
            font-weight: 700;
            font-size: 50px;
            margin-bottom: 10px;
        }

        .banner-text p {
            font-family: "Poppins", sans-serif;
            font-size: 18px;
            line-height: 1.5;
        }

        /* Right-side images */
        .overlay-image {
            position: absolute;
            top: 80px;
            right: 120px;
            width: 555px;
            height: 150px;
            z-index: 5;
        }

        .overlay-image3 {
            position: absolute;
            top: 0px;
            right: 150px;
            width: 500px;
            height: 300px;
            border-radius: 20px;
            z-index: 4;
        }

        /* Blog Content */
        .blog-card img {
            width: 100%;
            height: 400px;
            /*object-fit: cover;*/
        }

        .blog-details-content p {
            font-size: 16px;
            color: #000;
            line-height: 1.7;
        }

        /* Recent Posts */
        .recent-title a {
            text-decoration: none !important;
            color: #000;
        }

        .read-btn {
            color: #000;
            padding: 5px 0;
            font-size: 16px;
            font-weight: 600;
            display: inline-block;
        }



        .recent-post-item {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .recent-post-item:hover {
            background-color: #f1f7ff;
            /* light blue background on hover */
            transform: translateY(-3px);
            /* slight lift */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            /* subtle shadow */
        }

        .recent-post-item img {
            transition: transform 0.3s ease;
        }

        .recent-post-item:hover img {
            transform: scale(1.05);
            /* slight zoom on thumbnail */
        }

        .recent-post-item .recent-title a {
            color: #000;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .recent-post-item:hover .recent-title a {
            color: #0d6efd;
            /* bootstrap primary color on hover */
        }

        .recent-post-item .read-btn {
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .recent-post-item:hover .read-btn {
            color: #0d6efd;
            /* link color change on hover */
        }

        .position-sticky {

            position: sticky !important;
        }

        /* FAQ (optional) */
        .accordion {
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            background: transparent;
            border: none;
            padding: 10px 15px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
        }

        .panel {
            display: none;
            padding: 10px 15px;
            background: #f8f9fa;
        }

        .faq-answer {
            display: none;
            transition: all 0.3s ease;
        }

        .faq-question {
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            font-weight: 500;
        }

        .faq-question:hover {
            background-color: #e9ecef;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .banner {
                height: 450px;
            }

            .banner-text {
                top: 100px;
                left: 20px;
                width: 300px;
            }

            .banner-text h1 {
                font-size: 28px;
                margin-top: -176px;
            }

            .overlay-image,
            .overlay-image3 {
                right: 5%;
                width: 90%;
                height: auto;
            }

            .overlay-image3 {
                top: 50px;
            }

            .overlay-image {
                top: 140px;
            }
        }
/* =========================
   ABOUT PAGE CSS
========================= */
.about-page .container-1440 {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

    /* BANNER SECTION */
.about-page .banner {
    background-image: url("../images/about bg 1.png");
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.about-page .banner-text {
    position: absolute;
    top: 210px;
    left: 80px;
    width: 40%;
    z-index: 6;
}
.about-page .banner-text h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 10px;
}
.about-page .banner-text p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}
.about-page .overlay-image,
.about-page .overlay-image3 {
    position: absolute;
    height: auto;
    z-index: 5;
}
.about-page .overlay-image {
    top: 314px;
    left: 51%;
    width: 590px;
    height: 220px;
    z-index: 6;
}
.about-page .overlay-image3 {
    top: 125px;
    left: 55%;
    width: 562px;
    border-radius: 20px;
}

    /* ABOUT US SECTION */
.about-page .about-us {
    background-image: url("../images/about.png");
    width: 100%;
    height: 796px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #000;
    padding-top: 120px;
}
.about-page .about-us .container-1440 {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    position: relative;
}
.about-page .overlay-contect {
    position: absolute;
    top: -50px;
    left: 68%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 777px;
    height: 630px;
    z-index: 4;
}
.about-page .white-box {
    position: absolute;
    top: 20px;
    left: 25%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 570px;
    height: 500px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    border: none;
    z-index: 5;
}
.about-page .our-mission {
    width: 1440px;
    margin: 0 auto;
    padding: 40px 87px;
        margin-top: -110px;
        
}

    /* OFFER SECTION */
.about-page .offer-section {
    width: 100%;
    /*min-height: 750px;*/
    background: #eef3fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.about-page .we-are-offer {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 85px;
}
.about-page .offer-left {
    width: 40%;
}
.about-page .offer-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.about-page .offer-left p {
    font-size: 16px;
    line-height: 1.6;
}
.about-page .offer-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.about-page .offer-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #000;
}
.about-page .offer-card strong {
    font-size: 16px;
}
.about-page .offer-card.last {
    background: #1e1e1e;
    color: #fff;
}



.about-page .offer-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-page .offer-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #000;
    position: relative;
    z-index: 1;
    margin-top: -40px; /* Overlap amount */
    height: 100px;
}

/* Prevent the first card from shifting up */
.about-page .offer-card:first-child {
    margin-top: 0;
}

.about-page .offer-card.last {
    background: #1e1e1e;
    color: #fff;
    height: 70px;
}


    /* WHY SECTION */
.about-page .why-section {
    padding: 70px 0;
}
.about-page .why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}
.about-page .why-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align:center;
}
.about-page .why-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 60px;
}
.about-page .why-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.about-page .why-box {
    width: 33%;
}
.about-page .why-icon {
    width: 70px;
    display: block;
    margin: 0 auto 20px auto;
}
.about-page .why-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.about-page .why-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    width: 90%;
    margin: 0 auto;
}
/* =========================
   NEWSLETTER SECTION
========================= */
.about-page .subscription-email {
    width: 100%;
    display: flex;
    justify-content: center;
}
.about-page .newsletter-box {
    background: linear-gradient(90deg, #1e82ff, #0164de);
    padding: 30px 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1278px;
    width: 100%;
    margin: 0 auto;
}
.about-page .newsletter-left h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}
.about-page .newsletter-left p {
    font-size: 15px;
    opacity: 0.9;
}
.about-page .newsletter-plane {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.8;
    pointer-events: none;
}
.about-page .newsletter-form {
    display: flex;
    max-width: 450px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.about-page .newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    font-size: 14px;
}
.about-page .newsletter-form button {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.about-page .newsletter-check {
    font-size: 13px;
    display: flex;
    gap: 6px;
    opacity: 0.9;
}
/* =========================
   MEDIA QUERIES (MOBILE ≤768px)
========================= */
@media (max-width: 768px) {
    /* Banner */
    .about-page .banner {
        height: 420px;
    }
    .about-page .banner-text {
        top: 30px;
        left: 5%;
        width: 90%;
    }
    .about-page .banner-text h1 {
        font-size: 28px;
        margin-top: -20px;
    }
    .about-page .banner-text p {
        font-size: 16px;
    }
    .about-page .overlay-image {
        width: 233px; 
        max-width: 90%; 
        top: 262px; 
        left: 35%;
        transform: translateX(-50%); 
        height: 100px; 
    }
    .about-page .overlay-image3 {
        width: 340px; 
        max-width: 90%; 
        top: 140px; 
        left: 50%;
        transform: translateX(-50%);
    }

    /* About Us */
    .about-page .about-us {
        background-image: none;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .about-page .overlay-contect {
        top: -199px; 
        left: 50%; 
        transform: translateX(-50%); 
        width: 90%; 
        max-width: 377px; 
        height: auto; 
    }
    .about-page .white-box {
        position: relative; 
        top: auto;
        left: auto;
        transform: none;
        width: 95%;
        max-width: 500px;
        margin: 200px auto 20px auto;
        border-radius: 22px;
        border: 1px solid gray;
        height: auto;
        margin: 120px auto 20px auto;
    }
    .about-page .our-mission {
        width: 95%;
        max-width: 600px;
        margin: -70px 0px 0px 11px;
        padding: 20px;
        text-align: left;
       margin-top: 240px;
    }

    /* Offer Section */
    .about-page .offer-section {
        padding: 40px 20px;
    }
    .about-page .we-are-offer {
        display: block;
        padding: 0 20px;
    }
    .about-page .offer-left {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
    .about-page .offer-left h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .about-page .offer-left p {
        font-size: 14px;
        line-height: 1.5;
    }
    .about-page .offer-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-page .offer-card {
        width: 104%;
        max-width: 400px;
        padding: 15px;
        border-radius: 10px;
    }
    .about-page .offer-card strong {
        font-size: 14px;
    }

    /* Why Section */
    .about-page .why-section {
        padding: 50px 20px;
    }
    .about-page .why-container {
        max-width: 100%;
        padding: 0 15px;
    }
    .about-page .why-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .about-page .why-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .about-page .why-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .about-page .why-box {
        width: 100%;
        max-width: 400px;
        text-align: center;
        background-color: aliceblue;
        border-radius: 20px;
        height: 235px;
    }
    .about-page .why-icon {
        width: 60px;
        margin-top: -10px;
        margin-bottom: 15px;
    }
    .about-page .why-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about-page .why-box p {
        font-size: 14px;
    }

    /* Newsletter */
    .about-page .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        max-width: 376px;
        width: 93%;
    }
    .about-page .newsletter-plane {
        opacity: 0.15;
        bottom: -20px;
        width: 100%;
    }
    .about-page .newsletter-form {
        display: block;
        width: 100%;
    }
    .about-page .newsletter-form input,
    .about-page .newsletter-form button {
        width: 100%;
        margin-bottom: 0px;
    }
}



/* =========================================
   CONTACT PAGE CSS (Optimized)
========================================= */
.contact-page .container-1440 {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

/* ---------- BANNER SECTION ---------- */
.contact-page .banner {
    background-image: url("../images/image 2311.png");
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 120px;
    color: #000;
    overflow: hidden;
}
.contact-page .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}
.contact-page .banner > * {
    position: relative;
    z-index: 2;
}
.contact-page .banner-text {
    position: absolute;
    top: 10px;
    left: 80px;
    width: 579px;
}
.contact-page .banner-text h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
}
.contact-page .banner-text p {
    font-size: 18px;
    line-height: 1.5;
}
.contact-page .overlay-image,
.contact-page .overlay-image3 {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 620px;
}
.contact-page .overlay-image {
    top: 123px;
    left: 763px;
    z-index: 5;
    width:450px;
    height:245px;
}
.contact-page .overlay-image3 {
    top: -5px;
    left: 796px;
    width:533px;
    height:357px;
    border-radius: 20px;
}
.contact-page .after-banner-image {
    text-align: center;
    margin-top: 0;
}
.contact-page .after-banner-image img {
    width: 100%;
    height: auto;
}
/* ---------- CONTACT SECTION ---------- */
.contact-page .contact-section {
    width: 100%;
    min-height: 750px;
    background-color: #58a6ff47;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}
.contact-page .inner-contact {
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-page .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contact-page .contact-form {
    width: 55%;
}
.contact-page .contact-form h2 {
    font-size: 32px;
}
.contact-page .contact-form .form-description {
    font-size: 16px;
    margin-bottom: 25px;
}
.contact-page .contact-form form input,
.contact-page .contact-form form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 10px 0;
    margin-bottom: 20px;
    background: transparent;
}
.contact-page .contact-form form textarea {
    height: 120px;
    resize: none;
}
.contact-page .contact-form form button {
    background: #006dff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
}
.contact-page .contact-image {
    width: 40%;
    position: relative;
    text-align: center;
}
.contact-page .contact-image .base-image {
    width: 100%;
    max-width: 496px;
    border-radius: 15px;
}
.contact-page .contact-image .overlay-plane {
    position: absolute;
    top: 284px;
    left: 61px;
    width: 358px;
    height: auto;
}

/* ---------- NEWSLETTER SECTION ---------- */
.contact-page .subscription-email {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.contact-page .newsletter-box {
    background: linear-gradient(90deg, #1e82ff, #0164de);
    padding: 30px 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1278px;
    width: 100%;
    margin: 0 auto;
}
.contact-page .newsletter-left h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-page .newsletter-left p {
    font-size: 15px;
    opacity: 0.9;
}
.contact-page .newsletter-plane {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.8;
    pointer-events: none;
}
.contact-page .newsletter-form {
    display: flex;
    max-width: 450px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.contact-page .newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    outline: none;
    font-size: 14px;
}
.contact-page .newsletter-form button {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.contact-page .newsletter-check {
    font-size: 13px;
    display: flex;
    gap: 6px;
    opacity: 0.9;
}

/* =========================================
   RESPONSIVE: TABLET (≤992px)
========================================= */
@media (max-width: 992px) {
    .contact-page .banner {
        height: auto;
        padding-bottom: 80px;
    }
    .contact-page .banner-text {
        width: 80%;
        left: 40px;
        top: 150px;
    }
    .contact-page .overlay-image,
    .contact-page .overlay-image3 {
        right: 10px;
        left: auto;
        max-width: 60%;
    }
    .contact-page .contact-wrapper {
        flex-direction: column-reverse;
    }
    .contact-page .contact-form,
    .contact-page .contact-image {
        width: 100%;
    }
}

/* =========================================
   RESPONSIVE: MOBILE (≤768px)
========================================= */
@media (max-width: 768px) {
    /* Banner */
    .contact-page .banner {
        height: 520px;
    }
    .contact-page .banner-text {
        top: -55px;
        left: 20px;
        width: 300px;
    }
    .contact-page .banner-text h1 {
        margin-top: -35px;
        font-size: 28px;
    }
    .contact-page .overlay-image {
             position: absolute;
        top: 212px;
        left: 37%;
        transform: translateX(-50%);
        max-width: 320px;
        width: 100%;
        height: 124px;
        display: none;
    }
    .contact-page .overlay-image3 {
        max-width: 100%;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 32px;
        display: none;
    }
    .contact-page .after-banner-image img {
        height: 173px;
        object-fit: cover;
    }

    /* Contact section */
    .contact-page .contact-wrapper {
        flex-direction: column;
    }
    .contact-page .contact-image {
        order: -1;
        margin-bottom: 20px;
        width: 100%;
    }
    .contact-page .contact-image .overlay-plane {
        width: 70%;
        left: 50% !important;
        transform: translateX(-50%);
        top: 210px !important;
        bottom: auto;
    }
    .contact-page .inner-contact {
        padding: 30px 20px;
    }

    /* Newsletter */
    .contact-page .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 20px;
        max-width: 376px;
        width: 93%;
    }
    .contact-page .newsletter-plane {
        opacity: 0.15;
        bottom: -20px;
        width: 100%;
    }
    .contact-page .newsletter-form {
        width: 100%;
        display: block;
    }
    .contact-page .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-page .newsletter-form button {
        width: 100%;
    }
}




/* FLATPICKER CSS */
    .flatpickr-calendar {
        background-color: #f0f8ff !important;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .flatpickr-day {
        font-family: 'Arial', sans-serif;
        font-size: 14px;
        border-radius: 6px;
        transition: all 0.2s ease-in-out;
    }
    .flatpickr-day.selected {
        background: #ffa500 !important;
        color: white !important;
        font-weight: bold;
    }
    .flatpickr-day.today {
        border: 2px solid #00bcd4;
    }
    .flatpickr-day.disabled,
    .flatpickr-day.prevMonthDay.disabled,
    .flatpickr-day.nextMonthDay.disabled,
    .flatpickr-day:not(.prevMonthDay):not(.nextMonthDay).disabled {
        background:  #fdd !important;
        color: #999 !important;
        font-weight: 500 !important;
        opacity: 1 !important;
        pointer-events: none !important;
        cursor: not-allowed !important;
    }

/* DROPDOWN CSS */

    .form-group {
        position: relative;
    }
    .custom-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        /*border: 1px solid #ccc;*/
        border-top: none;
        max-height: 250px;
        overflow-y: auto;
        list-style: none;
        margin: 0;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        z-index: 99999;
    }
    .custom-dropdown li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 12px;
        cursor: pointer;
        transition: background 0.2s ease;
        background: #fff;
    }  
    .custom-dropdown li:hover {
        background-color: #f5f5f5;
    }
    .custom-dropdown .airport-name {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
    }
    .custom-dropdown .airport-icon {
        font-size: 18px;
    }
    .custom-dropdown .airport-flag {
        width: 24px;
        height: 16px;
        object-fit: contain;
        border-radius: 2px;
        margin-left: auto;
    }
    @media (max-width: 768px) {
        .form-group {
            position: relative;
            z-index: 100;
        }
        .custom-dropdown {
            z-index: 99999;
            width:250px;
            left:-155px;
            
        }
        .form-group.dropdown-open {
            z-index: 99999 !important;
        }
    } 

/* travel and class popup css */
    /* --- Popup Container --- */
#traveler-popup {
    display: none;
    position: absolute;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 16px;
    z-index: 10000;
    width: 320px;
    max-width: 90%;
    font-family: 'Poppins', Arial, sans-serif;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Traveler Row --- */
.traveler-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #eee;
}

.traveler-row:last-of-type {
    border-bottom: none;
}

.traveler-row label {
    flex: 1;
    font-weight: 600;
    font-size: 14px;
}

/* --- Traveler Controls --- */
.traveler-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.traveler-controls span {
    min-width: 24px;
    text-align: center;
    font-weight: 500;
}

.traveler-controls button {
    padding: 6px 12px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    color: #333;
    transition: all 0.25s ease;
}

.traveler-controls button:hover {
    background-color: #e6edff;
    color: #4d94ff;
    box-shadow: 0 2px 6px rgba(77, 133, 255, 0.3);
}

.traveler-controls button:active {
    background-color: #4da0ff;
    color: white;
    border-color: #1a63d1;
}

/* --- Travel Class Grid --- */
.travel-class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

/* --- Travel Class Option --- */
.travel-class-option {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #f9f9f9;
    border: 2px solid #dddddd;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    position: relative;
    padding: 10px;
    user-select: none;
}

/* Hide default radio button */
.travel-class-option input[type="radio"] {
    position: absolute; 
    opacity: 0;
    pointer-events: none;
}

/* Hover & Selected States */
.travel-class-option:hover {
    background-color: #c0ddff;
    border-color: #99daff;
}

/* Selected travel class */
.travel-class-option input[type="radio"]:checked + span,
.travel-class-option input[type="radio"]:checked + label,
.travel-class-option input[type="radio"]:checked ~ span {
    background-color: #0084ff;
    color: #fff;
    border-color: #0070cc;
}

/* --- Buttons --- */
#apply-travelers,
#cancel-travelers {
    padding: 10px 22px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#apply-travelers {
    background-color: #0099ff;
    color: #fff;
}

#apply-travelers:hover {
    background-color: #0077e6;
    box-shadow: 0 4px 12px rgba(0, 110, 255, 0.4);
}

#cancel-travelers {
    background-color: #eee;
    color: #333;
    margin-left: 10px;
}

#cancel-travelers:hover {
    background-color: #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- Input Styles --- */
input::placeholder {
    color: #999;
    opacity: 1;
}

input:not(:placeholder-shown) {
    color: #000;
    font-weight: 600;
}

/* --- Responsive Styles --- */
@media (max-width: 480px) {
    #traveler-popup {
        width: 70% !important;
        padding: 15px !important;
        left: 55px !important;
    }

    .traveler-row label {
        font-size: 13px;
    }

    .traveler-controls button {
        padding: 4px 10px;
        font-size: 14px;
    }

    .travel-class-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    #apply-travelers,
    #cancel-travelers {
        width: 100%;
        margin: 0px;
    }

    .traveler-controls span {
        min-width: 20px;
    }
}


/* Breadcrumb css */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px !important;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #000000d9;
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 8px;
    width: fit-content;
}

.breadcrumb a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.breadcrumb a:hover {
    color: #ffe27a;
    transform: translateY(-1px);
}

.breadcrumb .separator {
    color: #ffebba;
    font-weight: 700;
    font-size: 20px;
    opacity: 0.9;
}

.breadcrumb .current {
    color: #ffeab7;
    font-weight: 600;
}