/*
  Theme Name: Empathics Theme
  Author: Qtonix Team
  Author URI: https://www.qtonix.com
  Version: 1.0
  Description: Empathics Therapy Template 
*/

/*header part start*/
@font-face {
  font-family: 'Abril Text';
  src: url('assets/fonts/Abril_Text_Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Switzer';
  src: url('assets/fonts/Switzer-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* prevent page horizontal scroll from animated marquees */
html, body {
  overflow-x: hidden;
}

p,
span,
small,
li,
a,
.lead,
.body-text {
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Abril Text', 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.header-section {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  position: fixed;
  width: 100%;
  top: 0;
}

.header-section .navbar {
  padding: 0;
}

.header-section .navbar-brand img {
  max-height: 50px;
}

/* Menu List */
.header-section .navbar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Menu Links */
.header-section .navbar-nav li a {
  color: #a28656 !important;
  padding: 10px 15px !important;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.header-section .navbar-nav li a:hover {
  color: #60313c !important;
}

/* Active / Current Menu Item */
.header-section .navbar-nav .current-menu-item>a,
.header-section .navbar-nav .current_page_item>a {
  color: #006cb7 !important;
  font-weight: 600;
}

.header-section .navbar-nav .current-menu-item>a,
.header-section .navbar-nav .current_page_item>a {
  color: #60313c !important;
  font-weight: 600;
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Menu */
@media (max-width: 991px) {
  .header-section .navbar-nav {
    flex-direction: column;
    background-color: #fff;
    padding: 10px 0;
  }

  .header-section .navbar-nav li {
    width: 100%;
    text-align: left;
  }

  .header-section .navbar-nav li a {
    display: block;
    width: 100%;
  }
}

/*Banner section start*/
.banner-section-wrapper {
  background-image: url(../empathics/assets/images/Banner/banner-bg.png);
  object-fit: cover;
}

.banner-image img {
  width: auto;
  height: 550px;
  box-shadow: 12px 12px #D7B271;
}

.banner-section {
  padding-top: 140px;
  padding-bottom: 50px;
}

.banner-title {
  font-size: 65px;
  color: #60313c;
}

.banner-description {
  color: #65523E;
  width: 80%;
}

.banner-descr-sec {
  color: #65523E;
  width: 80%;
}

.partner-logos p {
  color: #333;
  margin: 15px 0 0 0;
}

.banner-content a {
  text-decoration: none;
}

.btn-get-started {
  margin: 35px 0 50px 0;
}

.swiper-slide {
  width: auto !important;
  margin-right: 10px !important;
}

@media (max-width: 768px) {
  .banner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: unset;
  }
  .banner-section {
      padding-top: 120px;
  }
  .banner-title {
    font-size: 45px;
  }
  .banner-description {
    width: 100%;
  }
  .btn-get-started {
    margin: 20px 0 35px 0;
  }

  .partner-logos p {
    margin: 6px 0 40px 0;
  }
}

/* Scroll Down Mouse Animation */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid #D7B271;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 9px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: #D7B271;
  border-radius: 2px;
  animation: mouse-wheel 1.5s infinite;
}

.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #D7B271;
  border-bottom: 2px solid #D7B271;
  transform: rotate(45deg);
  margin: 5px auto;
  animation: arrow-bounce 1.5s infinite;
}

@keyframes mouse-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes arrow-bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  40% {
    transform: translateY(-5px) rotate(45deg);
  }

  60% {
    transform: translateY(-3px) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .scroll-down {
    bottom: 20px;
  }

  .mouse {
    width: 22px;
    height: 35px;
  }
}

/*Banner section end*/

/*about section start*/
.about-section {
  background-color: #eeebe3;
}
.about-title {
  color: #60313c;
  font-size: 36px;
  line-height: 40px;
}
.about-1 {
  padding: 80px 0 80px 0;
}
.about-2 {
  padding: 40px 0 80px 0;
}
.about-description {
  color: #65523e;
  font-size: 17px;
  line-height: 28px;
  margin: 0 0 15px 0;
}
.about-description h4 {
    color: #60313c;
}
.about-item {
  gap: 12px;
}
.about-item img {
  background: #d7b2712e;
  border-radius: 30px;
  padding: 10px;
  height: 50px;
}
.about-work {
  margin-bottom: 40px;
}
.about-item span {
  color: #65523e;
  font-size: 16px;
}
.btn-book {
  position: relative;
  overflow: hidden;
  background: #d7b271;
  color: #fff;
  padding: 12px 25px;
  border-radius: 3px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #d7b271;
  transition: color 0.4s ease;
  z-index: 1;
}

.btn-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #d7b271;
  z-index: -1;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.btn-book:hover::before {
  width: 0;
}
.btn-book:hover {
  color: #d7b271;
  background: transparent;
}
.about-2 .about-image img {
    border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .about-title {
    width: 100%;
    font-size: 28px;
    padding-top: 30px;
  }

  .about-description {
    text-align: justify;
  }

  .about-1 {
    padding: 0 0 50px 0;
  }

  .about-item {
    gap: 15px;
  }

  .about-2 {
    padding: 0 0 30px 0;
    flex-direction: column-reverse;
  }
  .about-section {
    padding: 50px 0 0 0;
  }
}

/*Footer section start*/
.footer-section {
  background-color: #fff;
  color: #60313c;
}
.footer-description {
  color: #60313c;
  font-size: 16px;
}
.footer-title {
  text-decoration: underline;
  margin-bottom: 25px;
  color: #282828;
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-underline-offset: 12px;
}
.list-unstyled-footer {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-unstyled-footer li {
  margin-bottom: 8px;
}
.list-unstyled-footer li a {
  color: #282828;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 30px;
}

.list-unstyled-footer li a:hover {
  color: #000;
}

/* Social Icons */
.contact-info a i {
  margin: 0 10px 0 0;
}

/* Facebook padding fix */
.list-unstyled li a {
  display: inline-block;
  transition: all 0.3s ease;
  background-color: #60313a;
  color: #fff;
  border-radius: 50%;
  padding: 8px 10px;
  font-size: 15px;
  text-decoration: unset;
}

.list-unstyled li a:hover {
  transform: translateY(-3px);
  color: #fff;
  background-color: #833f4c;
}

.list-unstyled li a i {
  padding: 0 3px 0 3px;
}

.fa-facebooks {
  padding: 0 5px 0 5px !important;
}

/* Copyright */
.copyright {
  background-color: #60313a;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}

.banner-image {
  text-align: center;
}

/* HOW I WORK section */
.how-section {
  background-color: #361C22;
  color: #e9e1b8;
  position: relative;
  overflow: hidden;
}

/* left column artwork */
.how-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.how-left img {
  position: absolute;
  bottom: 0;
}

/* angled cream wedge */
.how-left::before {
  content: "";
  position: absolute;
  left: 32%;
  top: 0;
  bottom: 0;
  width: 40%;
  background: #e9e1b8;
  transform: skewX(194deg);
  transform-origin: left;
  z-index: 1;
}
.img-owner {
  position: relative;
  z-index: 2;
}
.mobile-owner {
  margin: 0 auto;
}
.how-content {
  color: #e9e1b8;
  padding: 60px 0;
}

.how-title {
  color: #d7b271;
  font-size: 35px;
  margin-bottom: 18px;
}
.how-lead,
.how-paragraph {
  color: rgba(233, 225, 184, 0.95);
  line-height: 1.6;
  font-size: 16px;
}
.how-lead {
  color: #fff;
}
.how-paragraph {
  color: #fff !important;
}
.how-list {
  margin-top: 10px;
}
.how-card {
  background: #60313A;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  align-items: center !important;
  gap: 12px;
  border-left: 6px solid #CEAC77;
  display: flex !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.how-card:hover {
  transform: translateY(-3px) !important;
}
.how-icon {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d7b271;
  font-size: 27px;
  margin-right: 12px;
}
.how-text strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 17px;
}
.how-text .small {
  color: #fff !important;
}
.bottom-bar {
  background: #D7B271;
  color: #2b2b2b;
  padding: 14px 0;
  position: relative;
  z-index: 10;
  text-align: center;
}
.coac-ttl {
  text-align: center;
  padding: 0 0 20px 0;
}
.bottom-bar p {
  margin: 0;
  color: #60313A;
}
@media (max-width: 991.98px) {
  .how-left {
    display: none;
  }

  .how-content {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .how-title {
    font-size: 28px;
  }

  .how-card {
    border-left-width: 5px;
    padding: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .img-owner {
    max-width: 72%;
  }

  .how-left {
    min-height: 640px;
  }
}
.how-card:focus,
.how-card:hover {
  transform: translateY(-2px);
  transition: transform .18s ease;
}

@media (max-width: 768px) {
  .coaching-service {
    padding: 40px 0;
  }
  .coaching-service h2 {
    font-size: 28px;
  }
  .coac-ttl {
    text-align: left !important;
    padding: 0 !important;
  }
  .therapy-card {
    padding: 20px 15px !important;
  }
  .therapies-section .section-title {
    text-align: left;
  }
  .section-lead {
    text-align: left;
    padding: 0;
  }
  .scroll-down {
    display: none;
  }
  .coaching-service .container {
    width: 100%;
    padding: 0 15px;
  }
  .coaching-content,
  .coaching-content-new,
  .coaching-services {
    margin-bottom: 30px;
  }
  .service-item {
    margin-bottom: 15px;
    display: flex !important;
  }
  .coaching-image {
    margin-top: 30px;
    text-align: center;
  }
  .coaching-image img {
    max-width: 100%;
    height: auto;
    box-shadow: none;
  }
  .abt-therapy-sec {
    padding: 0 15px;
  }
  .bottom-bar {
    text-align: left;
  }
}

.coaching-content,
.coaching-content-new,
.coaching-services,
.coaching-image {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Coaching Service Section */
.coaching-service {
  background-color: #fff;
  padding: 60px 0;
  display: block;
}
.coaching-service h2 {
  color: #60313c;
  font-size: 36px;
  margin-bottom: 5px;
}
.coaching-service .lead {
  color: #65523e;
  font-size: 18px;
}
.coaching-service p {
  color: #65523e !important;
  font-size: 17px;
  line-height: 30px;
}
.coaching-service .service-item {
  align-items: flex-start;
  display: flex;
}
.coaching-service .service-item i {
  color: #d7b271;
  font-size: 24px;
}
.coaching-service .service-item h6 {
  font-size: 18px;
  color: #60313c;
  margin-bottom: 5px;
}
.coaching-service .service-item p {
  color: #65523e;
}
.coaching-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .coaching-service {
    padding: 40px 0;
  }
  .coaching-service h2 {
    font-size: 28px;
  }

  .coaching-image {
    margin-top: 30px;
  }

  .coaching-image img {
    box-shadow: none;
  }
  .ther-sec {
    text-align: left;
    padding: 0 !important;
  }
  .therapies-section {
    padding: 50px 0 !important;
  }
}
.therapies-section {
  background: #EEEBE3;
  color: #33181b;
  padding: 80px 0;
}
.ther-sec {
  text-align: center;
  padding: 0 0 30px 0;
}
.therapies-section .section-title {
  color: #60313c;
  font-size: 35px;
}
.therapies-section .section-lead {
  margin: 0 auto;
  font-size: 16px;
  color: #65523E !important;
}
.therapy-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 30px;
  box-shadow: 0 8px 18px rgba(95, 66, 66, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform .22s ease, box-shadow .22s ease;
  width: 100%;
}
.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(95, 66, 66, 0.12);
}
.therapy-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.therapy-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: saturate(.9) contrast(.95);
}
.therapy-card:hover .therapy-image img {
  transform: scale(1.03);
}
.therapy-title {
  color: #60313c;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
}
.therapy-title a {
  color: #60313c;
  text-decoration: unset;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .therapy-image img {
    height: 180px;
  }

  .therapies-section .section-title {
    font-size: 22px;
  }
}
.therapies-section .row>[class*="col-"] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coaching-content-new p {
  color: #484848;
  text-decoration: underline;
  font-size: 18px;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #60313A;
  color: #fff;
  padding: 90px 0;
}
.rvw-info img {
  display: none;
}
@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 1.5rem;
  }

  .brand-logo {
    width: 100px;
  }

  .client-trust-sec {
    width: 68% !important;
    bottom: -14px !important;
    left: 15% !important;
  }
}
@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 1.5rem;
  }

  .brand-logo {
    width: 100px;
  }
}
.brand-logo {
  background: #fff;
  padding: 10px 30px;
  max-height: 100px;
  display: flex;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.logo-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo Slider Styles */
.logo-slider {
  padding: 20px 0;
}

.logo-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.logo-slider .swiper-slide {
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.logo-slider .swiper-slide:hover {
  opacity: 0.7;
}

.logo-slider .brand-logo {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  padding: 20px 40px;
}
.ftr-ctnr {
    padding: 40px 15px;
}
@media (max-width: 767px) {
  .logo-slider .brand-logo {
    max-height: 45px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 35px !important;
    width: 9% !important;
  }
  .testimonial-slider {
    padding: 0 !important;
    margin: 40px 0 0 0 !important;
  }
  .copyright {
    padding: 10px 25px;
    font-size: 15px;
  }
  .ftr-ctnr {
    padding: 0 20px 20px 20px !important;
  }
  .testimonial-section {
    padding: 50px 0 !important;
  }
  .owner-note-img {
    height: auto !important;
  }
  .cta-section {
      padding: 50px 0 !important;
  }
}

.testimonial-section h2 {
  font-size: 36px;
  color: #fff;
}

.test-head-dessc {
  color: #fff;
  margin: 0 0 60px 0;
  font-size: 15px;
}

.rvw-crd-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px 0;
}

.quote-font i {
  color: #aa9193;
  font-size: 50px;
}

.rate-revw i {
  color: #ffa600;
  font-size: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 30px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  width: 16%;
}
.rvw-info h6 {
  color: #797979;
  font-size: 19px;
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
}
.rvw-info small {
  color: #797979;
  font-size: 13px;
}

.client-trust-sec {
  background: #fff;
  border-radius: 50px;
  padding: 6px 15px;
  width: 56%;
  margin: 0 auto;
  position: absolute;
  bottom: -25px;
  left: 20%;
  display: flex;
  align-items: center;
}

.client-trust-sec span {
  color: #60313A;
  text-align: left;
  margin: 0 0 0 5px;
  font-size: 13px;
  font-weight: 600;
}

/* Testimonial Slider Styles */
.testimonial-slider {
  position: relative;
  padding: 0 40px;
  /* Make space for navigation arrows */
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #60313c;
  width: 40px;
  height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}
.swiper-pagination {
  display: none;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-fade .swiper-slide {
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

/* Blog Section */
.blog-section {
  background-color: #EEEBE3;
  padding: 80px 0;
}

.blog-title {
  color: #60313c;
  font-size: 36px;
  margin-bottom: 10px;
}

.blog-lead {
  color: #65523E;
  font-size: 15px;
  margin-bottom: 40px;
}

/* Blog Card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

/* Blog Image */
.blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

/* Blog Content */
.blog-content {
  padding: 25px;
}
.blog-date {
  color: #B5B5B5;
  font-size: 14px;
  margin-bottom: 10px;
}
.blog-content h3 {
  color: #60313c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.blog-content p {
  color: #65523E;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.read-more {
  color: #60313C;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  transition: color 0.3s ease;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.read-more:hover {
  color: #3c1c23;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-title {
    font-size: 28px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 16px;
  }
}

/* CTA SECTION */
.cta-section {
  position: relative;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(rgb(83 36 45), rgb(83 36 45)),
    /* overlay */
    url(assets/images/cta-bg.png) center / cover no-repeat;
  background-blend-mode: overlay;
}

/* inner content above overlays */
.cta-section .container,
.cta-section .row {
  position: relative;
  z-index: 2;
}

/* typography */
.cta-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  margin: 20px 0 35px 0;
  max-width: 720px;
  line-height: 1.6;
}

/* form and button */
.cta-form .form-control {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 12px 14px;
  border-radius: 4px;
}

.cta-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* image wrap */
.cta-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-right-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform .35s cubic-bezier(.2, .9, .2, 1);
}

/* subtle float on hover for large screens */
@media (min-width: 992px) {
  .cta-right-img:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

/* responsive stacking */
@media (max-width: 991.98px) {
  .cta-section {
    padding: 36px 0;
  }

  .cta-title {
    font-size: 24px;
    text-align: left;
  }

  .cta-desc {
    font-size: 14px;
  }

  .cta-form {
    gap: 10px;
  }

  .cta-right-img {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .cta-section::before {
    opacity: 0.08;
    background-position: top center;
  }
}

/* small devices: stack with image below text */
@media (max-width: 575.98px) {
  .cta-title {
    font-size: 20px;
  }

  .cta-form .form-control {
    padding: 10px 12px;
  }

  .btn-cta {
    width: 100%;
  }
}

/* Owner Note Section */
.owner-note-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* Left Note Box */
.note-box {
  background-image: url('../empathics/assets/images/signature-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 90px 35px 60px 35px;
  position: relative;
  border-radius: 10px;
}
.note-box:before {
    content: '';
    position: absolute;
    background-image: url('../empathics/assets/images/clip.png');
    background-repeat: no-repeat;
    top: -15px;
    left: 15px;
    height: 100%;
    width: 60px;
    z-index: 9;
}
.note-content {
  max-width: 400px;
  margin: 0 auto;
}

.note-title {
  color: #60313c;
  font-size: 32px;
  margin-bottom: 20px;
}

.note-text {
  color: #65523E;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.signature-img {
  max-width: 150px;
  height: auto;
  margin-top: 10px;
}

/* Right Image */
.owner-image-wrapper {
  position: relative;
  text-align: center;
}

.note-owner-bg {
  position: absolute;
  top: -7%;
  right: -12%;
  width: auto;
  height: 500px;
  z-index: 1;
  opacity: 1.7;
}

.owner-note-img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: 450px;
  border-radius: 20px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .note-box {
    padding: 30px;
  }

  .note-title {
    font-size: 28px;
  }

  .note-text {
    font-size: 15px;
  }

  .signature-img {
    max-width: 120px;
  }

  .owner-image-wrapper {
    margin-top: 30px;
    text-align: center;
  }

  .note-owner-bg {
    top: -2%;
    right: -19%;
  }
}

@media (max-width: 767.98px) {
  .note-box {
    padding: 90px 15px 50px 50px;
  }

  .note-title {
    font-size: 24px;
  }

  .note-text {
    font-size: 14px;
  }

  .signature-img {
    max-width: 100px;
  }

  .owner-image-wrapper {
    margin: 20px auto 0;
    max-width: 400px;
  }
}

/*inner Therapy section start*/
.therapy-bnr-sec-wrapper {
  background: #eaeaea;
  padding: 100px 0 29px 0;
}

.therapy-bnr-img img {
  width: auto;
}

.therapy-bnr-sec {
  padding-top: 50px;
  padding-bottom: 50px;
}

.therapy-bnr-ttl {
  font-size: 65px;
  color: #60313c;
}
.therapy-bnr-desc {
  color: #65523E;
  width: 80%;
}
.therapy-bnr-desc p {
  font-size: 17px;
  line-height: 29px;
}
.therapy-bnr-tag {
  font-size: 18px;
}
.therapy-prtnr-lg p {
  color: #333;
  margin: 15px 0 0 0;
  font-size: 18px;
}
.therapy-bnr-ctnt a {
  text-decoration: none;
}

@media (max-width: 768px) {
  .therapy-bnr-img img {
    width: 100%;
    height: auto;
  }
  .therapy-bnr-sec {
    padding-top: 15px !important;
    padding-bottom: 25px !important;
  }
  .therapy-prtnr-lg {
    padding: 5px 0 25px 0;
  }
  .therapy-bnr-ttl {
    font-size: 28px;
  }
  .therapy-bnr-desc {
    width: 100%;
    margin: 0 0 25px 0;
  }
  .therapy-bnr-img img {
    box-shadow: unset;
  }
  .therapy-prtnr-lg p {
    margin: 6px 0 40px 0;
  }
  .therapy-about-img-sec {
    padding: 40px 0 0 0 !important;
  }
  .therapy-about-img-sec.second {
    padding: 0 0 40px 0 !important;
  }
}

/*Therapy about section start*/
.abt-therapy-ab-ttl {
  color: #60313c;
  font-size: 35px;
  line-height: 47px;
}
.abt-therapy-desc {
  color: #65523e;
  font-size: 17px;
  line-height: 30px;
  margin: 0 0 15px 0;
}
.abt-therapy-desc a {
  color: #60313c;
  text-decoration: unset;
}
.abt-therapy-desc a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .abt-therapy-ab-ttl {
    width: 100%;
    font-size: 25px;
    padding-top: 30px;
  }
  .abt-therapy-desc {
    text-align: justify;
  }
}
.therapy-about-img-sec {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 70px 0;
}
.about-right-img {
  overflow: hidden;
  height: auto;
  width: 100%;
}

/* Therapy maintenance */
.therapy-maintenance-section {
  background-color: #eeebe3;
  padding: 95px 0 80px;
  text-align: center;
  color: #65523e;
  overflow: hidden;
}

/* Heading */
.therapy-maintenance-section .therapy-maintenance-title {
  font-family: 'Abril Text', serif;
  font-size: 36px;
  font-weight: 400;
  color: #60313c;
  margin: 0 0 20px;
  line-height: 50px;
}

/* Each card */
.therapy-maintenance-section .maintenance-item {
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}

/* Icon container so icon sits centered and spaced like snapshot */
.therapy-maintenance-section .maintenance-icon {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(96, 49, 60, 0.03);
  /* subtle outline background */
  border: 2px solid rgba(96, 49, 60, 0.08);
  box-shadow: none;
}

/* Icon image sizing */
.therapy-maintenance-section .maintenance-icon img {
  display: block;
  height: 75px;
  width: 100%;
}

.therapy-maintenance-section .maintenance-title {
  font-family: 'Abril Text', serif;
  font-size: 26px;
  color: #60313c;
  margin: 20px 0 12px;
  line-height: 1.25;
}

/* Description */
.therapy-maintenance-section .maintenance-desc {
  color: #65523E;
  font-size: 17px;
  max-width: 360px;
  margin: 0 auto;
  padding: 0 6px;
}

/* Center call-to-action button - use existing btn-book but tighten spacing for this section */
.therapy-maintenance-section .btn-book {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 30px;
  background: #d7b271;
  color: #fff;
  border: 1px solid #d7b271;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .12s ease;
  box-shadow: none;
}

.therapy-maintenance-section .btn-book:hover,
.therapy-maintenance-section .btn-book:focus {
  background: #caa35a;
  color: #fff;
  transform: translateY(-2px);
}

/* Stagger visual emphasis for center column (slightly larger icon/title) */
/* .therapy-maintenance-section .col-lg-4:nth-child(2) .maintenance-icon img,
.therapy-maintenance-section .col-lg-4:nth-child(2) .maintenance-icon {
    width: 106px;
    height: 106px;
} */
.therapy-maintenance-section .col-lg-4:nth-child(2) .maintenance-title {
  font-size: 28px;
}

/* Responsive rules */
@media (max-width: 991.98px) {
  .therapy-maintenance-section {
    padding: 40px 12px;
  }

  .therapy-maintenance-section .therapy-maintenance-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .therapy-maintenance-section .maintenance-item {
    min-height: auto;
    padding: 10px 12px;
  }

  .therapy-maintenance-section .maintenance-icon {
    width: 88px;
    height: 88px;
  }

  .therapy-maintenance-section .maintenance-icon img {
    width: 52px;
  }

  .therapy-maintenance-section .maintenance-title {
    font-size: 22px;
  }

  .therapy-maintenance-section .maintenance-desc {
    max-width: 420px;
    font-size: 15px;
  }

  .therapy-maintenance-section .btn-book {
    padding: 10px 22px;
  }
}

@media (max-width: 575.98px) {
  .therapy-maintenance-section .therapy-maintenance-title {
    font-size: 28px;
    margin-bottom: 0;
    line-height: 30px;
  }
  .th-cont {
    padding: 0 20px;
  }
  .therapy-challenges .section-lead {
    text-align: center;
  }
  .therapy-maintenance-section .maintenance-title {
    font-size: 18px;
    margin-top: 12px;
  }
  .therapy-maintenance-section .maintenance-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
  }

  .therapy-maintenance-section .maintenance-icon {
    width: 68px;
    height: 68px;
  }

  .therapy-maintenance-section .maintenance-icon img {
    width: 60px;
  }
}

/* Therapy Challenges Section */
.therapy-challenges {
  background-color: #f8f8f8;
  /* width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw; */
}

.therapy-challenges .section-title {
  font-size: 36px;
  color: #60313c;
  margin-bottom: 15px;
  font-family: 'Abril Text', serif;
}

.therapy-challenges .section-lead {
  font-size: 16px;
  color: #65523E;
  max-width: 600px;
  margin: 0 auto;
}

/* Slider Container */
.challenges-slider-row {
  margin-bottom: 30px;
  overflow: hidden;
}

.challenges-slider-row .swiper {
  padding: 10px 0;
}

/* Challenge Cards */
.challenge-card {
  background-color: #f5e6e8;
  border: 2px solid #d9c4c8;
  border-radius: 25px;
  padding: 12px 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #60313c;
  white-space: nowrap;
  transition: all 0.3s ease;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-card:hover {
  background-color: #60313c;
  color: #fff;
  border-color: #60313c;
  transform: scale(1.05);
}

/* Secondary Row Cards */
.challenge-card-secondary {
  background-color: #fef5e8;
  border-color: #f0dcc8;
  color: #b8860b;
}

.challenge-card-secondary:hover {
  background-color: #b8860b;
  color: #fff;
  border-color: #b8860b;
}

/* Swiper Pagination Override */
.therapySliderRTL .swiper-wrapper,
.therapySliderLTR .swiper-wrapper {
  transition-timing-function: linear;
}

/* Responsive Design */
@media (max-width: 768px) {
  .therapy-challenges {
    padding: 50px 0;
  }

  .therapy-challenges .section-title {
    font-size: 28px;
  }

  .therapy-challenges .section-lead {
    font-size: 14px;
  }

  .challenge-card {
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 20px;
    min-height: 40px;
  }

  .challenges-slider-row {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .therapy-challenges .section-title {
    font-size: 24px;
  }

  .challenge-card {
    padding: 8px 14px;
    font-size: 11px;
    border-radius: 18px;
    min-height: 36px;
  }
}

.challenges-track {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.challenges-inner {
  display: inline-flex;
  gap: 15px;
}

.challenge-card {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Animation keyframes */
@keyframes scroll-rtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-ltr {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Apply animations */
.track-rtl .challenges-inner {
  animation: scroll-rtl 50s linear infinite;
}

.track-ltr .challenges-inner {
  animation: scroll-ltr 50s linear infinite;
}

/* FAQ Section */
.faq-section {
  background: #fff;
  color: #241617;
  padding-top: 60px;
  padding-bottom: 60px;
}

.faq-title {
  color: #60313c;
  font-family: 'Abril Text', serif;
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.faq-lead {
  color: #65523e;
  font-size: 15px;
}

/* Accordion styling */
.accordion-button {
  background: transparent;
  color: #33181b;
  border-radius: 8px;
  box-shadow: none;
  padding: 18px 18px;
  border: 1px solid rgba(96, 49, 60, 0.06);
  transition: background .18s ease, transform .12s ease;
}

.accordion-button:not(.collapsed) {
  background: #f7f2ef;
  color: #60313c;
  font-weight: 600;
}

.accordion-item+.accordion-item {
  margin-top: 12px;
}

.accordion-body {
  background: #fff;
  color: #6b6b6b;
  border: 1px solid rgba(96, 49, 60, 0.04);
  border-top: none;
  padding: 18px;
  font-size: 15px;
}

/* FAQ - custom accordion to match snapshot */
.faq-section {
  background: #fff;
  color: #2a1316;
  padding: 80px 0;
}

.faq-title {
  font-family: 'Abril Text', serif;
  color: #60313c;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
}

.faq-lead {
  color: #7a6965;
  max-width: 360px;
  margin-top: 8px;
}

.custom-accordion {
  display: block;
}

.faq-item {
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: visible;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  color: #3b1a1c;
  transition: background 0.18s ease, color .12s ease;
  border-radius: 10px;
}
.faq-q .faq-q-text {
  display: block;
  font-weight: 500;
  font-size: 18px;
}
.faq-q .faq-q-icon {
  color: #8b6060;
  transition: transform .25s ease;
  font-size: 18px;
}
.faq-q.collapsed .faq-q-icon {
  transform: rotate(0deg);
}
.faq-q[aria-expanded="true"] {
  background: #f7f2ef;
  color: #60313c;
}
.faq-q[aria-expanded="true"] .faq-q-icon {
  transform: rotate(90deg);
  color: #60313c;
}

/* answer panel */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s cubic-bezier(.2, .9, .2, 1), padding .3s ease;
  padding: 0 20px;
  border-left: 1px solid rgba(96, 49, 60, 0.04);
  border-right: 1px solid rgba(96, 49, 60, 0.04);
  border-bottom: 1px solid rgba(96, 49, 60, 0.04);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #fff;
}
.faqs-answ {
  margin: 16px 0 18px;
  color: #6b6b6b;
  font-size: 17px;
  line-height: 27px;
}
.faqs-answ ul li {
    padding: 0 0 6px 0;
}
.faq-item.open .faq-a {
  padding: 16px 20px;
  max-height: 400px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .faq-title {
    font-size: 40px;
    text-align: left;
  }

  .faq-section {
    padding: 50px 0;
  }

  .faq-lead {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .faq-title {
      font-size: 28px;
      text-align: center;
      line-height: 30px;
  }
  .faq-lead {
    text-align: center;
    margin-bottom: 18px;
  }

  .col-lg-4.text-lg-start.text-center {
    text-align: center;
  }

  .faq-q {
    padding: 14px 12px;
    font-size: 15px;
  }

  .faqs-answ {
    font-size: 14px;
  }
}

/* Therapy CTA (snapshot replica) */
.therapy-cta {
  background-image: url('assets/images/HandshakeBanner.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

/* subtle overlay so text box stands out on different images */
.therapy-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.06) 100%);
  pointer-events: none;
}

/* left boxed panel */
.therapy-cta .cta-box {
  position: relative;
  z-index: 2;
  background: linear-gradient(rgb(83 36 45), rgb(83 36 45)), url(assets/images/mask-bg.png) center / cover no-repeat;
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 54px 36px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(33, 12, 14, 0.18);
  max-width: 480px;
  margin: 0 auto;
}

.cta-section {
  position: relative;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(rgb(83 36 45), rgb(83 36 45)),
    /* overlay */
    url(assets/images/cta-bg.png) center / cover no-repeat;
  background-blend-mode: overlay;
}

/* typography inside box */
.therapy-cta .cta-title {
  font-family: 'Abril Text', serif;
  font-size: 40px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.5px;
}

.therapy-cta .cta-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin: 0 0 18px;
  max-width: 360px;
}

/* use existing btn-book */
.therapy-cta .btn-book {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
}

/* responsive adjustments */
@media (max-width: 991.98px) {
  .therapy-cta {
    background-position: center right;
    padding: 50px 0;
  }

  .therapy-cta .cta-box {
    padding: 36px 22px;
    max-width: 680px;
  }

  .therapy-cta .cta-title {
    font-size: 34px;
    text-align: center;
  }

  .therapy-cta .cta-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .therapy-cta .btn-book {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }
}

/* small devices: stack and full width */
@media (max-width: 575.98px) {
  .therapy-cta {
    padding: 36px 0;
    background-position: center;
  }

  .therapy-cta .cta-box {
    border-radius: 8px;
    padding: 24px;
  }

  .therapy-cta .cta-title {
    font-size: 28px;
    text-align: left;
  }

  .therapy-cta .cta-lead {
    font-size: 14px;
    text-align: left;
  }
}

/* About banner section (matches snapshot) */
.about-banner-section {
  position: relative;
  background: #f4efe9;
  padding: 70px 0 0 0;
  overflow: visible;
  color: #5e3b3f;
  margin: 0 0 70px 0;
}
.about-banner-section .about-ttl {
  margin-bottom: 18px;
  line-height: 1.02;
  font-size: 65px;
  color: #60313c;
}
.about-banner-section .about-lead h5 {
  font-size: 17px;
  color: #65523E;
  margin-bottom: 22px;
  max-width: 640px;
  font-style: normal;
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 28px;
}
.about-lead p {
  color: #65523E;
  font-size: 17px;
  font-style: normal;
  line-height: 28px;
}
.about-lead {
  position: relative;
}
.arrow-icon img {
  position: absolute;
  top: -50px;
  right: -20px;
}
.about-note {
  color: #6b5550;
  max-width: 540px;
  font-size: 16px;
  margin: 0;
  display: inline-block;
  position: relative;
}
.about-note .arrow-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-left: 14px;
  vertical-align: middle;
  transform: rotate(-18deg);
}
.about-note .arrow-icon img {
  width: 48px;
  height: auto;
  display: block;
}
.about-banner-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.about-banner-image .image-frame {
  background: #fff;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(36, 28, 28, 0.15);
  display: inline-block;
  transform: translateY(60px);
}
.about-banner-image .about-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
}
.test-marquee {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: marquee 18s linear infinite;
}

.test-marquee .test-marq-logo {
  display: block;
  max-height: 110px;
  width: auto;
  object-fit: contain;
  padding: 20px 40px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
}
.logo-marquee-wrap {
  margin-top: 28px;
  overflow: hidden;
  width: 100%;
}
.ltest-marquee-wrap {
  margin-top: 50px;
  overflow: hidden;
  width: 100%;
}
.logo-marquee {
  display: flex;
  gap: 15px;
  align-items: center;
  animation: marquee 18s linear infinite;
}

.logo-marquee .marq-logo {
    filter: grayscale(100%);
    opacity: 0.75;
    display: block;
    max-height: 75px;
    width: auto;
    object-fit: contain;
    padding: 15px 20px;
    background: rgb(255, 255, 255);
    border-radius: 20px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}
.ltest-marquee-wrap {
    overflow: hidden;
    padding: 60px 0 0 0;
}
@media screen and (max-width: 570px) {
  .ltest-marquee-wrap {
    padding: 20px 0 0 0 !important;
  }
}
/* responsive adjustments */
@media (max-width: 991.98px) {
  .about-banner-section {
    padding-bottom: 70px;
  }

  .about-banner-section .about-ttl {
    font-size: 40px;
  }

  .about-banner-section .about-lead {
    font-size: 18px;
  }

  .about-banner-image .image-frame {
    transform: translateY(0);
    margin-top: 30px;
    max-width: 360px;
  }

  .about-note .arrow-icon {
    width: 38px;
  }

  .logo-marquee .marq-logo {
    width: 92px;
  }
  .test-marquee .test-marq-logo {
    width: 92px;
  }
}
@media (max-width: 575.98px) {
  .about-banner-section {
    padding: 120px 0 35px 0 !important;
    margin: 0 0 0 0;
  }
  .about-banner-section .about-ttl {
    font-size: 28px;
  }
  .about-banner-section .about-lead {
    font-size: 16px;
  }
  .about-banner-image .image-frame {
    margin: 45px auto 0;
    transform: translateY(0);
  }
  .logo-marquee {
    gap: 24px;
    animation-duration: 12s;
  }
  .logo-marquee .marq-logo {
    width: 140px;
    padding: 0 15px;
    min-height: 60px;
  }
  .test-marquee .test-marq-logo {
    width: 180px;
    padding: 0 15px;
    min-height: 90px;
  }
  .about-note .arrow-icon img {
    display: none;
  }
}

/* About description section (snapshot design) */
.about-description-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-desc-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-desc-image .rounded-owner-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  display: block;
  /* border-radius: 50%; */
  /* box-shadow: 0 8px 24px rgba(94, 59, 63, 0.12); */
}

.about-desc-content {
  padding-left: 40px;
}
.about-desc-intro {
  font-size: 16px;
  color: #B98F99;
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.about-desc-title {
  font-size: 36px;
  font-weight: 400;
  color: #60313C;
  margin: 0 0 18px;
  line-height: 1.15;
}
.about-desc-subtitle h5 {
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #7b6a66;
  margin: 0 0 10px;
  line-height: 1.8;
  font-weight: 400;
}
.about-desc-subtitle p {
  font-size: 17px;
  color: #65523e;
  margin: 0 0 10px;
  line-height: 1.8;
  font-weight: 400;
}
/* .about-desc-subtitle p strong {
  font-size: 16px;
  color: #60313C;
  margin: 16px 0 0;
} */
.about-description-section .row {
  align-items: center;
}
@media (max-width: 991.98px) {
  .about-description-section {
    padding: 60px 0;
  }

  .about-desc-content {
    padding-left: 20px;
  }

  .about-desc-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .about-desc-image .rounded-owner-img {
    max-width: 320px;
  }
}
@media (max-width: 767.98px) {
  .about-description-section {
    padding: 50px 0;
  }
  .about-description-section .row {
    flex-direction: column-reverse;
  }
  .about-desc-content {
    padding-left: 0;
    margin-top: 0;
  }

  .about-desc-title {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .about-desc-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .about-desc-subtitle p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .about-desc-intro {
    font-size: 13px;
  }

  .about-desc-image .rounded-owner-img {
    max-width: 280px;
  }
}

@media (max-width: 575.98px) {
  .about-description-section {
    padding: 35px 15px;
  }

  .about-desc-title {
    font-size: 24px;
  }

  .about-desc-subtitle {
    font-size: 14px;
  }

  .about-desc-subtitle p {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-desc-image .rounded-owner-img {
    max-width: unset !important;
  }
  .about-me-sec {
    text-align: left !important;
  }
  .arrow-icon img {
    display: none;
  }
}

/* About Me section (snapshot match) */
.about-me-section {
  position: relative;
  background-color: #60313A;
  color: #fff;
  padding: 80px 0 80px;
  overflow: hidden;
}
.about-me-sec {
  text-align: center;
}
.about-me-content p {
  font-size: 16px;
  text-align: left;
}
.about-me-deco-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about-me-section .row{
  display: flex;
  align-items: center;
}
.about-me-deco {
  position: absolute;
  max-width: 320px;
  width: 22%;
  opacity: 0.18;
  transform-origin: center;
  filter: saturate(.35);
}
.about-me-deco.left {
  left: 0;
  top: 50%;
  transform: translate(-10%, -50%) rotate(0deg);
  height: auto;
  width: 100px;
}
.about-me-deco.right {
  right: 1%;
  top: 54%;
  transform: translate(10%, -50%) rotate(180deg);
  height: auto;
  width: 100px;
}
.about-me-ttl {
  font-family: 'Abril Text', serif;
  font-size: 48px;
  color: #fff;
  margin: 0 0 30px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-align: center;
}
.about-me-content {
  max-width: 980px;
  padding: 0 18px;
}
.about-me-paragraph p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.9;
  margin: 0 auto 16px;
  max-width: 1000px;
  text-align: center;
  font-weight: 400;
}

/* subtle centered column spacing for very large screens */
@media (min-width: 1400px) {
  .about-me-content {
    max-width: 1100px;
  }
}

/* responsive rules */
@media (max-width: 991.98px) {
  .about-me-ttl {
    font-size: 42px;
  }

  .about-me-paragraph p {
    font-size: 15px;
    line-height: 1.85;
    padding: 0 18px;
  }

  .about-me-deco {
    width: 28%;
    max-width: 260px;
    opacity: .12;
  }

  .about-me-deco.left {
    left: -6%;
    transform: translateY(-50%) rotate(0deg);
  }

  .about-me-deco.right {
    right: -6%;
    transform: translateY(-50%) rotate(60deg);
  }
}
.about-experience-section h3 {
  color: #60313C;
  font-size: 25px;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .about-me-section {
    padding: 40px 15px;
  }
  .about-experience-section {
    padding: 0 0 30px 0 !important;
  }
  .about-me-ttl {
    font-size: 28px;
    margin-bottom: 14px;
    text-align: left;
  }

  .about-me-paragraph p {
    font-size: 14px;
    line-height: 1.7;
    padding: 0;
    text-align: left;
  }

  /* hide decorative images on small screens for clarity */
  .about-me-deco {
    display: none;
  }

  .about-me-content {
    padding: 0;
  }
}

/* About Integrative Practice section */
.about-integrate-section {
  background-color: #EEEBE3;
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.integrate-content {
  padding-right: 40px;
}
.integrate-title {
  font-family: 'Abril Text', serif;
  font-size: 42px;
  font-weight: 400;
  color: #60313C;
  margin: 0 0 24px;
  line-height: 1.15;
}
.integrate-paragraph p {
    font-size: 16px;
    color: #65523E;
    line-height: 32px;
    margin: 0 0 20px;
    font-weight: 400;
}
.integrate-images {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.integrate-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 991.98px) {
  .about-integrate-section {
    padding: 60px 0;
  }

  .integrate-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .integrate-title {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .integrate-paragraph p {
    font-size: 15px;
  }

  .integrate-images {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .about-integrate-section {
    padding: 50px 0;
  }

  .integrate-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .integrate-paragraph p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .integrate-images {
    margin-top: 24px;
  }

  .integrate-img {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .about-integrate-section {
    padding: 40px 15px;
  }

  .integrate-title {
    font-size: 24px;
  }

  .integrate-paragraph p {
    font-size: 13px;
    line-height: 1.6;
  }

  .integrate-images {
    margin-top: 20px;
  }
}

/* Areas of Experience section */
.areas-title {
  font-family: 'Abril Text', serif;
  font-size: 42px;
  font-weight: 400;
  color: #60313C;
  margin: 0 0 20px;
  line-height: 1.15;
}

.areas-intro {
  font-size: 16px;
  color: #65523E;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Divider line */
.areas-divider {
  width: 2px;
  height: 40px;
  background-color: #60313C;
  margin: 0 auto;
}

/* Experience cards */
.experience-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(96, 49, 60, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  box-shadow: 0 6px 16px rgba(96, 49, 60, 0.12);
  transform: translateY(-2px);
}

.card-number {
  font-family: 'Abril Text', serif;
  font-size: 48px;
  font-weight: 400;
  color: #60313C;
  margin: 0 0 12px;
  opacity: 0.5;
}

.experience-card h3 {
  font-family: 'Abril Text', serif;
  font-size: 23px;
  font-weight: 400;
  color: #60313A;
  margin: 0 0 18px;
  line-height: 1.2;
}

.experience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #65523E;
  line-height: 1.85;
}

.experience-card ul li {
  margin: 0 0 8px;
  padding-left: 20px;
  position: relative;
  color: #65523E;
  font-size: 16px;
}

.experience-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #65523E;
  font-weight: bold;
}

/* Cultural Sensitivity section */
.cultural-paragraph {
  background: #fff;
  padding: 32px 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(96, 49, 60, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin: 0 0 25px 0;
}
.cultural-title {
  font-family: 'Abril Text', serif;
  font-size: 36px;
  font-weight: 400;
  color: #60313C;
  margin: 0 0 22px;
  line-height: 1.15;
}
.cultural-paragraph p {
  font-size: 16px;
  color: #65523E;
  line-height: 1.8;
  margin: 0 0 18px;
  max-width: 100%;
}
.re-exp-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px 0;
}
.re-exp-ttl img {
  height: 80px;
}
@media (max-width: 991.98px) {
  .areas-title {
    font-size: 36px;
  }

  .areas-intro {
    font-size: 14px;
  }

  .experience-card {
    padding: 24px 18px;
  }

  .card-number {
    font-size: 42px;
  }

  .experience-card h3 {
    font-size: 20px;
  }

  .experience-card ul {
    font-size: 13px;
  }

  .cultural-title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .areas-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .areas-intro {
    font-size: 13px;
    line-height: 1.7;
  }

  .experience-card {
    padding: 20px 16px;
    margin-bottom: 20px;
  }

  .card-number {
    font-size: 36px;
    margin-bottom: 8px;
  }

  .experience-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .experience-card ul {
    font-size: 12px;
    line-height: 1.75;
  }

  .experience-card ul li {
    margin-bottom: 6px;
  }

  .cultural-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .cultural-paragraph p {
    font-size: 13px;
    line-height: 1.7;
  }

  .areas-divider {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .areas-title {
    font-size: 24px;
    text-align: left;
  }

  .areas-intro {
    font-size: 12px;
    text-align: left;
    padding: 0;
  }

  .experience-card {
    padding: 18px 14px;
  }

  .card-number {
    font-size: 32px;
  }

  .experience-card h3 {
    font-size: 16px;
  }

  .experience-card ul {
    font-size: 11px;
  }

  .cultural-title {
    font-size: 22px;
  }

  .cultural-paragraph p {
    font-size: 12px;
  }
}

.about-experience-section {
  background-color: #EEEBE3;
  padding: 0 0 50px 0;
  position: relative;
  overflow: hidden;
}
.experience-card p {
  color: #65523E;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 0 5px 0;
}
/* Qualifications section */
.about-qualification-section {
  background-color: #D7B271;
  padding: 56px 0;
  color: #60313A;
  overflow: hidden;
}

.qualification-ttl {
  font-family: 'Abril Text', serif;
  font-size: 36px;
  line-height: 1.05;
  color: #60313A;
  margin: 0 0 22px;
  font-weight: 400;
}
.qualification-list {
  list-style: disc;
  padding-left: 28px;
  margin: 0;
  max-width: 980px;
  color: #65523E;
  font-size: 15px;
  line-height: 1.9;
}
.qualification-list li {
  margin-bottom: 10px;
  color: #65523E;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .about-qualification-section {
    padding: 48px 18px;
  }

  .qualification-ttl {
    font-size: 32px;
    text-align: center;
  }

  .qualification-list {
    font-size: 15px;
    padding-left: 20px;
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .about-qualification-section {
    padding: 36px 14px;
  }

  .qualification-ttl {
    font-size: 28px;
    text-align: left;
    line-height: 40px;
  }

  .qualification-list {
    font-size: 14px;
    line-height: 1.7;
    padding-left: 18px;
  }
}

/* Disable AOS animations on small screens (mobile) */
@media (max-width: 575.98px) {

  /* Remove transforms, transitions and animations for any AOS-marked elements */
  [data-aos],
  [data-aos] * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Inner Banner Section */
.inner-banner {
  background-color: #60313A;
  padding: 120px 0 50px 0;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner-title {
  font-family: 'Abril Text', serif;
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.inner-banner-breadcrumb {
  font-size: 15px;
}

.breadcrumb-wrap {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-wrap a {
  color: #d7b271;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-wrap a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb-wrap span {
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 991.98px) {
  .inner-banner {
    padding: 50px 0;
  }

  .inner-banner-title {
    font-size: 36px;
  }

  /* Hide decoration images on tablet and below */
  .inner-banner::before,
  .inner-banner::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .inner-banner {
    padding: 100px 0 30px 0;
  }

  .inner-banner-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .inner-banner-breadcrumb {
    font-size: 13px;
  }
}

/* Reviews Main Section */
.reviews-main-section {
  padding: 70px 0 80px 0;
  position: relative;
  overflow: hidden;
}

/* Masonry layout */
.reviews-main-grid {
  column-count: 2;
  column-gap: 30px;
}

.review-main-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  break-inside: avoid;
}

/* Tablet */
@media (max-width: 991px) {
  .reviews-main-grid {
    column-count: 2;
    column-gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-main-grid {
    column-count: 1;
    column-gap: 20px;
  }
}


/* Review Card */
.review-main-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgb(74 32 40 / 35%);
}

.review-main-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.16);
}

/* Quote Icon */
.review-main-quote-icon {
  margin-bottom: 20px;
}

.review-main-quote-icon span {
  font-size: 54px;
  color: #9B8B7E;
  font-weight: 700;
  line-height: 1;
}

/* Star Rating */
.review-main-rating {
  margin-bottom: 25px;
  display: flex;
  gap: 4px;
}

.review-main-rating i {
  color: #FFA500;
  font-size: 18px;
}

/* Review Text */
.review-main-text {
  color: #7B7B7B;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
  margin: 0 0 25px 0;
}

/* Author Section */
.review-main-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-main-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.review-main-author-info {
  display: flex;
  flex-direction: column;
}

.review-main-author-name {
  color: #60313a;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.review-main-author-title {
  color: #999;
  font-size: 14px;
  margin: 2px 0 0;
}

/* Responsive - Tablet */
@media (max-width: 991.98px) {
  .reviews-main-section {
    padding: 60px 0;
  }

  .reviews-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .review-main-card {
    padding: 32px 28px;
  }

  .review-main-quote-icon span {
    font-size: 48px;
  }

  .review-main-rating i {
    font-size: 16px;
  }

  .review-main-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .reviews-main-section {
    padding: 50px 0;
  }

  .reviews-main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-main-card {
    padding: 28px 24px;
  }

  .review-main-quote-icon span {
    font-size: 42px;
  }

  .review-main-rating i {
    font-size: 16px;
  }

  .review-main-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .review-main-avatar {
    width: 45px;
    height: 45px;
  }

  .review-main-author-name {
    font-size: 14px;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 575.98px) {
  .reviews-main-section {
    padding: 40px 15px;
  }

  .reviews-main-grid {
    gap: 16px;
  }

  .review-main-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .review-main-quote-icon span {
    font-size: 38px;
  }

  .review-main-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .review-main-rating i {
    font-size: 14px;
  }

  .review-main-avatar {
    width: 40px;
    height: 40px;
  }

  .review-main-author-name {
    font-size: 13px;
  }

  .review-main-author-title {
    font-size: 11px;
  }

  .new-rvw-sec h2 {
    font-size: 22px;
  }

  .new-rvw-sec p {
    font-size: 14px;
  }
}

.review-main-quote-icon i {
  color: #aa9193;
  font-size: 50px;
}

.new-rvw-rw {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-main-rating i {
  font-size: 25px;
}

.new-rvw-sec h2 {
  font-size: 36px;
  color: #60313a;
}

.new-rvw-sec p {
  color: #65523e;
  font-size: 16px;
}
.new-rvw-sec {
  padding: 0 0 50px 0;
}
.contact-main-section {
  background: url(assets/images/contact-bg.webp);
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact-main-imgWrap p {
  font-size: 17px;
  color: #fff;
  line-height: 30px;
}
.contact-main-imgWrap {
  align-items: center;
  height: 100%;
  background: #0a0a0a94;
  border-radius: 10px;
  padding: 25px 35px;
}
.contact-main-card {
  background: #d7b271;
  border-radius: 10px;
  overflow: hidden;
  max-width: 640px;
  margin-left: auto;
}
.contact-main-imgWrap h3 {
  font-family: 'Abril Text', serif;
  font-size: 33px;
  color: #d7b271;
}
.fluent_form_1 .ff-el-form-control {
  border-radius: 6px;
  border: 1px solid rgba(36, 22, 23, 0.08);
  padding: 12px 14px;
  font-size: 15px;
  box-shadow: none;
}
.contact-main-field:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(96, 49, 60, 0.12);
  border-color: rgba(96, 49, 60, 0.2);
}
.contact-main-btn {
  background: #7a2ef0;
  /* adjust to your primary CTA color; replace if needed */
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(122, 46, 240, 0.12);
}

.contact-main-btn:hover {
  background: #6625d0;
  box-shadow: 0 12px 26px rgba(102, 37, 208, 0.12);
}

/* Make form and image sit nicely on large screens */
@media (min-width: 992px) {
  .contact-main-card {
    margin-left: 40px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .contact-main-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .contact-main-card {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .contact-main-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .contact-main-imgWrap {
    justify-content: center;
    margin-bottom: 18px;
  }

  .contact-main-card {
    border-radius: 12px;
  }
}
.cont-smbt-btn {
  position: relative;
  overflow: hidden;
  background: #60313a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 3px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #60313a;
  transition: color 0.4s ease;
  z-index: 1;
width:100%;
}
.cont-smbt-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #60313a;
  z-index: -1;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}
.fluent_form_1 input{
	width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
}
.contact-left-content a {
  color: #d7b271;
  text-decoration: unset;
}
/* Single Post Section */
.single-post-section {
  background: #faf8f6;
  padding: 60px 0;
}

.single-post-sec {
  background: #fff;
  padding: 1px 30px 20px 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.post-date {
  color: #8b7a77;
  font-size: 14px;
  margin-bottom: 24px;
}

.post-featured-image {
  margin: 30px 0;
}

.post-featured-image img {
  width: 100%;
}

.post-content {
  color: #65523E;
  font-size: 15px;
  line-height: 1.8;
}

.post-content h1 {
  color: #60313a;
  font-weight: 200;
  font-size: 36px;
}

.post-content h2 {
  color: #60313a;
  font-size: 24px;
  font-weight: 300;
  margin: 30px 0 10px 0;
}

.post-content h3 {
  color: #60313a;
  font-weight: 300;
  font-size: 20px;
}

.post-content p {
  margin-bottom: 16px;
}

/* Latest Posts Widget Sidebar */
.latest-posts-widget {
  background: #fff;
  padding: 28px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}

.widget-title {
  font-family: 'Abril Text', serif;
  font-size: 24px;
  color: #60313C;
  margin: 0 0 24px;
  font-weight: 400;
}

.latest-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Latest Post Item - Grid with thumbnail left, content right */
.latest-post-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  background: #f9f7f4;
  text-decoration: none;
  color: inherit;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  cursor: pointer;
}

.latest-post-item:hover {
  background: #eeebe3;
  box-shadow: 0 4px 12px rgba(96, 49, 60, 0.1);
  transform: translateY(-1px);
}

.latest-post-thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
}

.latest-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.latest-post-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.latest-post-content h5 {
  font-family: 'Abril Text', serif;
  font-size: 14px;
  color: #60313C;
  margin: 0 0 6px;
  line-height: 1.2;
}

.latest-post-content p {
  font-size: 12px;
  color: #8b7a77;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 767.98px) {
  .single-post {
    padding: 24px;
  }

  .post-title {
    font-size: 32px;
  }

  .latest-posts-widget {
    margin-top: 30px;
    position: static;
  }

  .latest-post-item {
    grid-template-columns: 80px 1fr;
  }

  .latest-post-thumbnail {
    width: 80px;
    height: 80px;
  }
}

/* Ensure parent is positioned for absolute submenu */
.navbar-nav .menu-item-has-children {
  position: relative;
}

/* Submenu base */
.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  color: inherit;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 999;
}

/* Submenu item */
.navbar-nav .sub-menu li {
  margin: 0;
}

.navbar-nav .sub-menu li a {
  display: block;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

/* Show on hover for pointer-capable devices */
@media (hover: hover) and (pointer: fine) {
  .navbar-nav .menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

/* Caret rotation (if you add <i class="dropdown-caret">) */
.navbar-nav .dropdown-caret {
  transition: transform .28s ease;
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
}

@media (hover: hover) and (pointer: fine) {
  .navbar-nav .menu-item-has-children:hover>a .dropdown-caret {
    transform: rotate(180deg);
  }
}

/* Mobile/tablet: submenus become stacked and are toggled via JS (or .submenu-open) */
@media (max-width: 991.98px) {
  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .sub-menu {
    position: static;
    top: auto;
    left: auto;
    box-shadow: none;
    background: transparent;
    padding-left: 14px;
    display: none;
  }

  /* When JS adds .submenu-open to parent, show submenu */
  .navbar-nav .menu-item-has-children.submenu-open>.sub-menu {
    display: block;
  }

  /* Optional: visually indicate open parent */
  .navbar-nav .menu-item-has-children.submenu-open>a {
    opacity: 0.95;
  }

  /* rotate caret when open on mobile */
  .navbar-nav .menu-item-has-children.submenu-open>a .dropdown-caret {
    transform: rotate(180deg);
  }
}

.sub-menu {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.sub-menu li {
  list-style-type: none !important;
}

.navbar-nav .sub-menu li:hover {
  background: #d7b271;
}

.tst-ctnt {
  color: #6c757d;
}

/* Floating Button */
.float-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.my-float-wp {
  margin: 0 auto;
  transition: color 0.3s ease;
}

.float-btn:hover .my-float-wp {
  color: #fff;
}

.float-btn:hover {
  background-color: #1ebe5b;
  transform: scale(1.12);
  box-shadow: 3px 3px 10px #777;
}

.how-paragraph h6 {
  color: #d7b271;
  font-family: 'Switzer', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.ac-css {
  padding: 0;
}
.about-2 .about-title {
  text-align: center;
  padding: 0 0 40px 0;
}
@media (max-width: 575.98px) {
  .about-2 .about-title {
    text-align: left;
    padding: 0 0 5px 0;
  }
  .about-content {
    padding: 0 15px;
  }
  .about-work {
    padding: 0 15px;
  }
  .about-section .btn-book {
    margin: 0 15px;
  }
}
.related-overall-content p {
  font-size: 16px;
  color: #65523E;
  line-height: 1.8;
  margin: 0 0 18px;
  max-width: 100%;
}
/* Sponsors Grid Section */
.sponsors-grid-wrap {
  margin-top: 50px;
  padding: 40px 0;
  background-color: #f5f5f5;
  border-radius: 12px;
}
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  /* gap: 20px; */
  align-items: center;
  justify-content: center;
}
.sponsor-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* flex: 0 1 auto; */
  min-width: 150px;
}
.sponsor-logo {
  display: block;
  max-height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sponsor-logo-item {
    padding: 15px;
    max-width: 150px;
  }

  .sponsor-logo {
    max-height: 80px;
  }
}

@media (max-width: 576px) {
  .sponsor-logo-item {
    padding: 10px;
    max-width: 120px;
  }

  .sponsor-logo {
    max-height: 45px;
  }
}
.faqs-answ a {
  text-decoration: unset;
}
.btn-secondaries {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: #d7b271;
  padding: 12px 25px;
  border-radius: 3px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #d7b271;
  transition: color 0.4s ease;
  z-index: 1;
}

.btn-secondaries::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: #d7b271;
  z-index: -1;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.btn-secondaries:hover::before {
  width: 100%;
}

.btn-secondaries:hover {
  color: #fff;
  background: #d7b271;
}
@media screen and (max-width: 540px) {
	.btn-book, .btn-secondaries{
		padding: 12px 7px;
	}
}