   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background:  #fff;
      color: #001f3f;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1px 5px;
      background:  rgb(242, 243, 244);
      height: 90px;
    }

    header img {
      height: 200px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 40px;
    }

    nav ul li a {
      text-decoration: none;
      color: #001f5f;
      font-weight: bolder;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #1E90FF;
    }

    .uan a {
      font-size: 18px;
      font-weight: bold;
      color: #001f5f;
      font-style: initial;
      padding-right: 25px;
    }

/* hero section */

   .hero {
  position: relative;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 1;
  /* Animation */
  animation: zoomBackground 15s ease-in infinite alternate;
}

/* Keyframes for slow zoom effect */ 
@keyframes zoomBackground {
  from {
    background-size: 100%;
  }
  to {
    background-size: 120%;
  }
}

    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 10, 10, 0.433);
      z-index: -1;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: white;
      z-index: 2;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #dcdcdc;
      z-index: 2;
    }

    .hero button {
      padding: 12px 30px;
      font-size: 1rem;
      background: linear-gradient(90deg, #007bff, #00c6ff);
      border: none;
      border-radius: 5px;
      color: white;
      cursor: pointer;
      transition: background 0.5s;
      z-index: 2;
    }

    .hero button:hover {
     background: linear-gradient(90deg, #00c6ff, #007bff);
    }
    .fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* booking container input css for airports */
.flight-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.autocomplete {
  position: relative;
  flex: 1;
}

.autocomplete input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.autocomplete input:focus {
  border-color: #1E90FF;
  box-shadow: 0 0 6px rgba(30, 144, 255, 0.4);
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 180px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  display: none;
}

.suggestions li {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestions li:hover {
  background: #f0f8ff;
}


    .booking-container {
      margin-top: 40px;
      background:  linear-gradient(100deg, #cfe1de, #0d2955, #000000);
      padding: 20px;
      border-radius: 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      width: 80%;
      max-width: 1000px;
    }
    
    .tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .tab {
      padding: 10px 25px;
      cursor: pointer;
      font-weight: bold;
      background: transparent;
      border: 2px solid #1E90FF;
      color: #1E90FF;
      border-radius: 25px;
      margin: 0 10px;
      transition: all 0.3s;
    }

    .tab.active, .tab:hover {
      background: linear-gradient(90deg, #007bff, #00c6ff);
      color: white;
    }

    .form-section {
      display: none;
    }

    .form-section.active {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .form-section input,
    .form-section select {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
      flex: 1 1 200px;
    }

    .form-section button {
      padding: 10px 20px;
      background: linear-gradient(90deg, #007bff, #00c6ff);
      border: none;
      border-radius: 8px;
      color: white;
      font-weight: bold;
      cursor: pointer;
    }

    .form-section button:hover {
       background: linear-gradient(90deg, #00c6ff, #007bff);
    }
    
/* css for send booking section */
 /* Popup form default hidden */
.popup-form {
  display: none; /* sirf ye hi rahega */
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center; 
  justify-content: center;
  z-index: 9999;
}

/* Popup box styling */
.popup-box {
  background: white; 
  padding: 20px; 
  border-radius: 10px; 
  width: 300px;
  animation: fadeIn 0.4s;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.3);
}

.popup-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

.popup-box input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.popup-box button {
  width: 100%;
  padding: 10px;
 background: linear-gradient(90deg, #007bff, #00c6ff);
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box button:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
/* close pop up */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}




    /* Services Section */
    .services {
      background:  rgb(242, 243, 244);
      color: #fff;
      padding: 80px 50px;
      text-align: center;
    }

    .services h2 {
      font-size: 2.5rem;
      margin-bottom: 50px;
      color: #012f5f;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .service-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      color: white;
      height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      background-size: cover;
      background-position: center;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .service-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.408);
      z-index: 0;
    }

    .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 18px 28px rgba(30, 144, 255, 0.5);    }

    .service-card h3,
    .service-card p,
    .service-card button {
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 1rem;
      margin-bottom: 15px;
    }

    .service-card button {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      background: linear-gradient(90deg, #007bff, #00c6ff);
      color: white;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }

    .service-card button:hover {
     background: linear-gradient(90deg, #00c6ff, #007bff);
    }

    /* WHO WE ARE SECTION */

 .who-we-are {
  background: linear-gradient(135deg, #f9f9f9, #eef3f8);
  padding: 100px 8%;
  font-family: 'Poppins', sans-serif;
  color: #222;
  overflow: hidden;
}

.who-container {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.who-image {
  position: relative;
  flex: 0.8;
  min-width: 320px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.who-image img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  transition: transform 1s ease;
}

.who-image:hover img {
  transform: scale(1.05);
}


.who-content {
  flex: 1;
  min-width: 320px;
  z-index: 2;
}

.who-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 20px;
}

.who-content p {
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.who-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.who-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-about {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: linear-gradient(90deg, #00c6ff, #007bff);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}
/* ✨ Scroll Animation (Updated with directional slide) */
.scroll-animate-left,
.scroll-animate-right {
  opacity: 0;
  transition: all 1.2s ease-out;
  will-change: transform, opacity;
}

/* Slide from left (for image) */
.scroll-animate-left {
  transform: translateX(-80px);
}

/* Slide from right (for text content) */
.scroll-animate-right {
  transform: translateX(80px);
}

/* Make visible when section enters viewport */
.scroll-animate-left.visible,
.scroll-animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-image {
    order: -1;
    width: 100%;
  }

  .who-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .who-we-are {
    padding: 60px 5%;
  }

  .who-content p {
    font-size: 0.95rem;
  }

  .btn-about {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/* why chose us */
.why-choose-us {
  background: #d7dde3;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #012f5f;
  position: relative;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.feature {
  background: #001f3f;
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
}

.feature:hover {
  background: rgba(15, 42, 75, 0.889);
}

.icon-box {
  font-size: 40px;
  margin-bottom: 20px;
  color: #3b82f6; /* luxury blue */
}

.feature h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}


.feature p {
  font-size: 16px;
  color: #a7a7a7;
  line-height: 1.6;
}
/* tours section css */
/* Tours Section */
    section {
      padding: 60px 10%;
      text-align: center;
    }
    section h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #012f5f;
    }

    /* Carousel */
    .carousel {
      overflow: hidden;
      position: relative;
    }
    .carousel-track {
      display: flex;
      transition: transform 0.8s ease-in-out;
    }
    .tour-card {
      min-width: calc(33.33% - 20px);
      margin: 0 10px;
      background: #012f5f;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.4);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .tour-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .tour-card h3 {
      padding: 20px;
      font-size: 1.2rem;
      color: #fff;
    }
    .tour-card a{
      text-decoration: none;
    }
    .tour-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 25px rgba(30, 144, 255, 0.4);
    }
    .tour-card:hover img {
      transform: scale(1.05);
    }

    /* airlines section css */
    /* Airlines Section */
/* Airlines Section */
.airlines-section {
  background-color: #fff;
  color: white;
  border-top: solid 1px #001f5f;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.airlines-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #001f3f;
}

.airlines-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #012f5f;
}

.airlines-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-bottom: 40px;
}

.airlines-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
}

.airlines-track img {
  height: 45px;
  transition: transform 0.3s ease;
}

.airlines-track img:hover {
  transform: scale(1.1);
}

.btn-airlines {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-airlines:hover {
  background: linear-gradient(90deg, #00c6ff, #007bff);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .airlines-track img {
    height: 40px;
    gap: 30px;
  }

  .airlines-section h2 {
    font-size: 1.5rem;
  }
}

/* travel experive css section */
.unforgettable-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-start; /* 👈 top alignment */
  justify-content: flex-start;
  padding: 80px 3%;
  font-family: 'Poppins', sans-serif;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* Text Content */
.content {
  max-width: 600px;
  z-index: 2;
}

.content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #eaeaea;
}

/* Circle Image */
.circle-image {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.circle-image:hover {
  transform: scale(1.1);
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fade-in animation (scroll triggered) */
.fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .unforgettable-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 5%;
    height: auto;
  }

  .circle-image {
    position: static;
    margin-top: 40px;
  }

  .content h2 {
    font-size: 2.2rem;
  }

  .content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .unforgettable-section {
    padding: 60px 5%;
  }

  .content h2 {
    font-size: 1.8rem;
  }

  .circle-image {
    width: 110px;
    height: 110px;
  }
}

/* customer support css  */
/* css Section */
.customer-support {
  background: #f8faff; /* light luxury background */
  padding: 60px 20px;
  text-align: center;
}

.choose-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #001f3f;
  position: relative;
}

.choose-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #8f8f8f;
  margin: 12px auto 0;
  border-radius: 3px;
}

.choose-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.choose-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  flex: 1 1 300px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.choose-box img {
  max-width: 250px;
  margin-bottom: 20px;
}

.choose-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #001f3f;
}

.choose-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .choose-container {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 40px 15px;
  }

  .choose-box {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .choose-box img {
    max-width: 150px;
  }
}

/* infinite jounrey stats css   */
.ij-stats-section {
    width: 100%;
    padding: 90px 20px;
    display: flex;
    justify-content: center;
}

.ij-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 40px;
    max-width: 1200px;
}

/* Up/Down Offset */
.ij-stat-item.up { margin-top: -40px; }
.ij-stat-item.down { margin-top: 40px; }

/* Circle Container */
.ij-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-clip: padding-box;
    border: 4px solid transparent;
    box-shadow: 0 0 25px rgba(0,0,0,0.12);
    overflow: visible;
}

/* Rotating Glow Border */
.rotate::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    z-index: -1;
    animation: rotateGlow 7s linear infinite;
    filter: blur(10px);
    opacity: 0.9;
}

.blue .rotate::before {
    background: linear-gradient(135deg, #00c3ff, #006eff);
}

.grey .rotate::before {
    background: linear-gradient(135deg, #c5c5c5, #6e6e6e);
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Numbers */
.ij-number {
    font-size: 46px;
    font-weight: 700;
    color: #004e7a;
}

.grey .ij-number { color: #555; }

.ij-circle p {
    margin-top: 10px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}

/* Glowing Floating Dot */
.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    right: -12px;
    top: -12px;
    animation: floatDot 3s infinite ease-in-out;
}

.blue .dot {
    background: #00c3ff;
    box-shadow: 0 0 12px #00c3ff;
}

.grey .dot {
    background: #cdcdcd;
    box-shadow: 0 0 12px #8d8d8d;
}

@keyframes floatDot {
    0% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
    100% { transform: translateY(0px); }
}



/* ---------------------------------------- */
/*              RESPONSIVE CSS              */
/* ---------------------------------------- */


/* 📱 Tablets 1024px */
@media (max-width: 1024px) {
    .ij-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    .ij-stat-item.up,
    .ij-stat-item.down {
        margin-top: 0;
    }
}

/* 📱 Mobile Large 768px */
@media (max-width: 768px) {
    .ij-circle {
        width: 200px;
        height: 200px;
    }
    .ij-number {
        font-size: 40px;
    }
    .ij-circle p {
        font-size: 15px;
    }
}

/* 📱 Mobile Small 480px */
@media (max-width: 480px) {
    .ij-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ij-circle {
        width: 180px;
        height: 180px;
    }

    .ij-number {
        font-size: 34px;
    }

    .ij-circle p {
        font-size: 14px;
    }

    .dot {
        width: 16px;
        height: 16px;
        right: -8px;
        top: -8px;
    }
}

/* 📱 Extra Small Devices 360px */
@media (max-width: 360px) {
    .ij-circle {
        width: 160px;
        height: 160px;
    }
    .ij-number {
        font-size: 30px;
    }
}

/* footer */

.footer {
  background: #001f3f;
  color: #fff;
  padding: 50px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

/* Top Bar */
.footer-top {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 16px;
}

.footer-top .contact-item {
  color: #1E90FF;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-item a{
  text-decoration: none;
  color: #1E90FF;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons a {
  color: #1E90FF;
  font-size: 18px;
  margin: 0 8px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* Footer Grid */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-top: 40px;
  padding-bottom: 30px;
}

.footer-about .logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #1E90FF;
}

.footer-about p {
  margin: 10px 0;
  line-height: 1.6;
  color: #ddd;
}

.footer-links h3,
.footer-newsletter h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #1E90FF;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1E90FF;
}

/* Newsletter */
.footer-newsletter input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin: 12px 0;
  outline: none;
}

.subscribe-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-btn:hover {
  background: #0d6efd;
}

/* Scroll Animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }

.footer-copyright{
  padding-top: 20px;
  border-top: solid 1px #0a74da;
}
.copyright{
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #012f5f;
}
/* wattsapp float icon */
/* WhatsApp Floating Button */
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPop 3s infinite ease-in-out;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.5);
  background-color: #20b954;
}

/* Popup animation (gentle pop every 3 seconds) */
@keyframes whatsappPop {
  0%, 100% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.15);
  }
  10% {
    transform: scale(1);
  }
}

/* Text beside WhatsApp icon */
.whatsapp-text {
  position: absolute;
  right: 75px;
  background-color: white;
  color: #25D366;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

/* Show text on hover */
.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

/* contact us  page css */
/* ===========================
   CONTACT PAGE CSS
=========================== */

/* Hero Section */
.contact-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 2s ease;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 10%;
  background: rgb(242, 243, 244);
  color: #001f5f;
}

/* Left Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1E90FF;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info i {
  color: #1E90FF;
  margin-right: 10px;
}

/* Right Form */
.contact-form {
  background:linear-gradient(100deg, #cfe1de, #0d2955, #020325);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1E90FF;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #1E90FF;
}

.contact-form button {
  background: linear-gradient(90deg, #00c6ff, #007bff);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.5s ease;
}

.contact-form button:hover {
  background: white;
  color: #001f3f;
}

/* Map Section */
.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 40px 5%;
  }
}
/* about us page css section */
/* ===============================
   ABOUT US PAGE STYLING
   =============================== */

/* Hero Section */
.about-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 31, 63, 0.7);
  z-index: -1;
}
.about-hero h2{
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* About Content Section */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  background: #f9f9f9;
  color: #001f3f;
  gap: 50px;
}
.about-content .about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}
.about-content .about-image img:hover {
  transform: scale(1.05);
}
.about-content .about-text {
  flex: 1;
}
.about-content .about-text h2 {
  font-size: 2.2rem;
  color: #001f3f;
  margin-bottom: 20px;
}
.about-content .about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}
.about-content .btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: #1E90FF;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
.about-content .btn-primary:hover {
  background: #fff;
  color: #1E90FF;
  border: 2px solid #1E90FF;
}

/* in about Why Us Section */
.why-us {
  padding: 80px 10%;
  background:  rgb(242, 243, 244);
  color:#001f3f;
  text-align: center;
}
.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-box {
  background: #001f3f;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.4s ease, background 0.4s ease;
}
.feature-box:hover {
  transform: translateY(-10px);
  background: rgba(15, 42, 75, 0.889);
}
.feature-box i {
  font-size: 2rem;
  color: #1E90FF;
  margin-bottom: 20px;
}
.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
}
.feature-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #a7a7a7;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-content .about-image img {
    max-width: 100%;
  }
  .about-content .about-text {
    margin-top: 30px;
  }
}
/* consultancy page css */
    .visa-hero,
    .consultancy-hero{
      background: url('https://images.unsplash.com/photo-1521295121783-8a321d551ad2') no-repeat center center/cover;
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }
    .consultancy-hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 31, 63, 0.7);
      z-index: -1;
    }
    .visa-hero,
    .consultancy-hero h2 {
      font-size: 3rem;
      z-index: 1;
      position: relative;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 3px;
    }

    /* Consultancy Grid Section */
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
      gap: 40px;
    }
    .card {
      background: #012f5f;
      border-radius: 15px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0,0,0,0.5);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .card h3 {
      padding: 20px;
      font-size: 1.4rem;
      color: #fff;
    }
    .card:hover {
      transform: translateY(-12px);
      box-shadow: 0 18px 28px rgba(30, 144, 255, 0.5);
    }
    .card:hover img {
      transform: scale(1.08);
    }

    /* Responsive */
    @media(max-width: 800px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(max-width: 600px) {
      .grid {
        grid-template-columns: 1fr;
      }
    }
 
/* ===========================
 toggle menu for navbar
=========================== */
/* toogle manu for navbar */
/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color:#001f3f;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1001;
}

/* Navbar default */


/* Mobile Styles */
@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }
  .hero h1{
  font-size: 2rem;
  }
  nav {
    position:fixed;
    top: 90px;
    left: -100%;
    height: calc(100vh - 90px);
    background: rgba(0, 15, 46, 0.95);
    backdrop-filter: blur(90px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 70%;
    z-index: 1000;
    transition: left 0.3s ease;
    margin-top: 10px;

  }
  nav.active{
    left: 0;
  }
  nav ul {
  flex-direction: column;
  align-items: center;
  
}
nav ul li{
  margin-bottom: 25px;
  padding-top: 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #1E90FF;
}
  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 50px;
  }

  .uan {
    margin-top: 15px;
    font-size: 1rem;
    text-align: center;
    margin-right: 30px;
  }
}
/* all website media qurires */
/* ===========================
   RESPONSIVE MEDIA QUERIES
=========================== */

/* Large Tablets and Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }
  header {
    display: flex;
    padding: 1px 1px;
  }
  .hero{
    height: auto;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-top: 30px;
  }

  .hero p {
    font-size: 1.5rem;
  }

  .booking-container {
    width: 95%;
  }
}

@media (min-width: 800px) and (max-width: 900px) {
   nav ul{
    gap: 20px;
    font-size: 12.4px;
   }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
   html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }

  header {
    flex-direction: row;
    height: 100px;
    text-align: center;
    padding: 20px;
  }

  header img {
    height: 120px;
    margin-bottom: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    height: auto;
    padding: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .services h2,
  .airlines-section h2,
  .who-content h2,
  .section-title {
    font-size: 2rem;
  }

  .service-card {
    height: 250px;
  }

  .tour-card {
    min-width: calc(50% - 20px);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  /* Global fix for blank space on mobile */
  html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 1px 10px;
    overflow-x: hidden;
    height: 100px; 
  }
  .uan a {
      font-size: 15px;
      font-weight: bold;
      color: #001f5f;
      font-style: initial;
      padding-right: 25px;
      text-decoration: none;
    }

  .hero {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
  }

  /* Keyframes for slow zoom effect */
  @keyframes zoomBackground {
    from {
      background-size: 150%;
    }
    to {
      background-size: 200%;
    }
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 20px;
  }

  .hero p {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .hero button {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
  }
  

  .booking-container {
    background: transparent;
    backdrop-filter: blur(1px);
    padding: 15px;
    width: 100%;
    max-width: 360px;
  }
   


  .tab {
    padding: 8px 15px;
    margin: 5px;
    font-size: 0.9rem;
  }

  .form-section input,
  .form-section select {
    flex: 1 1 100%;
  }

  .service-card {
    height: 220px;
    padding: 15px;
  }

  .who-content h2 {
    font-size: 1.8rem;
  }

  .who-content p {
    font-size: 0.95rem;
  }

  .tour-card {
    min-width: 100%;
  }

  .airlines-logos {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }

  .airlines-logos img {
    max-width: 70px;
  }

  .footer-top {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  /* Remove horizontal scroll on all sections */
  section, header, footer, .container {
    max-width: 100%;
    overflow-x: hidden;
  }
}
/* Mobile adjustments */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 40px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-text {
    font-size: 10px;
    right: 65px;
  }
}