/* ========== GLOBAL ========== */
    * {
      box-sizing: border-box;
      font-family: "Segoe UI", Arial, sans-serif;
    }

    body {
      margin: 0;
      background: #f9fafb;
      color: #1f2937;
    }

    a {
      text-decoration: none;
      color: inherit;
    }


body {
  background: #f4f7fb;
  color: #111;
}

.input-box {
  position: flex;
  width:250;
  margin-bottom: 20px;
}

.suggestions {
  position :absolute;
  background: rgb(202, 199, 199);
  border: 1px solid #ccc;
  border-top: none;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
}

.suggestions div {
  padding: 8px;
  cursor: pointer;
}

.suggestions div:hover {
  background: #f0f0f0;
}


/* NAVBAR */
  nav {
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      width: 40px;
      height: 40px;
    }

    .logo h1 {
      font-size: 20px;
      font-weight: 800;
      color: #2563eb;
      margin: 0;
    }

    .logo p {
      font-size: 11px;
      letter-spacing: 2px;
      margin: 0;
      font-weight: 600;
      color: black;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      font-weight: 500;
    }

    .nav-links a {
      color: #4b5563;
    }

    .nav-links a.active,
    .nav-links a:hover {
      color: #2563eb;
    }

     .nav-links {
  position: relative;
  display: flex;
  gap: 32px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 0;
  position: relative;
  color: #4b5563;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-links a.active {
  color: #2563eb;
}

/* Sliding Indicator */
.nav-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #2563eb;
  border-radius: 3px;
  transition: all 0.3s ease;
}


    .book-btn {
      background: #facc15;
      padding: 12px 26px;
      border-radius: 999px;
      font-weight: 600;
      color: black;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }


/* MENU BUTTON (MOBILE) */
.menu-btn {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE NAVBAR */
@media (max-width: 768px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .nav-links a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  

  .menu-btn {
    display: block;
  }

  .book-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* ========== MOBILE NAV ========== */
    @media (max-width: 900px) {
      .nav-links,
      .book-btn {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links.mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      }
    }

/* HERO */
.hero {
  background: linear-gradient(120deg, #0f172a, #1e3a8a);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero span {
  color: #60a5fa;
}

.badge {
  display: inline-block;
  background: #1e40af;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.hero-buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin: 5px;
}

.primary {
  background: #2563eb;
  color: white;
}

.outline {
  border: 1px solid white;
  color: white;
}

.full {
  width: 100%;
}

/* BOOKING */
.booking {
  background: white;
  max-width: 900px;
  margin: -60px auto 50px;
  padding: 30px;
  border-radius: 0px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.booking-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
   width: 370px;
}

/* FOOTER */
footer {
      background: linear-gradient(90deg, #020617, #0f172a);
      color: #cbd5f5;
      padding: 70px 80px 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
    }

    footer h3, footer h4 {
      color: white;
      margin-bottom: 15px;
    }

    footer p, footer a {
      font-size: 14px;
      color: #cbd5f5;
      display: block;
      margin-bottom: 10px;
    }

    footer a:hover {
      color: #60a5fa;
    }

    .copyright {
      text-align: center;
      margin-top: 40px;
      font-size: 13px;
      opacity: 0.7;
    }

/* MOBILE DESIGN */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 65px;
    right: 20px;
    width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }

  .nav-links a {
    padding: 12px;
    border-bottom: 1px solid #eee;
  }

  .menu-btn {
    display: block;
  }

  .booking-form {
    grid-template-columns: 0fr;
  }
}

/* WHY CHOOSE US */
.why {
  padding: 70px 20px;
  text-align: center;
  background: #f8fafc;
}

.why h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.why-sub {
  color: #555;
  max-width: 600px;
  margin: auto;
}

.why-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.why-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  width: 260px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.why-card h3 {
  margin-bottom: 10px;
  color: #2563eb;
}

/* CTA SECTION */
.cta {
  background: #2563eb;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  max-width: 600px;
  margin: auto;
  color: #e0e7ff;
}

.cta-buttons {
  margin-top: 25px;
}

/* CTA BUTTONS */
.white {
  background: white;
  color: #2563eb;
}

.outline-white {
  border: 1px solid white;
  color: white;
}











