*{
    margin: 0;
    padding: 0;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #003366;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.logo img {
  height: 40px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Buttons */
.nav-btn {
  padding: 6px 12px;
  border-radius: 5px;
  font-weight: bold;
}

.nav-btn.call {
  background: orange;
  color: black;
}

.nav-btn.whatsapp {
  background: #25D366;
  color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #003366;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 15px 0;
  }

  .nav-links a {
    padding: 10px;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }
}
section {
  padding: 50px 20px;
  text-align: center;
}

.hero {
  background: linear-gradient(to right, #003366, #0055aa);
  color: white;
  padding: 80px 20px;
}

.btn-primary {
  background: orange;
  color: black;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.services .service-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service {
  background: #f4f4f4;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
}

.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us li {
  margin: 10px 0;
}

.footer {
  background: #111;
  color: white;
  padding: 15px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 14px 18px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.booking {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.booking form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking input,
.booking select,
.booking textarea {
  padding: 12px;
  font-size: 16px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.booking button {
  background: #003366;
  color: white;
  padding: 14px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.booking button:hover {
  background: #0055aa;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .services .service-box {
    flex-direction: column;
    align-items: center;
  }
}
.call-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #0a7cff;
  color: white;
  font-size: 26px;
  padding: 14px 18px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}