
* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: "Libre Baskerville", serif;
      background-color: #f0f4f8;
      color: #222;
      line-height: 1.6;
    }
    
    body {
  background-color: black;
}
    
    /* Navbar styles */
nav {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav .nav-container {
  width: 90%;
  max-width: 1200px;
  background: rgba(30, 30, 30, 0.2);
  border-radius: 30px;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  box-shadow: none;
  color: gold;
}

nav.scrolled .nav-container {
  background: rgba(30, 30, 30, 0.8);
  box-shadow: 0 8px 32px 0 rgba(255, 215, 0, 0.25);
  color: gold;
}

nav .logo {
  color: gold;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

/* Menu list styles */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: gold;
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover,nav ul li a:focus {
  background: rgba(255, 215, 0, 0.3);
  color: #fff;
  outline: none;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
}

/* Hamburger icon (menu toggle button) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: gold;
  user-select: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 5%;
    width: 90%;
    background: rgba(30, 30, 30, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  }

  nav ul.active {
    display: flex;
  }
}

    /* Header styles */
    header {
      height: 80vh;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 0 1rem;
      padding-top: 5rem; /* To offset fixed nav height */
    }
    header video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }
    header h1 {
      font-size: 4rem;
      font-weight: 700;
      text-shadow: 2px 2px 9px rgba(0,0,0,0.7);
      margin-bottom: 0.3rem;
    }
    header p {
      font-size: 1.5rem;
      font-weight: 300;
      max-width: 600px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    }
    /* Responsive */
    @media (max-width: 768px) {
      nav .nav-container {
        padding: 0.75rem 1rem;
      }
      nav ul {
        gap: 1rem;
      }
      header h1 {
        font-size: 2.7rem;
      }
      header p {
        font-size: 1.2rem;
      }
    }
    @media (max-width: 480px) {
      nav {
        padding: 0;
      }
      nav .nav-container {
        width: 95%;
        padding: 0.5rem 1rem;
      }
      nav ul {
        display: none; /* For simplicity, hide nav links on small screens */
      }
      nav .logo {
        font-size: 1.5rem;
      }
      header h1 {
        font-size: 2rem;
      }
      header p {
        font-size: 1rem;
      }
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f8f8f8;
      color: #1d1d1f;
    }

    .container {
      display: flex;
      padding: 40px;
      max-width: 1200px;
      margin: auto;
      gap: 40px;
      flex-wrap: wrap;
    }

    .left {
      flex: 1 1 300px;
    }

    .left h1 {
      font-size: 32px;
      margin-bottom: 16px;
      color: #003c27;
    }

    .left p {
      font-size: 16px;
      line-height: 1.6;
    }

    .left a {
      color: #1a4d3f;
      text-decoration: underline;
    }

    .left button {
      margin-top: 20px;
      padding: 12px 20px;
      font-size: 16px;
      background-color: white;
      border: 2px solid #003c27;
      color: #003c27;
      cursor: pointer;
    }

    .badges {
      margin-top: 30px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .badges img {
      height: 50px;
    }

    .grid {
      flex: 2 1 600px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }

    .grid-item {
      position: relative;
      color: white;
      font-size: 20px;
      font-weight: bold;
      height: 180px;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      background-size: cover;
      background-position: center;
      border-radius: 8px;
    }

    .overlay {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
    }

    .grid-item span {
      z-index: 2;
    }

    footer.footer {
  background-color: #0f1a2b;
  color: #fff;
  padding: 60px 20px 40px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.intro {
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.intro h1 {
  font-size: 28px;
  font-weight: bold;
  color: #0b3d2c;
}

.intro p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-top: 20px;
}

.booking-process {
  text-align: center;
  padding: 60px 20px;
}

.booking-process h2 {
  font-size: 30px;
  color: #0b3d2c;
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.booking-process h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 50px;
  background: #f99aa3;
  margin: 10px auto 0;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  max-width: 220px;
  text-align: center;
}

.step img {
  width: 70px;
  height: 70px;
  background: #ffe9e9;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  color: #444;
}

.arrow {
  font-size: 24px;
  color: #0b3d2c;
}

.Action {
      position: relative;
      background-image: url('Images/Explore\ Picture\ from\ Unsplash\ \(1\).jpg');
      background-size: cover;
      background-position: center;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }
    .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }
    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 20px 0;
    }
    .pagination div {
      padding: 5px 10px;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
    }
    .pagination .active {
      border-color: white;
    }
    .info-cards {
      display: flex;
      justify-content: space-between;
      margin-top: 30px;
      gap: 20px;
    }
    .info-cards div {
      flex: 1;
      background: rgba(255, 255, 255, 0.1);
      padding: 20px;
      border-radius: 10px;
      transition: background 0.3s ease;
    }
    .info-cards div:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    .icon {
      font-size: 2em;
      margin-bottom: 10px;
    }
    .tours {
      padding: 60px 20px;
      background: #111;
      text-align: center;
    }
    .tour-cards {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .card {
      background: #222;
      border-radius: 10px;
      overflow: hidden;
      width: 200px;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-10px);
    }
    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .card-info {
      padding: 15px;
    }
    .card-info h3 {
      margin: 0;
      color: #0ff;
    }
    .card-info p {
      margin: 5px 0 0;
    }


    .experience {
  padding: 60px 20px;
  background-color: #000;
  color: white;
  text-align: center;
}

.experience-content h2 {
  font-size: 2.5em;
  color: #0ff;
  margin-bottom: 10px;
}

.experience-content p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 40px;
}

.experience-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.exp-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-10px);
}

.exp-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.exp-info {
  padding: 15px;
}

.exp-info h3 {
  margin: 0;
  font-size: 1.2em;
  color: #0ff;
}

.exp-info p {
  color: #aaa;
  margin-top: 5px;
}


.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  /* background-image: url(Images/topical\ map\ png.png); */
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  line-height: 1.8;
  color: #d1d5db;
}

.footer-list a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #f87171; /* red-400 */
}

.footer-list .highlight-link {
  color: #818cf8; /* indigo-400 */
  font-weight: bold;
}

.footer-iata {
  margin-top: 20px;
}

.footer-iata img {
  height: 40px;
}

.footer-iata p {
  font-size: 12px;
  margin-top: 5px;
  color: #9ca3af;
}

/* Divider */
.footer-divider {
  margin: 40px auto;
  border-top: 1px solid #374151;
  max-width: 1200px;
}

/* Packages Section */
.footer-packages {
  max-width: 1200px;
  margin: auto;
  color: #d1d5db;
  line-height: 1.6;
  padding: 0 20px;
}

.footer-packages h4 {
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 8px;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #9ca3af;
  font-size: 13px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.payment-icons img {
  height: 20px;
}