/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font and smooth scroll */
body {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* Navbar styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: white;
  position: relative;
  z-index: 1000; /* Increased to ensure menu stays on top */
}

.logo img {
  height: 60px;
  max-width: 100%;
}

/* Hamburger menu button */
.hamburger {
  display: none; /* Hidden by default on desktop */
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}
.nav-book-btn {
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Hero Banner */
.hero-banner {
  background-image: url("../image/au3.png");
  background-size: cover;
  background-position: center;
  height: 60vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.overlay h1 {
  color: white;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: bold;
}

/* About Us Section */
.about-us {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 5%;
  align-items: flex-start;
  background-color: #f9f9f9;
}

.about-images {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 100%;
}

.about-text {
  flex: 2 1 500px;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

/* Why Choose Us Section */
.why-choose-us {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 5%;
  gap: 40px;
}

.why-text {
  flex: 1 1 400px;
}

.why-text h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 15px;
}

.why-text p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.why-text ul {
  list-style-type: disc;
  padding-left: 20px;
}

.why-text ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.why-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 5px;
}

/* Bottom Quote Text */
.why-bottom-text {
  background-color: #fff;
  padding: 20px 5%;
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
  gap: 20px;
  background-color: #fff;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  flex: 1 1 150px;
  padding: 20px 10px;
}

.stat-box img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.stat-box h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin: 5px 0;
}

.stat-box p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 40px 5% 20px;
  color: #fff;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
  max-width: 100%;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icons a img {
  width: 25px;
  height: 25px;
}

.call-now {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #fff;
}

/* Media Queries for additional responsiveness */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    padding: 15px 20px;
  }

  .navbar {
    width: 100%;
    justify-content: space-around;
    gap: 15px;
  }

  .hero-banner {
    height: 50vh;
  }

  .about-us,
  .why-choose-us {
    flex-direction: column;
    gap: 30px;
  }

  .stats {
    gap: 15px;
  }

  .stat-box {
    flex: 1 1 120px;
  }

  .footer-col {
    flex: 1 1 150px;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-banner {
    height: 40vh;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .stats {
    flex-direction: column;
    gap: 30px;
  }

  .stat-box {
    width: 100%;
  }

  .footer-col {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block; /* Show hamburger on mobile */
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .navbar.active {
    right: 0;
  }

  .navbar a {
    font-size: 1.2rem;
    padding: 10px;
    width: 100%;
    text-align: center;
  }
}
