/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

/* Header + Video */
header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 0 20px;
}
.overlay h1.main-title {
  font-size: 2.5em;
  font-weight: 700;
}
.overlay h2.sub-title {
  font-size: 1.8em;
  font-weight: 400;
  margin-top: 10px;
}
.overlay p {
  font-size: 1.2em;
  margin-top: 15px;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}
.logo {
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.nav-links.mobile {
  display: none;
  flex-direction: column;
  background: #111;
  padding: 20px;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.nav-links.mobile.show {
  display: flex;
}
.menu-toggle {
  display: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}
section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}
/* Reset box-sizing for better layout control */
* {
  box-sizing: border-box;
}

#about {
  background-image: url('images/aboutus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 20px;
  color: white;
}

.about-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  margin: auto;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffe082; /* Highlighted title */
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.about-content strong {
  color: #ffcc80; /* Highlighted keywords */
}

@media (max-width: 768px) {
  .about-overlay {
    padding: 20px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}


/* Section Container */
#why-us {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('images/why-us.jpg');
  background-size: cover;
  background-position: center;
  animation: bounceBackground 10s infinite alternate ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Bounce Animation */
@keyframes bounceBackground {
  0% { background-position: center top; }
  50% { background-position: center center; }
  100% { background-position: center bottom; }
}

/* Overlay for better readability */
#why-us .overlay {
  background: rgba(0, 0, 0, 0.6); /* dark transparent overlay */
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 1rem;
}

/* Heading */
#why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* List Items */
#why-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#why-us li {
  font-size: 1.2rem;
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

#why-us li:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  #why-us h2 {
    font-size: 2rem;
  }

  #why-us li {
    font-size: 1rem;
    padding: 0.8rem;
  }
}


/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
  color: #333;
}

.services-section {
  padding: 2rem 1rem;
  background-image: url('images/our-services.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #fff; /* Ensures contrast with the dark overlay */
}

/* Overlay to darken background for readability */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust darkness as needed */
  z-index: -1;
}

/* Ensure content stays above the overlay */
.services-section > * {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff; /* Updated for better contrast on background */
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Service card styles */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee; /* Optional visual separation */
}

.service-content {
  padding: 1.2rem;
}

.service-content h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #222;
}

.service-content p {
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  color: #555;
}

.price {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  color: #e67e22;
}

/* Optional CTA button styling */
.cta-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #e67e22;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #cf711f;
}

/* Tablet & Desktop view */
@media (min-width: 768px) {
  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .service-card {
    flex: 1 1 calc(33.333% - 2rem);
    max-width: calc(33.333% - 2rem);
  }

  .service-card img {
    height: 250px;
  }
}

/* Optional: center align items on mobile */
@media (max-width: 767px) {
  .services-grid {
    align-items: center;
    gap: 1.5rem;
  }
}


/* Section background and general styling */
#therapists {
  position: relative;
   background-image: url('images/spa-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  text-align: center;
  color: #fff; /* Improves text visibility on background image */
}

/* Optional dark overlay for better readability */
#therapists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
  z-index: 0;
}

#therapists * {
  position: relative;
  z-index: 1; /* Keeps content above the overlay */
}

#therapists h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

/* Therapist slider layout */
.therapist-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual therapist card */
.therapist {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 220px;
  transition: transform 0.3s ease;
}

.therapist:hover {
  transform: scale(1.03); /* Enhanced hover effect */
}

/* Therapist image */
.therapist img {
  width: 100%;
  height: auto;
  border-radius: 50%; /* Makes it circular */
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #d1e0ec;
  transition: border 0.3s ease;
}

/* Therapist name */
.therapist .name {
  font-weight: bold;
  color: #1a3c6b;
  background-color: #e0efff;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  font-size: 1.1em;
  margin-top: 10px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .therapist {
    width: 80%;
  }
}


#testimonials {
   background-image: url('images/spa-review.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: white;
    text-align: center;
  }

  #testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }

  .testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }

  .testimonial {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent box */
    border-left: 5px solid #ffc107; /* Yellow highlight like a quote */
    padding: 20px 30px;
    border-radius: 10px;
    font-style: italic;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: left;
    position: relative;
  }

  .testimonial p {
    margin: 0 0 10px;
    font-size: 1.1rem;
  }

  .testimonial footer {
    text-align: right;
    font-weight: bold;
    color: #ffc107;
  }

  /* Responsive layout for wider screens */
  @media (min-width: 768px) {
    .testimonial-slider {
      flex-direction: row;
    }

    .testimonial {
      flex: 1;
    }
  }

    #faq {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    #faq h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2rem;
      color: #222;
    }

    .faq-item {
      background-color: #fff;
      margin-bottom: 20px;
      padding: 20px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease-in-out;
      cursor: default;
    }

    .faq-item:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transform: translateY(-2px);
    }

    .faq-item h4 {
      font-size: 1.1rem;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .faq-item p {
      font-size: 0.95rem;
      color: #555;
    }

    a {
      color: #0077cc;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      #faq {
        padding: 20px 10px;
      }

      .faq-item {
        padding: 15px 20px;
      }

      #faq h2 {
        font-size: 1.5rem;
      }

      .faq-item h4 {
        font-size: 1rem;
      }

      .faq-item p {
        font-size: 0.9rem;
      }
    }


/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}
.floating-buttons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.whatsapp {
  background-color: #25D366;
}
.call {
  background-color: #007bff;
}
/* Base footer styles */
.footer {
  background-color: #222;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
}

.follow-text {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Social icon styles */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

/* Responsive for mobile devices */
@media (max-width: 600px) {
  .follow-text {
    font-size: 1em;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icons a img {
    width: 28px;
    height: 28px;
  }
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links.desktop {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.mobile {
    display: none; /* default hidden, JS toggles this */
  }
  .nav-links.mobile.show {
    display: flex;
  }
  header {
    height: 80vh;
  }
  .overlay h1.main-title {
    font-size: 1.8em;
  }
  .overlay h2.sub-title {
    font-size: 1.3em;
  }
  .overlay p {
    font-size: 1em;
  }
  #services {
    flex-direction: column;
    align-items: center;
  }
}
