/* === Global & Background === */
body {
  background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),
              url('background.webp') no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 80px; /* Make room for navbar */
  text-align: center;
}

/* === Desktop Navbar === */
.desktop-navbar {
  display: block;
}
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1000;
}
.nav-button {
  background: #1a73e8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.nav-button:hover {
  background: #1358b8;
}

/* === Mobile Hamburger Menu === */
.mobile-navbar {
  display: none;
}
.menu-toggle {
  display: none;
}
.menu-icon {
  display: none;
}

/* Prepare mobile links */
.menu-links {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  z-index: 1001;
}
.menu-links a {
  padding: 15px;
  text-decoration: none;
  font-weight: bold;
  color: #1a73e8;
  border-bottom: 1px solid #eee;
}
.menu-links a:hover {
  background: #f1f1f1;
}

/* Toggle menu when checkbox checked */
.menu-toggle:checked + .menu-icon + .menu-links {
  display: flex;
}

/* === Content Container === */
.container {
  background: rgba(255,255,255,0.85);
  padding: 20px;
  border-radius: 10px;
  max-width: 90%; width: 500px;
  margin: auto;
  overflow-y: auto; max-height: 80vh;
}
h1 { font-size: 24px; font-weight: bold; }
p  { font-size: 18px; margin: 10px 0; }

/* === Mobile Styles === */
@media screen and (max-width: 600px) {
  body {
    padding-top: 60px;
    background-attachment: scroll;
  }

  /* Hide desktop, show mobile */
  .desktop-navbar { display: none; }
  .mobile-navbar  { display: block; }

  .menu-icon {
    display: block;
    font-size: 26px;
    padding: 15px;
    cursor: pointer;
    position: fixed; top: 0; left: 0;
    background: rgba(255,255,255,0.9);
    z-index: 1002;
  }

  .container {
    width: 90%; max-width: 350px;
    padding: 15px;
    margin-top: 20px;
  }

  h1 { font-size: 26px; }
  p  { font-size: 20px; }
}
/* Sticky Demo-Booking Button */
.demo-btn {
  position: fixed;
  top: 90px;                             /* just under your navbar */
  left: 50%;                             /* center horizontally */
  transform: translateX(-50%);
  background: linear-gradient(45deg, #25D366, #1ebe57);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  z-index: 1100;                         /* above everything else */
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.demo-btn:hover {
  transform: translateX(-50%) scale(1.05);
}
/* Testimonials Section */
.testimonial-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-box {
  background: #f9f9f9;
  border-left: 5px solid #1a73e8;
  padding: 15px;
  font-style: italic;
  color: #333;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: background 0.3s;
}

.testimonial-box:hover {
  background: #eef6ff;
}

