:root {
  --bg-dark: #0000ff;
  --accent: #e63946;
  --text: #fff;
  --line: #ffffff22;
  --card: #111827;
}

* {margin:0;padding:0;box-sizing:border-box;}
body {font-family: 'Segoe UI', sans-serif;background:#0f1520;color:var(--text);line-height:1.5;}
a {color:inherit;text-decoration:none;}

.container {max-width:1200px;margin:auto;padding:0 16px;display:flex;align-items:center;justify-content:space-between;}
.logo {font-size:1.6rem;font-weight:700;color:#fff;}
.logo span {color:var(--accent);}
.header {background:var(--bg-dark);padding:12px 0;position:fixed;width:100%;top:0;z-index:1000;}
.nav ul {list-style:none;display:flex;gap:20px;}
.nav a:hover {color:var(--accent);}
.menu-toggle {display:none;font-size:24px;color:#fff;cursor:pointer;}

/* Slider */
.slider {position:relative;height:100vh;overflow:hidden;}
.slide {position:absolute;inset:0;background:linear-gradient(180deg,#00000066,#000000bb), var(--bg);background-size:cover;background-position:center;opacity:0;transition:opacity .7s;}
.slide.active {opacity:1;}
.overlay {position:absolute;inset:0;}
.slide-content {position:relative;top:50%;transform:translateY(-50%);text-align:center;padding:0 1rem;}
.slide h1 {font-size:clamp(1.8rem,4vw,3rem);}
.slide p {color:#cbd5e1;margin:10px 0 20px;}
.btn {background:var(--accent);color:#fff;padding:12px 24px;border:none;border-radius:8px;cursor:pointer;font-size:1rem;}
.btn:hover {background:#c12736;}

.slider-nav {position:absolute;top:50%;transform:translateY(-50%);background:#00000044;border:none;color:#fff;padding:.6rem 1rem;border-radius:50%;cursor:pointer;}
.slider-nav.prev {left:1rem;} .slider-nav.next {right:1rem;}
.dots {position:absolute;bottom:20px;width:100%;text-align:center;}
.dots button{width:10px;height:10px;border-radius:50%;border:0;background:#ffffff55;margin:0 4px;cursor:pointer;}
.dots button.active{background:#fff;}

/* Booking Modal */
.booking-modal {display:none;position:fixed;inset:0;background:#000000aa;backdrop-filter:blur(5px);z-index:2000;justify-content:center;align-items:center;}
.booking-content {background:#111827;padding:30px;border-radius:16px;width:90%;max-width:500px;position:relative;}
.close-btn {position:absolute;top:10px;right:15px;font-size:28px;cursor:pointer;color:#fff;}
.booking-form {display:flex;flex-direction:column;gap:14px;margin-top:20px;}
.booking-form input, .booking-form textarea {padding:12px;border-radius:8px;border:1px solid var(--line);background:#0f1520;color:#fff;}
.booking-form button {margin-top:10px;}
.alt-book {margin-top:10px;text-align:center;}
.whatsapp {color:#25D366;font-weight:600;}
/* About Us Section */
.about {
  position: relative;
  background: linear-gradient(135deg, #007f9c, #00bcd4);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Content */
.about .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #ff9800;
  margin: 12px auto;
  border-radius: 2px;
}

.about .about-text {
  margin: 15px 0;
  line-height: 1.7;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.about .btn {
  margin-top: 25px;
  background: #ff9800;
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
}

.about .btn:hover {
  background: #e68900;
  box-shadow: 0 0 15px rgba(255,152,0,0.6);
}

/* Bubble Animation */
.bubbles {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bubbles span {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}

.bubbles span:nth-child(1) { left: 10%; width: 20px; height: 20px; animation-duration: 6s; }
.bubbles span:nth-child(2) { left: 25%; width: 15px; height: 15px; animation-duration: 8s; }
.bubbles span:nth-child(3) { left: 40%; width: 25px; height: 25px; animation-duration: 10s; }
.bubbles span:nth-child(4) { left: 55%; width: 10px; height: 10px; animation-duration: 7s; }
.bubbles span:nth-child(5) { left: 70%; width: 30px; height: 30px; animation-duration: 12s; }
.bubbles span:nth-child(6) { left: 85%; width: 18px; height: 18px; animation-duration: 9s; }
.bubbles span:nth-child(7) { left: 15%; width: 12px; height: 12px; animation-duration: 11s; }
.bubbles span:nth-child(8) { left: 35%; width: 22px; height: 22px; animation-duration: 13s; }
.bubbles span:nth-child(9) { left: 60%; width: 14px; height: 14px; animation-duration: 6s; }
.bubbles span:nth-child(10){ left: 80%; width: 26px; height: 26px; animation-duration: 14s; }

@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(-120vh) scale(1.3); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    padding: 70px 15px;
  }

  .about .section-title {
    font-size: 2rem;
  }

  .about .about-text {
    font-size: 1rem;
  }

  .about .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
/* Why Choose Us Section with spa background color */
.why-choose-us {
  position: relative;
  padding: 60px 0;
  background-color: #d0f4f7; /* Light teal for a spa-like feel */
  color: #333;
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.why-choose-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-choose-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.why-choose-content h2 {
  font-size: 36px;
  font-weight: bold;
  color: #3a3a3a;
}

.why-choose-text {
  font-size: 18px;
  color: #555;
  margin-top: 20px;
  margin-bottom: 20px;
}

.why-choose-list {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.why-choose-list li {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  text-align: left;
}

.bubbles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

.bubbles span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  margin: 5px;
  animation: bubbleAnimation 6s infinite ease-in-out;
}

.bubbles span:nth-child(odd) {
  animation-delay: 1s;
}

.bubbles span:nth-child(even) {
  animation-delay: 3s;
}

@keyframes bubbleAnimation {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}
/* Our Services Section */
.services {
  position: relative;
  background-color: #f0f8ff; /* Light blue spa background */
  color: #333;
  padding: 60px 0;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.services-content {
  text-align: center;
}

.services-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.services-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card h3 {
  font-size: 1.8rem;
  color: #333;
  margin-top: 15px;
}

.service-description {
  font-size: 1rem;
  color: #777;
  margin-top: 10px;
  line-height: 1.6;
}

/* Bubbles Animation */
.bubbles span {
  position: absolute;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}

@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(-120vh) scale(1.3); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .services-content h2 {
    font-size: 2rem;
  }

  .services-content p {
    font-size: 1rem;
  }

  .service-card {
    padding: 15px;
  }

  .service-img {
    height: 150px;
  }
}
/* WhatsApp Button (Green) */
.btn.whatsapp-link {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn.whatsapp-link:hover {
  background-color: #128C7E; /* WhatsApp darker green */
}

/* Call Now Button (Blue) */
.btn.call-now {
  background-color: #007bff; /* Blue */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn.call-now:hover {
  background-color: #0056b3; /* Darker blue */
}

/* ===== FAQ Section ===== */
.faq.section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0072ff, #00c6ff); /* Blue gradient */
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.faq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center; /* Center content */
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff; /* White for contrast */
}

/* FAQ Content */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.faq-item:hover {
  transform: translateY(-2px);
}

/* Toggle Button */
.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
}

.faq-toggle .toggle-sign {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #0072ff;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9f9f9;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 15px 0;
}

/* Active Item */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.faq-item.active .faq-toggle .toggle-sign {
  transform: rotate(45deg);
  color: #e63946;
}

/* ===== Bubbles Animation ===== */
.bubbles span {
  position: absolute;
  bottom: -50px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: bubbleUp 8s infinite ease-in;
}

.bubbles span:nth-child(1) { left: 10%; animation-duration: 6s; width: 15px; height: 15px; }
.bubbles span:nth-child(2) { left: 25%; animation-duration: 10s; width: 25px; height: 25px; }
.bubbles span:nth-child(3) { left: 40%; animation-duration: 7s; width: 20px; height: 20px; }
.bubbles span:nth-child(4) { left: 60%; animation-duration: 11s; width: 30px; height: 30px; }
.bubbles span:nth-child(5) { left: 75%; animation-duration: 9s; width: 18px; height: 18px; }
.bubbles span:nth-child(6) { left: 85%; animation-duration: 13s; width: 28px; height: 28px; }
.bubbles span:nth-child(7) { left: 50%; animation-duration: 12s; width: 22px; height: 22px; }
.bubbles span:nth-child(8) { left: 35%; animation-duration: 14s; width: 26px; height: 26px; }
.bubbles span:nth-child(9) { left: 90%; animation-duration: 15s; width: 20px; height: 20px; }
.bubbles span:nth-child(10){ left: 5%;  animation-duration: 8s; width: 24px; height: 24px; }

@keyframes bubbleUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-200px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(-400px) scale(0.8);
    opacity: 0;
  }
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }

  .faq-toggle {
    font-size: 16px;
    padding: 12px 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}



.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  background: #fefefe;
}

.testimonial-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.testimonial-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fade 1s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #0077b6;
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
  padding: 0 10px;
}

.testimonial-name {
  font-weight: bold;
  color: #0077b6;
  font-size: 1.1rem;
}
/* Blog Section */
.blog {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.blog-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-title {
  font-size: 1.6rem;
  margin-top: 15px;
  color: #333;
}

.blog-excerpt {
  font-size: 1rem;
  color: #777;
  margin: 15px 0;
}

.read-more-btn {
  background-color: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #128C7E;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 30px;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 15px;
  }

  .blog-img {
    height: 150px;
  }

  .blog-title {
    font-size: 1.4rem;
  }
}

/* Footer */
.footer {background:var(--bg-dark);padding:40px 20px;margin-top:40px;}
.footer-grid {display:grid;gap:18px;}
.footer-grid h4 {margin-bottom:10px;}
.footer-grid ul {list-style:none;}
.footer-grid a:hover {color:var(--accent);}
.copy {text-align:center;color:#94a3b8;margin-top:20px;font-size:.9rem;}

@media (max-width:768px) {
  .nav {display:none;}
  .menu-toggle {display:block;}
  .footer-grid {grid-template-columns:1fr;}
}
@media (min-width:769px) {
  .footer-grid {grid-template-columns:2fr 1fr 1fr;}
}
/* Add inside style.css */

/* Default hide nav on mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* below header */
    right: 0;
    width: 200px;
    background: #111827;
    padding: 15px;
    border-radius: 0 0 8px 8px;
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .nav a {
    color: #fff;
    padding: 8px 0;
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}
.floating-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between buttons */
}

.floating-button {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: white;
  line-height: 50px;
  text-decoration: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
  background-color: #25D366; /* WhatsApp green */
}

.call-float {
  background-color: #34b7f1; /* Call blue */
}

/* Ensure icons are centered */
.floating-button i {
  line-height: 50px;
}

@media (max-width: 768px) {
  .floating-container {
    right: 10px;  /* Make it a bit more mobile-friendly */
    bottom: 15px;
  }

  .floating-button {
    width: 45px;
    height: 45px;
  }

  .floating-button i {
    font-size: 20px;  /* Slightly smaller icons on mobile */
  }
}

