.therapy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.ml-1 {
    margin-left: 1em;
}
.breadcrum-container {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}

.therapy-header {
  text-align: center;
  margin-bottom: 40px;
}

.therapy-logo {
  font-size: 2.5rem;
  color: #6f3073;
  font-weight: bold;
  margin-bottom: 10px;
}

.therapy-tagline {
  font-size: 1.2rem;
  color: #6f3073;
  opacity: 0.8;
}

.therapy-main {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 30px;
}

.therapy-sidebar {
  flex: 0 0 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(111, 48, 115, 0.1);
  overflow: hidden;
  position: sticky;
  height: fit-content;
  top: 3.6em;
}

.therapy-sidebar-header {
  background-color: #6f3073;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.therapy-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateY(0);
  overflow-y: auto;
  overflow-x: hidden;
  height: 500px;
}

.therapy-service-item {
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0e6f1;
  font-weight: 500;
}

.therapy-service-item:hover {
  background-color: #f7f0f8;
}

.therapy-service-item.therapy-active {
  background-color: #f0e6f1;
  border-left: 4px solid #6f3073;
  color: #6f3073;
}

.therapy-content {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(111, 48, 115, 0.1);
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: auto !important;
}

.therapy-content-inner {
  position: absolute;
  /*width: calc(100% - 60px);*/   /* Accounting for padding */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.therapy-content-inner.therapy-show {
  opacity: 1;
  position: relative;
  pointer-events: all;
  /* transform: translateY(0);
  overflow-y: auto;
  overflow-x: hidden;
  height: 990px; */
}

.therapy-service-title {
  color: #6f3073;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0e6f1;
}

.therapy-service-description {
  margin-bottom: 25px;
  line-height: 1.6;
}

.therapy-modalities {
  background-color: #f9f4fa;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 25px;
}

.therapy-modalities-title {
  color: #6f3073;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.therapy-modality-group {
  margin-bottom: 20px;
}

.therapy-modality-group-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #6f3073;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.therapy-modality-group-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #6f3073;
  border-radius: 50%;
  margin-right: 10px;
}

.therapy-modality-list {
  list-style: none;
  padding-left: 20px;
}

.therapy-modality-item {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}

.therapy-modality-item::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #6f3073;
  opacity: 0.6;
}

.therapy-call-to-action {
  background: linear-gradient(135deg, #6f3073 0%, #9a5a9e 100%);
  color: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
}

.therapy-cta-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.therapy-cta-description {
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 0.9;
}

.therapy-button {
  background-color: white;
  color: #6f3073;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.therapy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.therapy-intro {
  text-align: center;
  margin: 0 auto 50px;
  color: #6f3073;
  font-size: 1.1rem !important;
  line-height: 1.7;
}

.therapy-intro strong {
  color: #6f3073;
  line-height: 1.3;
  font-weight: 600;
}

.therapy-intro-title {
  padding: 2rem 0;
  font-size: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
  color: #6f3073;
}

.therapy-section-title {
  color: #6f3073;
  margin: 25px 0 15px;
  font-size: 1.3rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .therapy-main {
    flex-direction: column;
  }

  .therapy-sidebar {
    flex: 0 0 100%;
  }

  .therapy-content {
    margin-top: 20px;
  }

  .therapy-logo {
    font-size: 2rem;
  }

  .therapy-intro-title {
    font-size: 1.6rem;
  }
}

/* ////////// */

/* why therapy  */

/* Typography with unique class names */

#why-therapy {
  padding: 3rem 0;
}
.wellness_therapy_h1 {
  color: #6f3073;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.wellness_therapy_h2 {
  color: #6f3073;
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.wellness_therapy_text {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.wellness_therapy_bold {
  font-weight: 600;
  color: #6f3073;
}

/* Decorative Elements with unique class names */
.wellness_therapy_circle_top {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background-color: #ead6ef;
  border-radius: 50%;
  z-index: 1;
}

.wellness_therapy_circle_small {
  position: absolute;
  bottom: 100px;
  left: 50px;
  width: 150px;
  height: 150px;
  background-color: #f3e4f7;
  border-radius: 50%;
  z-index: 1;
}

.wellness_therapy_bottom_line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 5px;
  background: linear-gradient(90deg, #daa520, #f8d568);
  z-index: 1;
}

.wellness_therapy_accent {
  position: absolute;
  top: 300px;
  right: 50px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #daa520, #f8d568);
  border-radius: 50% 0 50% 50%;
  z-index: 1;
}

/* Layout Components with unique class names */
.wellness_therapy_main_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.wellness_therapy_header_section {
  text-align: center;
  padding: 4rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(111, 48, 115, 0.1);
  border-left: 5px solid #6f3073;
  position: relative;
  overflow: hidden;
}

.wellness_therapy_header_section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #daa520);
}

.wellness_therapy_intro_section {
  background-color: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(111, 48, 115, 0.08);
  position: relative;
  border-bottom: 3px solid #daa520;
}

.wellness_therapy_benefits_section {
  background-color: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(111, 48, 115, 0.08);
  position: relative;
  overflow: hidden;
}

.wellness_therapy_benefits_section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: #f3e4f7;
  border-radius: 0 0 0 100%;
  z-index: 1;
}

.wellness_therapy_benefits_list {
  list-style-type: none;
  margin: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.wellness_therapy_list_item {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2.5rem;
  transition: transform 0.3s ease;
}

.wellness_therapy_list_item:hover {
  transform: translateX(5px);
}

.wellness_therapy_list_item::before {
  content: "•";
  color: #daa520;
  font-size: 1.8rem;
  position: absolute;
  left: 0;
  top: -0.3rem;
}

.wellness_therapy_footer_box {
  margin-top: 2.5rem;
  text-align: center;
  font-style: italic;
  color: #6f3073;
  font-weight: 500;
  padding: 1.5rem;
  border-radius: 10px;
  background: linear-gradient(145deg, white, #f9f5fa);
  box-shadow: 0 5px 15px rgba(111, 48, 115, 0.05);
}

.wellness_therapy_feature_card {
  background-color: #f7f0f8;
  padding: 1.8rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid #6f3073;
  box-shadow: 0 5px 15px rgba(111, 48, 115, 0.05);
  position: relative;
  overflow: hidden;
}

.wellness_therapy_feature_card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(218, 165, 32, 0.1);
  border-radius: 100% 0 0 0;
}

.wellness_therapy_quote_symbol {
  position: absolute;
  font-size: 8rem;
  color: rgba(111, 48, 115, 0.05);
  top: -20px;
  left: 10px;
  font-family: Georgia, serif;
}

/* Buttons and Interactive Elements with unique class names */
.wellness_therapy_button {
  display: inline-block;
  background: linear-gradient(135deg, #6f3073, #9a4c9e);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  box-shadow: 0 5px 15px rgba(111, 48, 115, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.wellness_therapy_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(111, 48, 115, 0.3);
}

/* Responsive Design with unique class names */
@media (max-width: 768px) {
  .wellness_therapy_h1 {
    font-size: 2.2rem;
  }

  .wellness_therapy_h2 {
    font-size: 1.6rem;
  }

  .wellness_therapy_main_wrapper {
    padding: 1.5rem;
  }

  .wellness_therapy_header_section {
    padding: 2.5rem 1.2rem;
  }

  .wellness_therapy_circle_top {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }

  .wellness_therapy_accent {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .wellness_therapy_h1 {
    font-size: 1.8rem;
  }

  .wellness_therapy_h2 {
    font-size: 1.4rem;
  }

  .wellness_therapy_text {
    font-size: 1rem;
  }

  .wellness_therapy_circle_top {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
}

/* Animation with unique class names */
@keyframes wellness_therapy_fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wellness_therapy_float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.wellness_therapy_floating {
  animation: wellness_therapy_float 6s ease-in-out infinite;
}

.wellness_therapy_fade_element {
  animation: wellness_therapy_fade 0.8s ease-out forwards;
}

.wellness_therapy_fade_delay1 {
  animation: wellness_therapy_fade 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.wellness_therapy_fade_delay2 {
  animation: wellness_therapy_fade 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

/* Section dividers with unique class names */
.wellness_therapy_divider {
  height: 3px;
  background: linear-gradient(90deg, #6f3073, transparent);
  margin: 2rem 0;
  border-radius: 2px;
}

/* Custom scrollbar with unique class names */
.wellness_therapy_custom_scrollbar::-webkit-scrollbar {
  width: 10px;
}

.wellness_therapy_custom_scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.wellness_therapy_custom_scrollbar::-webkit-scrollbar-thumb {
  background: #6f3073;
  border-radius: 5px;
}

.wellness_therapy_custom_scrollbar::-webkit-scrollbar-thumb:hover {
  background: #5a2860;
}
