* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}

body {
  /* F0F9FF */
  background: linear-gradient(to bottom, #f9fbfe, #eaf1ff);
}

/* Navbar Styles */
.navbar {
  background-color: #f9fbfe;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  position: static;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 550;
  font-size: 1.1rem;
  transition: color 0.3s;

  font-family: 'Poppins', sans-serif; /* Example modern font */
  letter-spacing: 0.5px;

  /* Switch in between nav border or underline for nav links */
  /* position: relative; 
  color: #333;
  transition: color 0.3s ease; */
}

.nav-links a:hover {
  color: #2D6CDF;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00A9FF;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Book Button */
.book-btn {
  background-color: #2D6CDF !important;
  color: #fff;
  padding: 0.7rem 2.7rem !important;
  border-radius: 6px;
  font-size: 1.1rem !important;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.book-btn:hover {
  background-color: #243ab3 !important;
}

.desktop-only {
  display: block;
}

.mobile-visible {
  display: none;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Menu Open State */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  /* Mobile Navigation Links */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 30%;
    background: #e6f0ff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem 2rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 10px;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    width: 30%;
  }

  /* Hide Desktop-only Book Button */
  .desktop-only {
    display: none;
  }

  /* Show Mobile-only Book Button */
  .mobile-visible {
    display: inline-block;
    margin-top: 1rem;
  }

  /* Show Hamburger */
  .menu-toggle {
    display: flex;
  }
}