/* Color Palette from Logo */
:root {
  --primary-color: #B5A253;
  --secondary-color: #2B3A42;
  --accent-color: #6B7C86;
  --light-color: #F9F9F9;
  --dark-color: #1C1C1C;
}
html {
  scroll-behavior: smooth;
}


/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-color);
  color: var(--dark-color);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 20px 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.logo img {
  height: 50px;
  padding-top: 7px;
}

.social-icons imgs{
size: 15px;}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: zoomInSlow 12s ease-in-out infinite;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes zoomInSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Gradient Effect for Carousel Images */
.carousel-slide::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* Adjust height for gradient visibility */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white; /* Ensure good visibility */
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  z-index: 2; /* Above gradient */
}

.carousel-text p {
  margin-top: 8px;
}
.appointment-section {
  position: relative;
  top: -100px; /* Pull up over carousel */
  display: flex;
  justify-content: center;
  z-index: 10;

}

.appointment-container {
  background-color: white;
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.appointment-container h2 {

  color: var(--primary-color);
  font-size: 40px;
  margin-bottom: 20px;
}

.appointment-form {
  display: flex;
  justify-content: center;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

input, select, button {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--accent-color);
  font-size: 1rem;
  min-width: 190px;
  box-sizing: border-box;
  transition: 0.3s ease;
}

input[type="date"] {
  appearance: none;
  background-color: var(--light-color);
  color: var(--dark-color);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: url('calendar-icon.png') no-repeat;
  background-size: 20px;
  cursor: pointer;
}

button {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: var(--secondary-color);
}



/* Features Section */
.features-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px 20px;
  background-color: #f8f8f8;
  text-align: center;
}
.feature-tile {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  margin: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.feature-tile:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background-color: #fffef7;
}

.feature-tile:hover h4 {
  color: var(--primary-color);
}

.feature-tile:hover p {
  color: var(--secondary-color);
}
/* === Services Section === */
.services-section {
  text-align: center;
  padding: 60px 20px;
  background: #f5f7ff;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #b5a253;
}

.section-description {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Layout: Grid + Image Side by Side */
.services-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Boxes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  flex: 1 1 60%;
}

.service-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-box img {
  width: 45px;
  margin-bottom: 12px;
}

.service-box h4 {
  margin-bottom: 8px;
  color: #b5a253;
  font-size: 18px;
}

.service-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

/* Image + Call to Action Button */
.services-image {
  position: relative;
  flex: 1 1 35%;
  max-width: 400px;
}

.services-image img {
  width: 75%;
  border-radius: 15px;
}

.overlay-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(to right, #c2c973, #b5a253);
  color: #fff;
  padding: 18px;
  border-radius: 10px;
  text-align: left;
}

.overlay-button p {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
}

.book-btn {
  display: inline-block;
  background: #fff;
  color: #b5a253;
  padding: 8px 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s ease;
}

.book-btn:hover {
  background: #e0ecff;
}




:root {
  --primary-color: #B5A253;
  --secondary-color: #2B3A42;
  --accent-color: #6B7C86;
  --light-color: #F9F9F9;
  --dark-color: #1C1C1C;
}

.therapy-process-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.section-title .tagline {
  display: block;
  color: #b5a253 ;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title .title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}

.therapy-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: auto;
  flex-wrap: wrap;
}

.step {
  width: 30%;
  position: relative;
  z-index: 1;
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  border: 2px dashed #d5d5d5;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #fff;
  color: #b5a253;
  font-weight: bold;
  border: 2px solid #b5a253;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.step img {
  width: 32px;
  height: 32px;
}

.step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #b5a253 ;
}

.step p {
  font-size: 14px;
  color: #555;
  padding: 0 10px;
}

.therapy-line {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D'100%25'%20height%3D'100%25'%20viewBox%3D'0%200%201000%20150'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M%200%2075%20Q%20250%200%2C%20500%2075%20T%201000%2075'%20fill%3D'transparent'%20stroke%3D'%23b5a253'%20stroke-width%3D'2'%20stroke-dasharray%3D'6%2C6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  opacity: 40%;
}


@media (max-width: 768px) {
  .therapy-steps {
    flex-direction: column;
    gap: 40px;
  }

  .step {
    width: 100%;
  }
  .therapy-steps {
  margin-top: 50px;
  padding-top: 60px;
  position: relative;
}


  .therapy-line {
    display: none;
  }
}
.testimonial-section {
  background: #fffdf6;
  padding: 80px 20px;
  text-align: center;
}

.section-title .tagline {
  color: #b5a253;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.section-title .title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.testimonial-slide p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-slide h4 {
  font-size: 16px;
  font-weight: 600;
  color: #b5a253;
}

/* Show 2 at once on larger screens */
@media (min-width: 768px) {
  .testimonial-slide {
    min-width: 50%;
  }
}
.appointment-booking {
  padding: 80px 20px;
  background: #fffdf6;
}

.booking-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.booking-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
mix-blend-mode: multiply;
  background: transparent!important;
  display:block;

  /* Make sure no white bg is forced */
  border: none;


}

.booking-form-box {
  background-color: #b5a253;
  padding: 40px;
  border-radius: 16px;
  color: white;
  max-width: 600px;
  flex: 1;


  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.form-title {
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0 30px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.booking-form input,
.booking-form select {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.booking-form button {
  background: white;
  color: #b5a253;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.booking-form button:hover {
  background: #f8f4e6;
}

@keyframes float-left-right {
  0% { transform: translateX(0); }
  50% { transform: translateX(15px); }
  100% { transform: translateX(0); }
}

.booking-image img {
  animation: float-left-right 4s ease-in-out infinite;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .booking-wrapper {
    flex-direction: column;
  }

  .input-group {
    flex-direction: column;
  }
}




/* Show 2 at once on larger screens */
@media (min-width: 768px) {
  .testimonial-slide {
    min-width: 50%;
  }
}




/* === Smooth Scroll (for internal links) === */
html {
  scroll-behavior: smooth;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .services-image {
    margin-top: 20px;
    max-width: 100%;
  }
}
.site-footer {
  background-color: #fffdf6;
  border-top: 1px solid #e0e0e0;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.footer-content p {
  margin: 5px 0;
}

.footer-content a {
  color: #b5a253;
  text-decoration: none;
  font-weight: 600;
}

.footer-content a:hover {
  text-decoration: underline;
}
