/* ----------------------------------------------------------------------------------------
* Author        : MarketKarma
* Template Name : Dr. Boz 21 Day Metabolic Kick Site
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Service css
07. What We Do css
08. Why Choose Us css
09. Our Expertise css
10. Intro Video css
11. Our Programs css
12. How It Work css
13. Book Appointment css
14. Our FAQs css
15. Our Testimonial css
16. Our Blog css
17. Footer css
18. About Us Page css
19. Services Page css
20. Service Single css
21. Blog Archive css
22. Blog Single css
23. Programs Page css
24. Program Single css
25. Team Page css
26. Team Single css
27. Testimonial Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. Book Appoiment Page css
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #1e1e1e;
  --secondary-color: #eaeef1;
  --text-color: #666b70;
  --accent-color: #f9d67b;
  --accent-color-secondary: #ffd200;
  --accent-secondary-color: #042e45;
  --white-color: #ffffff;
  --divider-color: #f1f1f1;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: 'DM Sans', sans-serif;
  --accent-font: 'Epilogue', sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  position: relative;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--white-color);
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

::selection {
  color: var(--white-color);
  background-color: var(--accent-secondary-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--accent-font);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.image-anime:after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
  cursor: pointer;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  font-family: var(--accent-font);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50px;
  padding: 18px 30px;
  border: none !important;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default::after,
.btn-default::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--accent-secondary-color);
  transform: skew(15deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default::before {
  left: -10px;
}

.btn-default::after {
  right: -10px;
}

.btn-default:hover::after,
.btn-default:hover::before {
  width: 60%;
}

.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}

.btn-default.btn-highlighted::after,
.btn-default.btn-highlighted::before {
  background: var(--white-color);
}

.btn-default.btn-accent {
  background: var(--accent-color-secondary) !important;
}

.btn-default.btn-accent:hover {
  color: var(--white-color) !important;
}

.btn-default.btn-accent::before,
.btn-default.btn-accent::after {
  background: var(--primary-color) !important;
}

.readmore-btn {
  position: relative;
  font-family: var(--accent-font);
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: var(--accent-secondary-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-2px, -50%);
  background: url('../images/arrow-accent.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 18px;
  height: 14px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:after {
  transform: translate(0, -50%);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--accent-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bg-section {
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  background-color: var(--secondary-color);
  border-radius: 50px;
}

.accent-section {
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  background-color: var(--accent-secondary-color) !important;
  border-radius: 50px;
}

.bg-section.dark-section {
  position: relative;
  background: url('../images/hero-bg.png'), var(--accent-secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-section.dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: radial-gradient(
    38.51% 48.25% at 50.45% 50.9%,
    rgba(1, 78, 78, 0) 0.01%,
    #042e45 100%
  );
  border-radius: 50px;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.bg-section.dark-section .container {
  position: relative;
  z-index: 1;
}

.section-row {
  margin-bottom: 80px;
}

.inner-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.inner-padding-small {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
  text-transform: capitalize;
  color: var(--accent-secondary-color);
  background: url('../images/icon-sub-heading.svg') no-repeat;
  background-position: left top;
  background-size: 22px auto;
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 10px;
}

.section-title h1 {
  font-size: 74px;
  font-weight: 700;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.bg-section.dark-section .section-title-content p,
.bg-section.dark-section .section-title p,
.bg-section.dark-section .section-title h3,
.bg-section.dark-section .section-title h2,
.bg-section.dark-section .section-title h1 {
  color: var(--white-color);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid var(--dark-divider-color);
  background: transparent;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

.main-header.bg-section {
  border-radius: 0;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--accent-secondary-color);
  border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
  padding: 25px 0;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand .brand-text {
  font-family: var(--default-font);
  font-weight: 800;
  color: var(--white-color);
  font-size: 26px;
  line-height: 1.1em;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.2));
}

.navbar-brand .brand-text:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.navbar-brand .brand-text .highlight {
  color: var(--accent-color);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-color), #fff1c5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 991px) {
  .navbar-brand .brand-text {
    font-size: 24px;
    letter-spacing: -0.2px;
  }
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0;
  position: relative;
}

.main-menu ul li a {
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  padding: 15px 15px !important;
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: '\f105';
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--primary-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--accent-secondary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--accent-secondary-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background-color: var(--accent-secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background-color: var(--accent-secondary-color);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-family: var(--accent-font);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--accent-secondary-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--accent-secondary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  padding: 155px 0 0;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100%;
  border-radius: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../images/hero-bg-leaf.png') no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}

.hero.hero-bg-image {
  background: url('../images/hero-image-21dmk.png') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 285px 0 180px;
  overflow: hidden;
  cursor: pointer;
}

.hero.hero-bg-image.bg-section.dark-section::before {
  background: var(--primary-color);
  opacity: 70%;
  border-radius: 0;
  z-index: 1;
}

.hero.hero-bg-image::after {
  display: none;
}

.hero.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
  background: none;
  padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
  position: relative;
  background: url('../images/hero-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 285px 0 180px;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide.slide-2 {
  background: url('../images/hero-bg-2.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
  position: absolute;
  bottom: 50px;
  text-align: center;
  z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--dark-divider-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.hero.hero-bg-image .hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero.hero-bg-image .hero-content .section-title p {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10px;
}

.hero-content-body {
  display: flex;
  align-items: center;
  gap: 20px 30px;
}

.hero.hero-bg-image .hero-content .hero-content-body {
  justify-content: center;
}

.hero-course-date-box {
  display: inline-flex;
  align-items: center;
  text-align: left;
}

.hero-course-date-box-content p {
  color: var(--white-color);
  margin-bottom: 5px;
}

.contact-now-box {
  display: inline-flex;
  align-items: center;
  text-align: left;
}

.contact-now-box .icon-box {
  position: relative;
  background: var(--dark-divider-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box {
  background-color: var(--accent-color);
}

.contact-now-box .icon-box img {
  max-width: 24px;
  transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.contact-now-box-content p {
  color: var(--white-color);
  margin-bottom: 5px;
}

.contact-now-box-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.contact-now-box-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
  color: var(--accent-color);
}

.hero-content-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.trusted-client-images {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.client-image {
  position: relative;
  border: 1px solid var(--accent-secondary-color);
  border-radius: 50%;
  margin-left: -10px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.client-image:first-child {
  margin: 0;
}

.client-image figure {
  display: block;
}

.client-image img {
  width: 100%;
  border-radius: 50%;
}

.client-image.add-more {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.client-image.add-more h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.trusted-client-review p {
  color: var(--white-color);
  margin-bottom: 0;
}

.trusted-client-review p i {
  color: var(--accent-color);
  margin: 0 6px;
}

.hero-image {
  position: relative;
}

.hero-image figure {
  display: block;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1 / 1.075;
  object-fit: cover;
}

.hero-experience-box {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  max-width: 200px;
  background-color: var(--accent-color);
  box-shadow: 0px 0px 11.8px 0px #0000001f;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  padding: 15px;
  animation: experienceobject 3s infinite linear alternate;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

@keyframes experienceobject {
  50% {
    right: 40px;
  }
}

.hero-experience-box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--white-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.hero-experience-box:hover::before {
  top: auto;
  height: 100%;
}

.hero-experience-box h2,
.hero-experience-box p {
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.hero-experience-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.2;
}

.hero-experience-box p {
  width: 100%;
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.125rem;
}

.hero-experience-box:hover h2,
.hero-experience-box:hover p {
  color: var(--accent-secondary-color);
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us-images {
  position: relative;
  padding: 15px 245px 15px 25px;
}

.about-us-img-1 {
  transform: rotate(-6.46deg);
}

.about-us-img-1,
.about-us-img-2 {
  border-radius: 30px;
}

.about-us-img-1 figure {
  display: block;
  border-radius: 30px;
}

.about-us-img-1 img {
  width: 100%;
  aspect-ratio: 1 / 1.48;
  object-fit: cover;
  object-position: right;
  border-radius: 30px;
}

.about-us-img-2 {
  position: absolute;
  top: 15px;
  right: 25px;
  transform: rotate(10.67deg);
  width: 100%;
  max-width: 250px;
  border: 5px solid var(--white-color);
}

.about-us-img-2::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 20px;
  background: url('../images/about-us-arrow.svg') no-repeat;
  background-position: center center;
  background-size: contain;
  height: 110px;
  width: 83px;
  transform: translateY(100%) rotate(-10.67deg);
}

.about-us-img-2 figure {
  display: block;
  border-radius: 24px;
}

.about-us-img-2 img {
  width: 100%;
  aspect-ratio: 1 / 1.405;
  object-fit: cover;
  border-radius: 24px;
}

.about-us-images .hero-experience-box {
  top: auto;
  bottom: 0;
  right: 100px;
}

.about-us-images .hero-experience-box:before {
  background: var(--accent-secondary-color);
}

.about-us-images .hero-experience-box:hover h2,
.about-us-images .hero-experience-box:hover p {
  color: var(--white-color);
}

.about-us-body {
  position: relative;
  background: var(--secondary-color);
  border-left: 3px solid var(--accent-secondary-color);
  border-radius: 10px;
  padding: 45px 30px;
  overflow: hidden;
  cursor: pointer;
}

.about-us-body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-secondary-color);
  height: 100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-us-body ul {
  position: relative;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.about-us-body ul li {
  position: relative;
  width: calc(50% - 15px);
  line-height: 1.5em;
  text-transform: capitalize;
  padding-left: 30px;
  transition: all 0.4s ease-in-out;
  color: var(--white-color);
}

.about-us-body ul li::before {
  content: '\f058';
  position: absolute;
  font-family: 'FontAwesome';
  font-weight: 900;
  left: 0;
  top: 0;
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.about-us-footer {
  display: flex;
  gap: 20px 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-author-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-author-box .author-image {
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  padding: 6px;
}

.about-author-box .author-image figure {
  display: block;
  border-radius: 50%;
}

.about-author-box .author-image img {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
}

.about-author-box .author-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.about-author-box .author-info p {
  margin-bottom: 0;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-service-content {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.service-item {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
  cursor: pointer;
}

.service-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
  height: 100%;
}

.service-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-secondary-color);
  border-radius: 50%;
  margin-bottom: 40px;
  z-index: 1;
}

.service-item .icon-box img {
  width: 100%;
  max-width: 30px;
}

.service-item-content {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.service-item-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-item-content h3 a {
  color: inherit;
}

.service-item-content p {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
  color: var(--primary-color);
}

.service-readmore-btn {
  position: relative;
  z-index: 1;
}

.page-cta-box {
  position: relative;
  background: url('../images/metabolic-kick-video-chat.png') no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  align-content: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
  cursor: pointer;
}

.page-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--primary-color);
  opacity: 50%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-cta-box-info,
.page-cta-box .contact-now-box {
  position: relative;
  z-index: 1;
}

.page-cta-box-info {
  margin-bottom: 30px;
}

.page-cta-box-info h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-cta-box-info h2 {
  font-size: 30px;
  color: var(--white-color);
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.section-footer-text p {
  margin-bottom: 0;
}

.section-footer-text span {
  font-family: var(--accent-font);
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary-color);
  background: var(--accent-color);
  padding: 4px 10px;
  border-radius: 100px;
  margin-right: 10px;
}

.section-footer-text p a {
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-secondary-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--accent-color);
}

/************************************/
/***      07. What We Do css      ***/
/************************************/

.what-we-do {
  padding: 100px 0;
}

.what-we-do-image-1 figure,
.what-we-do-image-2 figure {
  display: block;
  border-radius: 20px;
}

.what-we-do-image-1 img,
.what-we-do-image-2 img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.what-we-do-image-1 img {
  aspect-ratio: 1 / 1.455;
}

.what-we-do-content .section-row {
  margin-bottom: 40px;
}

.what-we-list-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.what-we-list-item:last-child {
  margin-bottom: 0;
}

.what-we-list-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-secondary-color);
  border-radius: 50%;
  margin-right: 20px;
}

.what-we-list-item .icon-box:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.what-we-list-item:hover .icon-box::before {
  transform: scale(1);
}

.what-we-list-item .icon-box img {
  width: 100%;
  max-width: 30px;
  transition: all 0.3s ease-in-out;
}

.what-we-list-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.what-we-do-list-content {
  width: calc(100% - 80px);
}

.what-we-do-list-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.what-we-do-list-content p {
  margin-bottom: 0;
}

/* Hover Reveal Interaction */
.hover-reveal-item .what-we-do-list-content p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.hover-reveal-item:hover .what-we-do-list-content p {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .hover-reveal-item .what-we-do-list-content p {
    max-height: none;
    opacity: 1;
    margin-top: 0;
  }
}

/* Scrollable List Container */
.scrollable-content-box {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 15px;
  margin-top: 20px;
}

/* Custom Scrollbar */
.scrollable-content-box::-webkit-scrollbar {
  width: 6px;
}

.scrollable-content-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.scrollable-content-box::-webkit-scrollbar-thumb {
  background-color: var(--accent-secondary-color);
  /* Use theme color */
  border-radius: 3px;
}

.what-we-do-image-2 img {
  aspect-ratio: 1 / 0.975;
}

/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
  padding: 100px 0 0;
}

.why-choose-item {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.why-choose-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-choose-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  min-width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
}

.why-choose-item:hover .icon-box {
  border-color: transparent;
}

.why-choose-item .icon-box:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.why-choose-item:hover .icon-box::before {
  transform: scale(1);
}

.why-choose-item .icon-box img {
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  filter: brightness(0) invert(1);
}

.why-choose-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.why-choose-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.why-choose-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.why-choose-image {
  margin: 0 50px;
}

.why-choose-image figure {
  display: block;
}

.why-choose-image img {
  width: 100%;
  aspect-ratio: 1 / 1.47;
  object-fit: cover;
  object-position: right;
}

/************************************/
/***     09. Our Expertise css    ***/
/************************************/

.our-expertise {
  padding: 100px 0;
}

.expertise-image {
  margin-right: -130px;
}

.expertise-image figure {
  display: block;
  border-radius: 20px;
}

.expertise-image img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: 20px;
}

.expertise-box-list {
  position: relative;
  z-index: 1;
}

.expertise-box {
  position: relative;
  background: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000d;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
  cursor: pointer;
}

.expertise-box::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.expertise-box:hover::after {
  height: 100%;
}

.expertise-box:last-child {
  margin-bottom: 0;
}

.expertise-box-content {
  position: relative;
  z-index: 1;
}

.expertise-box-content h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.expertise-box-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.expertise-box:hover .expertise-box-content p {
  color: var(--primary-color);
}

.expertise-box-btn {
  position: relative;
  z-index: 1;
}

/************************************/
/***      10. Intro Video css     ***/
/************************************/

.intro-video.bg-section.dark-section {
  background: url('../images/drboz-video-thumbnail.png') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 180px 0 50px;
}

.full-section-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block;
}

.what-you-get-video.bg-section.dark-section {
  background: url('../images/21dmk-video-thumnbail.png') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 180px 0 365px;
}

.promo-video.bg-section.dark-section {
  background: url('../images/drboz-video-thumbnail.png') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 180px 0 50px;
}

.success-stories-video.bg-section.dark-section {
  background: url('../images/21dmk-success-stories-video-thumbnail.png') no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 180px 0 365px;
}

.intro-video.bg-section.dark-section::before {
  background: var(--primary-color);
  opacity: 50%;
}

.intro-video-circle {
  position: relative;
  text-align: center;
}

.intro-video-circle a {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  cursor: none;
}

.intro-video-circle a figure {
  display: block;
}

.intro-video-circle a figure img {
  width: 100%;
  border-radius: 50%;
  max-width: 160px;
  animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.into-video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.into-video-play-icon i {
  font-size: 30px;
  color: var(--primary-color);
  margin-left: 2px;
  transition: all 0.3s ease-in-out;
}

.intro-video-circle a:hover .into-video-play-icon {
  background-color: var(--accent-secondary-color);
}

.intro-video-circle a:hover .into-video-play-icon i {
  color: var(--accent-color);
}

.into-video-play-icon {
  animation: video-pulse 2s infinite;
}

@keyframes video-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 214, 123, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(249, 214, 123, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 214, 123, 0);
  }
}

.video-watch-prompt {
  display: block;
  margin-top: 15px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.intro-video-counter-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 190px;
  padding-top: 50px;
}

.intro-video-counter-item {
  width: calc(20% - 24px);
}

.intro-video-counter-item h2 {
  font-size: 46px;
  color: var(--white-color);
  margin-bottom: 5px;
}

.intro-video-counter-item p {
  color: var(--white-color);
  margin-bottom: 0;
}

/************************************/
/***     11. Our Programs css     ***/
/************************************/

.our-programs {
  padding: 100px 0 70px;
}

.program-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.program-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.program-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--primary-color);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.program-item:hover .program-image::before {
  opacity: 40%;
}

.program-image a,
.program-image figure {
  display: block;
  cursor: none;
}

.program-image figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 42.53%, rgba(30, 30, 30, 0.8) 100%);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.program-image img {
  width: 100%;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.program-item:hover .program-image img {
  transform: scale(1.1);
}

.program-body {
  position: absolute;
  left: 30px;
  bottom: 50px;
  right: 30px;
  z-index: 1;
}

/* Remove translate transform on body since we animate height */
/* .program-item:hover .program-body rule removed as it is not needed */

.program-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.program-content h3 a {
  color: inherit;
  text-decoration: none;
}

.program-image-right img {
  object-position: right center;
}

.program-readmore-btn {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.program-item:hover .program-readmore-btn {
  max-height: 200px;
  /* Allow expansion */
  opacity: 1;
  visibility: visible;
  margin-top: 15px;
  color: var(--white-color);
}

/************************************/
/***      12. How It Work css     ***/
/************************************/

.how-it-work {
  padding: 100px 0 260px;
}

.how-it-work-steps {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.how-work-step-item {
  width: calc(25% - 22.5px);
}

.how-work-step-item .icon-box {
  position: relative;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 30px;
}

.how-work-step-item .icon-box:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.how-work-step-item:hover .icon-box::before {
  transform: scale(1);
}

.how-work-step-item .icon-box img {
  width: 100%;
  max-width: 50px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}

.how-work-step-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.how-work-no {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  height: 30px;
  width: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-work-no h3 {
  font-size: 18px;
}

.how-work-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
}

.how-work-content p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/***   13. Book Appointment css   ***/
/************************************/

.book-appointment {
  position: relative;
  margin-top: -150px;
  z-index: 2;
}

.book-appointment-box {
  border: 1px solid var(--divider-color);
  box-shadow: 0px 0px 30px 0px #0000000d;
  background: var(--white-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
  padding: 100px;
}

.book-appointment-content {
  width: calc(48% - 30px);
}

.book-appointment-image figure {
  display: block;
  border-radius: 20px;
}

.book-appointment-image img {
  width: 100%;
  aspect-ratio: 1 / 0.555;
  object-fit: cover;
  border-radius: 20px;
}

.book-appointment-form {
  width: calc(52% - 30px);
}

.book-appointment-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
  background-color: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.book-appointment-form .form-control::placeholder {
  color: var(--text-color);
}

.book-appointment-form .form-control.form-select {
  padding: 17px 35px 17px 20px;
}

.book-appointment-form .form-control.form-select option {
  font-weight: 500;
  color: var(--accent-secondary-color);
}

/************************************/
/***       14. Our FAQs css	      ***/
/************************************/

.our-faqs {
  padding: 100px 0;
}

.faq-images {
  position: relative;
  background: url('../images/faq-image-star.svg') no-repeat;
  background-size: 55px auto;
  background-position: bottom 205px left 100px;
  padding: 0 190px 270px 0;
  margin-right: 20px;
}

.faq-image-1 {
  position: relative;
}

.faq-image-1::before {
  content: '';
  position: absolute;
  top: 110px;
  right: -130px;
  background: url('../images/faq-image-circle.svg') no-repeat;
  background-size: cover;
  height: 85px;
  width: 85px;
  animation: infiniterotate 20s infinite linear;
}

.faq-image-1 figure {
  display: block;
  border-radius: 30px;
}

.faq-image-1 img {
  width: 80%;
  object-fit: contain;
}

.faq-image-2 img {
  width: 100%;
  object-fit: cover;
}

.faq-image-1 img {
  aspect-ratio: 1 / 0.912;
  border-radius: 30px;
}

.faq-image-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 428px;
  border: 7px solid var(--white-color);
  border-radius: 30px;
}

.faq-image-2 figure {
  display: block;
  border-radius: 22px;
}

.faq-image-2 img {
  aspect-ratio: 1 / 0.916;
  border-radius: 22px;
}

.faq-accordion .accordion-item {
  margin-bottom: 30px;
  padding: 0;
  border: none;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 17px 60px 17px 20px;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
  background: transparent;
  margin-bottom: 0;
}

.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-radius: 10px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\f068';
  font-family: 'FontAwesome';
  position: absolute;
  right: 15px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  width: 30px;
  height: 30px;
  color: var(--primary-color);
  background-color: var(--white-color);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  background-image: none !important;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\2b';
  background-color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
}

.faq-accordion .accordion-item .accordion-body p {
  margin: 0;
}

/* FAQ Tabular Layout */
.our-faqs .row {
  align-items: flex-start;
}

/* Tabs Styling */
#faqTabs {
  border-bottom: 0;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

@media (max-width: 768px) {
  #faqTabs {
    gap: 0px;
  }
}

#faqTabs::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Webkit */
}

#faqTabs .nav-link {
  background: transparent;
  color: var(--text-color);
  font-family: var(--accent-font);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  /* Prevent text wrapping */
  flex-shrink: 0;
  /* Prevent shrinking */
}

#faqTabs .nav-link.active {
  background: var(--accent-secondary-color);
  color: var(--white-color);
  text-decoration: none;
}

#faqTabs .nav-link:hover:not(.active) {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Scrollable Content */
.tab-content {
  flex: 1;
  overflow-y: auto;
  padding-right: 15px;
  /* Avoid scrollbar covering content */
  /* Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--secondary-color);
}

.tab-content::-webkit-scrollbar {
  width: 6px;
}

.tab-content::-webkit-scrollbar-track {
  background: var(--secondary-color);
  border-radius: 10px;
}

.tab-content::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 10px;
  border: 2px solid var(--secondary-color);
}

/* Adjust accordion spacing */
.faq-category-container {
  padding-bottom: 20px;
}

/************************************/
/***   15. Our Testimonial css    ***/
/************************************/

.our-testimonial {
  background-image: url(../images/testimonial-bg.png);
  background-repeat: repeat-x;
  background-size: cover;
  padding: 100px 0;
  animation: testimonialbgmove 60s infinite linear;
}

.our-testimonial .section-title {
  margin-bottom: 4rem;
}

@keyframes testimonialbgmove {
  from {
    background-position: left center;
  }

  to {
    background-position: left 200vw center;
  }
}

.testimonial-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-slider .testimonial-item {
  width: auto;
  /* Reset grid width */
  height: 375px;
  overflow: hidden;
  cursor: pointer;
  /* Hide main scrollbar */
  display: flex;
  flex-direction: column;
}

.testimonial-slider .swiper-wrapper {
  align-items: stretch;
  /* Ensure equal height slides */
}

.testimonial-slider .swiper-slide {
  height: auto;
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
  position: static;
  margin: 0;
  color: var(--accent-secondary-color);
  width: 44px;
  height: 44px;
  background: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.testimonial-slider .swiper-pagination {
  position: static;
  margin: 0 20px;
  width: auto;
}

.testimonial-slider {
  position: relative;
  padding-bottom: 60px;
  /* Space for controls */
}

.testimonial-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px;
  width: 100%;
}

.testimonial-slider .swiper-button-next:after,
.testimonial-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.testimonial-item {
  position: relative;
  width: calc(50% - 15px);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px 25px;
  overflow: hidden;
  cursor: pointer;
}

.testimonial-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.testimonial-item.active::after,
.testimonial-item:hover::after {
  height: 100%;
}

.testimonial-item-content {
  margin-bottom: 0;
  flex-grow: 1;
  overflow-y: auto;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author-box {
  flex-shrink: 0;
  margin-top: auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonial-item-content {
  margin-bottom: 30px;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  font-size: 14px;
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-rating i,
.testimonial-item:hover .testimonial-rating i {
  color: var(--accent-secondary-color);
}

.testimonial-info p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-info p,
.testimonial-item:hover .testimonial-info p {
  color: var(--primary-color);
}

.testimonial-author-box {
  display: flex;
  align-items: center;
}

.testimonial-author-iamge {
  margin-right: 15px;
}

.testimonial-author-iamge figure {
  display: block;
  border-radius: 50%;
}

.testimonial-author-iamge img {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
}

.testimonial-author-content {
  width: calc(100% - 55px);
}

.testimonial-author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.testimonial-author-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.testimonial-item.active .testimonial-author-content p,
.testimonial-item:hover .testimonial-author-content p {
  color: var(--primary-color);
}

.testimonial-images {
  position: relative;
  padding: 15px 245px 160px 25px;
}

.testimonial-img-1 {
  transform: rotate(-6.46deg);
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

.testimonial-img-2 {
  position: absolute;
  top: 15px;
  right: 25px;
  transform: rotate(10.67deg);
  width: 100%;
  max-width: 250px;
}

.testimonial-img-2::before {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 10px;
  background: url(../images/about-us-arrow.svg) no-repeat;
  background-position: center center;
  background-size: contain;
  height: 125px;
  width: 95px;
  transform: translateY(100%) rotate(-25deg);
}

.testimonial-img-2,
.testimonial-img-3 {
  border: 5px solid var(--white-color);
  border-radius: 30px;
}

.testimonial-img-3 {
  position: absolute;
  bottom: 20px;
  left: 10px;
  transform: rotate(-7.87deg);
  width: 100%;
  max-width: 360px;
}

.testimonial-img-1 figure {
  display: block;
}

.testimonial-img-2 figure,
.testimonial-img-3 figure {
  display: block;
  border-radius: 24px;
}

.testimonial-img-1 img,
.testimonial-img-2 img,
.testimonial-img-3 img {
  width: 100%;
  object-fit: cover;
}

.testimonial-img-1 img {
  aspect-ratio: 1 / 1.48;
}

.testimonial-img-2 img {
  aspect-ratio: 1 / 1.405;
}

.testimonial-img-3 img {
  aspect-ratio: 1 / 0.644;
}

.hero-content-footer.client-review-box {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: auto;
  max-width: none;
  white-space: nowrap;
  background: var(--accent-secondary-color);
  box-shadow: 0px 0px 11.8px 0px #0000001f;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
  border-radius: 16px;
  padding: 20px;
  margin: 0;
  animation: experienceobject 3s infinite linear alternate;
}

/************************************/
/***       16. Our Blog css	      ***/
/************************************/

.our-blog {
  padding: 100px 0 70px;
}

.post-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-featured-image {
  margin-bottom: 20px;
}

.post-featured-image a {
  cursor: none;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.post-featured-image figure {
  display: block;
}

.post-featured-image img {
  aspect-ratio: 1 / 0.744;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-content {
  margin-bottom: 25px;
}

.post-item-content h3 {
  font-size: 20px;
  line-height: 1.4em;
}

.post-item-content h3 a {
  display: inline-block;
  color: inherit;
}

/************************************/
/***        17. Footer css	      ***/
/************************************/

.main-footer {
  padding: 80px 0 0 0;
  margin-bottom: 50px;
}

.main-footer-box {
  display: flex;
  gap: 50px 150px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-about {
  position: relative;
  width: calc(48% - 75px);
}

.footer-about::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -75px;
  background-color: var(--dark-divider-color);
  height: 100%;
  width: 1px;
}

.footer-logo,
.about-footer-content {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100%;
  max-width: 151px;
}

.about-footer-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.footer-contact-list {
  margin-bottom: 40px;
}

.footer-contact-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px 50px;
  flex-wrap: wrap;
}

.footer-contact-list ul li {
  font-family: var(--accent-font);
  font-size: 20px;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  padding: 9px 20px;
  line-height: 1.1em;
  transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li:hover {
  border-color: var(--accent-color);
}

.footer-contact-list a {
  display: block;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-contact-list ul li:hover a {
  color: var(--accent-color);
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
}

.footer-menu ul li {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover {
  color: var(--accent-color);
}

.footer-menu ul li a {
  color: inherit;
}

.footer-disclaimer-box {
  width: calc(52% - 75px);
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

@media (max-width: 991px) {
  .footer-disclaimer-box {
    width: 100%;
  }
}

.stacked-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.stacked-column p {
  color: var(--white-color);
  line-height: 1.6em;
  font-size: 18px;
  margin-bottom: 0;
  opacity: 0.9;
}

.footer-disclaimer {
  width: 100%;
}

.footer-disclaimer h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 15px;
}

.footer-social-links {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-links span {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}

.footer-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-links ul li {
  display: inline-block;
  margin-right: 15px;
}

.footer-social-links ul li:last-child {
  margin: 0;
}

.footer-social-links ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
  border-color: var(--accent-color);
}

.footer-social-links ul li i {
  font-size: 18px;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
  color: var(--accent-color);
}

.footer-copyright {
  position: relative;
  border-top: 1px solid var(--dark-divider-color);
  padding: 50px 0;
  margin-top: 50px;
  z-index: 1;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

.footer-privacy-policy {
  text-align: end;
}

.footer-privacy-policy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-privacy-policy ul li {
  position: relative;
  color: var(--white-color);
  text-transform: capitalize;
  display: inline-block;
  margin-right: 10px;
  padding-right: 22px;
  transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
  color: var(--accent-color);
}

.footer-privacy-policy ul li a {
  color: inherit;
}

.footer-privacy-policy ul li::before {
  content: '-';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  color: var(--white-color);
}

.footer-privacy-policy ul li:last-child {
  padding: 0;
  margin: 0;
}

.footer-privacy-policy ul li:last-child:before {
  display: none;
}

/************************************/
/***     18. About Us Page css    ***/
/************************************/

.page-header {
  position: relative;
  padding: 260px 0 160px;
  margin-top: 50px;
}

.page-header:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url('../images/page-header-bg.png') no-repeat;
  background-position: center center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}

.page-header-box {
  text-align: center;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 74px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.our-approach {
  padding: 100px 0;
}

.our-approach-image {
  margin-right: 20px;
}

.our-approach-image figure {
  display: block;
  border-radius: 30px;
}

.our-approach-image img {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  object-fit: cover;
  border-radius: 30px;
}

.our-approach-body {
  margin-bottom: 60px;
}

.our-approach-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.our-approach-body ul li {
  position: relative;
  width: calc(50% - 10px);
  line-height: 1.5em;
  padding-left: 30px;
}

.our-approach-body ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-secondary-color);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.our-approach-footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-left: -175px;
  z-index: 2;
}

.mission-vision-item,
.mission-vision-image {
  width: calc(33.33% - 20px);
}

.mission-vision-item {
  position: relative;
  background-color: var(--white-color);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  cursor: pointer;
}

.mission-vision-item:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before {
  top: auto;
  height: 100%;
}

.mission-vision-item .icon-box {
  position: relative;
  height: 40px;
  width: 40px;
  border: 1px solid var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  z-index: 1;
}

.mission-vision-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 20px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .icon-box img {
  transform: rotateY(180deg);
}

.mission-vision-content {
  position: relative;
  z-index: 1;
}

.mission-vision-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.mission-vision-content p {
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-content p {
  color: var(--primary-color);
}

.mission-vision-image figure {
  height: 100%;
  display: block;
  border-radius: 16px;
}

.mission-vision-image img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 0.93;
  object-fit: contain;
}

.how-it-work.about-how-it-work {
  padding: 100px 0;
}

.about-how-it-work .how-work-step-item .icon-box {
  border-color: var(--accent-secondary-color);
  transition: all 0.4s ease-in-out;
}

.about-how-it-work .how-work-step-item:hover .icon-box {
  border-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box:before {
  background-color: var(--accent-color);
}

.about-how-it-work .how-work-step-item .icon-box img {
  filter: none;
}

.about-how-it-work .how-work-step-item .how-work-no {
  background: var(--accent-secondary-color);
}

.about-how-it-work .how-work-step-item .how-work-no h3 {
  color: var(--white-color);
}

.about-how-it-work .how-work-content h3 {
  color: var(--primary-color);
}

.about-how-it-work .how-work-content p {
  color: var(--text-color);
}

.how-work-counter-list {
  display: flex;
  gap: 30px 60px;
  flex-wrap: wrap;
  border-top: 1px solid var(--divider-color);
  margin-top: 80px;
  padding-top: 80px;
}

.how-work-counter-item {
  position: relative;
  width: calc(20% - 48px);
}

.how-work-counter-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  background: var(--divider-color);
  height: 100%;
  width: 1px;
}

.how-work-counter-item:nth-child(5n + 5)::before {
  display: none;
}

.how-work-counter-item h2 {
  font-size: 46px;
  margin-bottom: 5px;
}

.how-work-counter-item p {
  margin-bottom: 0;
}

.expert-coaching {
  padding: 100px 0;
}

.expert-coaching-image {
  position: relative;
  padding: 110px 250px 280px 25px;
  margin-right: 20px;
}

.expert-coaching-image:before {
  content: '';
  position: absolute;
  border: 20px solid var(--accent-color);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  top: 50%;
  transform: translateY(-20%);
  right: 60px;
}

.expert-coaching-img-1,
.expert-coaching-img-2,
.expert-coaching-img-3 {
  border: 9px solid var(--white-color);
  border-radius: 30px;
  box-shadow: 0px 13px 50px 0px #00000029;
  overflow: hidden;
  cursor: pointer;
}

.expert-coaching-img-1 figure,
.expert-coaching-img-2 figure,
.expert-coaching-img-3 figure {
  display: block;
}

.expert-coaching-img-1 img,
.expert-coaching-img-2 img,
.expert-coaching-img-3 img {
  width: 100%;
  object-fit: cover;
}

.expert-coaching-img-1 {
  position: relative;
  transform: rotate(-11.61deg);
  z-index: 1;
}

.expert-coaching-img-1 img {
  aspect-ratio: 1 / 1.03;
}

.expert-coaching-img-2 {
  position: absolute;
  top: 25px;
  right: 25px;
  max-width: 295px;
  transform: rotate(12.91deg);
  z-index: 2;
}

.expert-coaching-img-2 img {
  aspect-ratio: 1 / 1.17;
}

.expert-coaching-img-3 {
  position: absolute;
  left: 170px;
  bottom: 10px;
  max-width: 290px;
  transform: rotate(3.68deg);
}

.expert-coaching-img-3 img {
  aspect-ratio: 1 / 0.99;
}

.expert-coaching-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.expert-coaching-body-item {
  width: calc(50% - 15px);
}

.expert-coaching-body-item h3 {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
  padding-left: 35px;
  margin-bottom: 10px;
}

.expert-coaching-body-item h3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: url('../images/icon-sub-heading.svg') no-repeat;
  background-position: left center;
  background-size: cover;
}

.expert-coaching-body-item p {
  margin: 0;
}

.expert-coaching-list {
  margin-bottom: 40px;
}

.expert-coaching-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.expert-coaching-list ul li {
  position: relative;
  width: calc(50% - 15px);
  line-height: 1.5em;
  padding-left: 30px;
}

.expert-coaching-list ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-secondary-color);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.our-health {
  padding: 100px 0;
}

.our-health-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-left: 68px;
}

.our-health-img-box {
  width: calc(50% - 10px);
}

.our-health-img-3 figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 30px;
}

.our-health-img-1 figure,
.our-health-img-2 figure,
.our-health-img-3 figure {
  display: block;
  border-radius: 30px;
}

.our-health-img-1 img,
.our-health-img-2 img,
.our-health-img-3 img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.our-health-img-1 {
  margin-bottom: 20px;
}

.our-health-img-1 img,
.our-health-img-2 img {
  aspect-ratio: 1 / 1.065;
}

.our-health-img-3 img {
  aspect-ratio: 1 / 2.2;
}

.contact-us-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

.contact-us-circle a {
  display: block;
  border-radius: 50%;
}

.contact-us-circle img {
  width: 100%;
  max-width: 164px;
  border: 8px solid var(--secondary-color);
  border-radius: 50%;
  animation: infiniterotate 25s infinite linear;
}

.our-journey {
  padding: 100px 0 70px;
}

.our-journey-item {
  position: relative;
  background: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000d;
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px 25px;
  overflow: hidden;
  cursor: pointer;
}

.our-journey-item:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.our-journey-item:hover:before {
  top: auto;
  height: 100%;
}

.our-journey-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-bottom: 30px;
}

.our-journey-item .icon-box img {
  width: 100%;
  max-width: 36px;
}

.our-journey-content {
  position: relative;
  z-index: 1;
}

.our-journey-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.our-journey-content p {
  margin: 0;
  transition: all 0.4s ease-in-out;
}

.our-journey-item:hover .our-journey-content p {
  color: var(--primary-color);
}

.our-team {
  padding: 100px 0 70px;
}

.team-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image a {
  display: block;
  cursor: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.team-image figure::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
  z-index: 1;
  border-radius: 0 0 20px 20px;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.19;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
  border-radius: 20px !important;
}

.team-item:hover .team-image img {
  transform: scale(1.1);
}

.team-social-icon {
  position: absolute;
  top: 40px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-icon {
  top: 20px;
  opacity: 1;
  visibility: visible;
}

.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-social-icon ul li {
  margin-bottom: 10px;
}

.team-social-icon ul li:last-child {
  margin-bottom: 0;
}

.team-social-icon ul li a {
  width: 34px;
  height: 34px;
  color: var(--white-color);
  background: var(--accent-secondary-color);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a i {
  color: inherit;
  font-size: 16px;
}

.team-social-icon ul li a:hover {
  color: var(--primary-color);
  background: var(--white-color);
}

.team-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.team-content h3 {
  color: var(--white-color);
  font-size: 20px;
  /* text-transform: capitalize; */
  margin-bottom: 5px;
}

.team-content h3 a {
  color: inherit;
}

.team-content p {
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
  padding: 100px 0 70px;
}

.our-testimonial.service-testimonial {
  background: transparent;
  animation: none;
}

/************************************/
/*** 	20. Service Single css	  ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}

.page-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
}

.page-catagery-list h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.page-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-catagery-list ul li {
  margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
  margin: 0;
}

.page-catagery-list ul li a {
  position: relative;
  display: block;
  line-height: normal;
  text-transform: capitalize;
  color: var(--text-color);
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 13px 40px 13px 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.page-catagery-list ul li:hover a {
  color: var(--primary-color);
}

.page-catagery-list ul li a::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0px, -50%);
  background: url('../images/arrow-text.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 18px;
  height: 13px;
  transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before {
  filter: brightness(0) invert(0);
}

.page-catagery-list ul li a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.page-catagery-list ul li:hover a::after {
  top: 0;
  height: 100%;
}

.page-cta-box.sidebar-cta-box {
  padding: 80px 30px;
}

.service-featured-image {
  margin-bottom: 40px;
}

.service-featured-image figure {
  display: block;
  border-radius: 30px;
}

.service-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.542;
  object-fit: cover;
  border-radius: 30px;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-entry ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-entry ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}

.service-entry ul li:last-child {
  margin-bottom: 0;
}

.service-entry ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-secondary-color);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.service-solutions-box,
.service-personalized-box,
.service-entry-image-content {
  margin-top: 60px;
}

.what-we-do-list.service-solutions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.what-we-do-list.service-solutions-list .what-we-list-item {
  width: calc(50% - 15px);
  margin-bottom: 0;
}

.service-personalized-image-conetnt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.service-personalized-conetnt {
  width: calc(62% - 15px);
}

.service-personalized-conetnt ul {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.service-personalized-image {
  width: calc(38% - 15px);
}

.service-personalized-image figure {
  display: block;
  border-radius: 30px;
}

.service-personalized-image img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 30px;
}

.service-entry-image-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-entry-image {
  width: calc(38% - 15px);
}

.service-entry-image figure {
  display: block;
  border-radius: 30px;
}

.service-entry-image img {
  width: 100%;
  aspect-ratio: 1 / 1.235;
  object-fit: cover;
  border-radius: 30px;
}

.service-entry-content {
  width: calc(62% - 15px);
}

.service-entry-content-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.service-entry-content-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-entry-content-item h3 {
  font-family: var(--default-font);
  font-size: 20px;
  margin-bottom: 15px;
}

.service-entry-content-item p {
  margin-bottom: 0;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.page-blog .post-item {
  height: calc(100% - 40px);
  margin-bottom: 40px;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-secondary-color);
  color: var(--white-color);
}

/************************************/
/*** 	 22. Blog Single css 	  ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 30px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: '';
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 0 0.44em;
}

.post-entry h1 {
  font-size: 74px;
}

.post-entry h2 {
  font-size: 46px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 18px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url('../images/icon-blockquote.svg'), var(--accent-secondary-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 50px;
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--white-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-family: var(--accent-font);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 100px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--accent-secondary-color);
  color: var(--white-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--accent-secondary-color);
  color: var(--white-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/*** 	 23. Programs Page css	  ***/
/************************************/

.page-programs {
  padding: 100px 0 70px;
}

/************************************/
/*** 	24. Program Single Css	  ***/
/************************************/

.page-program-single {
  padding: 100px 0;
}

.program-detail-box {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.program-detail-item {
  background: var(--white-color);
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 20px;
}

.program-detail-item:last-child {
  margin-bottom: 0;
}

.program-detail-item h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.program-detail-item p {
  margin-bottom: 0;
}

.program-featured-image {
  margin-bottom: 40px;
}

.program-featured-image figure {
  display: block;
  border-radius: 30px;
}

.program-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 0.575;
  object-fit: cover;
  border-radius: 30px;
}

.program-entry {
  margin-bottom: 60px;
}

.program-entry p {
  margin-bottom: 20px;
}

.program-entry p:last-child {
  margin-bottom: 0;
}

.program-entry h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.program-entry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}

.program-entry ul li {
  position: relative;
  width: calc(50% - 15px);
  line-height: 1.5em;
  padding-left: 30px;
}

.program-entry ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-secondary-color);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.program-entry-image-video {
  position: relative;
  margin-top: 40px;
}

.program-entry-image figure {
  display: block;
  border-radius: 30px;
}

.program-entry-image img {
  width: 100%;
  aspect-ratio: 1 / 0.431;
  object-fit: cover;
  filter: brightness(80%);
  border-radius: 30px;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-play-button a {
  position: relative;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}

.video-play-button a i {
  font-size: 26px;
  color: var(--white-color);
  margin-left: 3px;
}

.program-entry-practices {
  margin-top: 60px;
}

.program-image-content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.what-we-do-list.program-content-list {
  width: calc(52% - 15px);
}

.what-we-do-list.program-content-list .what-we-list-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.what-we-do-list.program-content-list .what-we-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.program-practice-image {
  width: calc(48% - 15px);
}

.program-practice-image figure {
  display: block;
  border-radius: 20px;
}

.program-practice-image img {
  width: 100%;
  aspect-ratio: 1 / 0.98;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	  25. Team Page css 	  ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-single-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}

.team-sidebar-box {
  background-color: var(--accent-secondary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px;
}

.team-sidebar-image {
  margin-bottom: 30px;
}

.team-sidebar-image figure {
  display: block;
  border-radius: 20px;
}

.team-sidebar-image img {
  width: 100%;
  aspect-ratio: 1 / 1.027;
  object-fit: cover;
  border-radius: 20px;
}

.team-sidebar-body-content {
  margin-bottom: 30px;
}

.team-sidebar-body-content h3 {
  color: var(--white-color);
  font-size: 20px;
  text-transform: capitalize;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.team-sidebar-body-content p {
  color: var(--white-color);
  margin: 0;
}

.team-sidebar-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-sidebar-body ul li {
  width: 100%;
  color: var(--white-color);
  display: inline-flex;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team-sidebar-body ul li span {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  width: 32%;
}

.team-sidebar-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-sidebar-footer span {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
}

.team-sidebar-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-sidebar-footer ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.team-sidebar-footer ul li:last-child {
  margin-right: 0;
}

.team-sidebar-footer ul li a {
  background-color: var(--white-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
  background-color: var(--accent-color);
}

.team-sidebar-footer ul li a i {
  color: var(--accent-secondary-color);
  font-size: 18px;
}

.team-member-info,
.team-skills-box,
.team-awards-box {
  margin-bottom: 60px;
}

.team-member-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-member-info ul li {
  position: relative;
  line-height: 1.5em;
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 15px;
}

.team-member-info ul li:last-child {
  margin-bottom: 0;
}

.team-member-info ul li::before {
  content: '\f058';
  position: absolute;
  font-family: 'FontAwesome';
  font-weight: 900;
  left: 0;
  top: 0;
  font-size: 20px;
  color: var(--accent-secondary-color);
}

.team-skills-list {
  margin-top: 40px;
  display: flex;
  gap: 30px 50px;
  flex-wrap: wrap;
}

.team-skills-item {
  width: calc(25% - 37.5px);
  text-align: center;
}

.team-skills-item .circle {
  position: relative;
  display: inline-block;
  border-color: var(--text-color);
  color: var(--accent-secondary-color);
  text-align: center;
  margin-bottom: 20px;
}

.circle .progress_value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--accent-font);
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 700;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
}

.team-skills-item p {
  text-transform: capitalize;
  margin-bottom: 0;
}

.team-awards-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-awards-list ul li {
  font-weight: 600;
  line-height: 1.7em;
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
}

.team-awards-list ul li:last-child {
  margin-bottom: 0;
}

.team-awards-list ul li span {
  color: var(--primary-color);
}

/************************************/
/***  27.  Testimonial Page css	  ***/
/************************************/

.page-testimonials {
  padding: 100px 0;
}

.page-testimonials .testimonial-boxes .testimonial-item {
  width: calc(25% - 22.5px);
}

/************************************/
/*** 	28.  Image Gallery css 	  ***/
/************************************/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	 29.  Video Gallery css	  ***/
/************************************/

.page-video-gallery {
  padding: 100px 0 70px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
  cursor: pointer;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 40%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: '\f04b';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	  30.  FAQs Page css	  ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion {
  margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
  margin-bottom: 0px;
}

/************************************/
/***  31.  Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
  padding: 100px 0 50px;
}

.contact-now-circle {
  text-align: right;
}

.contact-now-circle img {
  width: 100%;
  max-width: 144px;
  animation: infiniterotate 25s infinite linear;
}

.contact-form {
  margin-right: 30px;
}

.contact-form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--text-color);
}

.contact-us-content {
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

.contact-info-list {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--accent-secondary-color);
  padding: 40px;
}

.contact-info-item {
  width: 50%;
}

.contact-info-item {
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid var(--dark-divider-color);
  border-right: 1px solid var(--dark-divider-color);
}

.contact-info-item:nth-of-type(2n + 2) {
  padding: 30px 0 30px 30px;
  border-bottom: 1px solid var(--dark-divider-color);
  border-right: none;
}

.contact-info-item:nth-last-child(-n + 2) {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-item:nth-child(-n + 2) {
  padding-top: 0;
}

.contact-info-item .icon-box {
  position: relative;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box {
  border-color: transparent;
}

.contact-info-item .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.contact-info-item .icon-box img {
  width: 100%;
  max-width: 20px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.contact-info-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}

.contact-info-content p {
  color: var(--white-color);
  margin: 0;
}

.contact-info-content p a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.contact-info-content p a:hover {
  color: var(--accent-color);
}

.contact-social-list {
  background: var(--accent-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  padding: 30px 40px;
}

.contact-social-list h3 {
  color: var(--primary-color);
  font-size: 20px;
  text-transform: capitalize;
}

.contact-social-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-list ul li a {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.contact-social-list ul li a:hover {
  border-color: var(--white-color);
  color: var(--white-color);
}

.contact-social-list ul li a i {
  font-size: 18px;
  color: inherit;
}

.google-map {
  padding: 50px 0 100px;
}

.google-map-iframe,
.google-map-iframe iframe {
  width: 100%;
  height: 460px;
  border-radius: 30px;
}

/************************************/
/***   32. Book Appointment css	  ***/
/************************************/

.page-book-appointment {
  padding: 100px 0;
}

/************************************/
/***   33. 404 Error Page css	  ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 45%;
}

.error-page-content {
  text-align: center;
}

.error-page-content-body p,
.error-page-content .section-title {
  margin-bottom: 20px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1820px) {
  .bg-section {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1560px) {
  .bg-section {
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 30px;
  }

  .intro-video.bg-section.dark-section::before {
    border-radius: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .btn-default {
    padding: 15px 20px;
  }

  .readmore-btn {
    padding-right: 26px;
  }

  .readmore-btn:after {
    width: 16px;
    height: 12px;
  }

  header.main-header {
    margin: 0;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-brand .brand-text {
    font-size: 20px;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .bg-section {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 0;
  }

  .bg-section.dark-section::before {
    border-radius: 0;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .inner-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .inner-padding-small {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    background-size: 18px auto;
    padding-left: 25px;
  }

  .section-title h1 {
    font-size: 52px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .section-title h1 {
    font-size: 42px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-btn {
    text-align: left;
    margin-top: 10px;
  }

  .hero {
    padding: 130px 0 0;
    margin: 0;
  }

  .hero.hero-bg-image {
    padding: 180px 0 100px;
  }

  .hero.hero-bg-image.hero-slider-layout .hero-slide {
    padding: 200px 0 120px;
  }

  .hero.hero-bg-image.hero-slider-layout .hero-pagination {
    bottom: 30px;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-content-footer {
    margin-top: 30px;
  }

  .hero-image {
    width: 100%;
    margin: 0 auto;
    max-width: 55%;
  }

  .hero-experience-box {
    max-width: 170px;
    border-radius: 10px;
    gap: 10px;
    padding: 10px;
  }

  .hero-experience-box h2 {
    font-size: 1.125rem;
  }

  .hero-experience-box p {
    font-size: 0.9rem;
  }

  .hero-experience-box h2 {
    font-size: 1rem;
  }

  .about-us-images {
    width: 100%;
    max-width: 80%;
    margin: 0 auto 50px;
  }

  .about-us-img-2 {
    max-width: 45%;
    right: 0;
  }

  .about-us-img-1,
  .about-us-img-2,
  .about-us-img-1 figure,
  .about-us-img-1 img {
    border-radius: 20px;
  }

  .about-us-img-2 figure {
    border-radius: 16px;
  }

  .about-us-img-2 img {
    aspect-ratio: 1 / 1.25;
    border-radius: 16px;
  }

  .about-us-body {
    padding: 30px 20px;
  }

  .about-us-body ul {
    gap: 20px 30px;
  }

  .about-us-body ul li {
    padding-left: 25px;
  }

  .about-us-body ul li::before {
    font-size: 18px;
  }

  .about-us-footer {
    margin-top: 30px;
  }

  .service-item,
  .page-cta-box {
    padding: 30px;
  }

  .service-item .icon-box {
    height: 50px;
    width: 50px;
    margin-bottom: 30px;
  }

  .service-item .icon-box img {
    max-width: 26px;
  }

  .service-item-content {
    margin-bottom: 20px;
  }

  .service-item-content h3 {
    margin-bottom: 10px;
  }

  .page-cta-box-info {
    margin-bottom: 20px;
  }

  .page-cta-box-info h3 {
    font-size: 22px;
  }

  .section-footer-text {
    margin-top: 10px;
  }

  .what-we-do {
    padding: 50px 0;
  }

  .what-we-do-image-1 {
    margin-bottom: 30px;
  }

  .what-we-do-image-1 img {
    aspect-ratio: 1 / 0.8;
  }

  .what-we-do-content .section-row {
    margin-bottom: 30px;
  }

  .what-we-list-item .icon-box {
    height: 50px;
    width: 50px;
    min-width: 50px;
    flex-shrink: 0;
    margin-right: 10px;
  }

  .what-we-list-item .icon-box img {
    max-width: 26px;
  }

  .what-we-do-list-content {
    width: calc(100% - 60px);
  }

  .what-we-do-list-content h3 {
    margin-bottom: 5px;
  }

  .why-choose-us {
    padding: 50px 0 0;
  }

  .why-choose-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .why-choose-item .icon-box {
    height: 50px;
    width: 50px;
    min-width: 50px;
    flex-shrink: 0;
    margin-bottom: 20px;
  }

  .why-choose-item .icon-box img {
    max-width: 26px;
  }

  .why-choose-image {
    width: 100%;
    max-width: 55%;
    margin: 30px auto 0;
  }

  .our-expertise {
    padding: 50px 0;
  }

  .expertise-image {
    margin: 0 0 30px 0;
  }

  .expertise-image img {
    aspect-ratio: 1 / 0.62;
  }

  .expertise-box {
    padding: 30px;
  }

  .expertise-box-content {
    margin-bottom: 20px;
  }

  .intro-video.bg-section.dark-section::before {
    border-radius: 0;
  }

  .intro-video.bg-section.dark-section {
    padding: 100px 0 50px;
    background-position: left center;
  }

  .intro-video.what-you-get-video.bg-section.dark-section {
    background-position: right center;
  }

  .intro-video-circle a figure img {
    max-width: 140px;
  }

  .into-video-play-icon {
    width: 60px;
    height: 60px;
  }

  .into-video-play-icon i {
    font-size: 24px;
  }

  .intro-video-counter-list {
    gap: 25px 20px;
    margin-top: 100px;
    padding-top: 30px;
  }

  .intro-video-counter-item {
    width: calc(20% - 16px);
  }

  .intro-video-counter-item h2 {
    font-size: 36px;
  }

  .our-programs {
    padding: 50px 0 20px;
  }

  .program-image img {
    aspect-ratio: 1 / 1.1;
  }

  .program-body {
    left: 30px;
    bottom: 30px;
    right: 50px;
  }

  .how-it-work {
    padding: 50px 0 150px;
  }

  .how-work-step-item {
    width: calc(50% - 15px);
  }

  .how-work-step-item .icon-box {
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
  }

  .how-work-step-item .icon-box img {
    max-width: 36px;
  }

  .how-work-no {
    height: 25px;
    width: 25px;
  }

  .how-work-no h3 {
    font-size: 14px;
  }

  .book-appointment {
    margin-top: -100px;
  }

  .book-appointment-box {
    padding: 50px;
  }

  .book-appointment-content,
  .book-appointment-form {
    width: 100%;
  }

  .book-appointment-image img {
    aspect-ratio: 1 / 0.48;
  }

  .book-appointment-form .form-control {
    padding: 14px 15px;
  }

  .book-appointment-form .form-control.form-select {
    padding: 14px 35px 14px 15px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faq-images {
    width: 100%;
    max-width: 75%;
    background-size: 45px auto;
    background-position: bottom 108px left 118px;
    padding: 0 180px 160px 0;
    margin: 0 auto 30px;
  }

  .faq-image-1::before {
    top: 50px;
    right: -105px;
    height: 70px;
    width: 70px;
  }

  .faq-image-1 figure,
  .faq-image-1 img {
    border-radius: 20px;
  }

  .faq-image-1 img,
  .faq-image-2 img {
    aspect-ratio: 1 / 0.81;
  }

  .faq-image-2 {
    max-width: 385px;
    border: 4px solid var(--white-color);
    border-radius: 20px;
  }

  .faq-image-2 figure,
  .faq-image-2 img {
    border-radius: 14px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 13px 50px 13px 15px;
    margin-bottom: 10px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 14px;
    width: 24px;
    height: 24px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .our-testimonial {
    padding: 50px 0;
  }

  .testimonial-content {
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .testimonial-item {
    padding: 20px;
  }

  .testimonial-item-content {
    margin-bottom: 20px;
  }

  .testimonial-author-content h3 {
    font-size: 18px;
  }

  .testimonial-images {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
  }

  .testimonial-img-1 img {
    aspect-ratio: 1 / 1.3;
  }

  .testimonial-img-1,
  .testimonial-img-2,
  .testimonial-img-3 {
    border-radius: 20px;
  }

  .testimonial-img-2 figure,
  .testimonial-img-3 figure {
    border-radius: 14px;
  }

  .testimonial-img-2 {
    max-width: 220px;
  }

  .testimonial-img-3 {
    max-width: 330px;
  }

  .testimonial-img-2::before {
    height: 95px;
    width: 70px;
  }

  .hero-content-footer.client-review-box {
    bottom: 30px;
    max-width: 180px;
    padding: 15px;
  }

  .hero-content-footer.client-review-box .trusted-client-review p i {
    margin: 0 2px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-featured-image {
    margin-bottom: 15px;
  }

  .post-item-content {
    margin-bottom: 15px;
  }

  .main-footer {
    padding: 40px 0 0 0;
    margin-bottom: 0;
  }

  .footer-about,
  .footer-links-box {
    width: 100%;
  }

  .footer-logo,
  .about-footer-content {
    margin-bottom: 20px;
  }

  .footer-contact-list {
    margin-bottom: 30px;
  }

  .footer-contact-list ul {
    gap: 20px;
  }

  .footer-contact-list ul li {
    font-size: 18px;
    padding: 9px 15px;
  }

  .footer-menu ul {
    gap: 20px 30px;
  }

  .footer-menu ul li {
    font-size: 18px;
  }

  .footer-links-box {
    gap: 30px 60px;
  }

  .footer-links h3 {
    margin-bottom: 20px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-copyright {
    padding: 30px 0;
    margin-top: 30px;
  }

  .page-header {
    padding: 160px 0 80px;
    margin-top: 0px;
  }

  .page-header-box h1 {
    font-size: 52px;
    margin-bottom: 5px;
  }

  .our-approach {
    padding: 50px 0;
  }

  .our-approach-image {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .our-approach-image figure,
  .our-approach-image img {
    border-radius: 20px;
  }

  .our-approach-image img,
  .our-health-img-3 figure {
    aspect-ratio: 1 / 0.8;
  }

  .our-approach-body {
    margin-bottom: 30px;
  }

  .our-approach-body ul li {
    padding-left: 25px;
  }

  .our-approach-body ul li::before {
    font-size: 18px;
  }

  .our-approach-footer {
    margin-left: 0;
  }

  .mission-vision-item {
    padding: 15px;
  }

  .mission-vision-image figure,
  .mission-vision-image img {
    height: auto;
  }

  .how-it-work.about-how-it-work {
    padding: 50px 0;
  }

  .how-work-counter-list {
    margin-top: 50px;
    padding-top: 50px;
    gap: 20px;
  }

  .how-work-counter-item {
    width: calc(20% - 16px);
  }

  .how-work-counter-item::before {
    right: -10px;
  }

  .how-work-counter-item h2 {
    font-size: 36px;
  }

  .expert-coaching {
    padding: 50px 0;
  }

  .expert-coaching-image {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .expert-coaching-body {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .expert-coaching-body-item h3 {
    padding-left: 30px;
  }

  .expert-coaching-body-item h3:before {
    width: 20px;
    height: 20px;
  }

  .expert-coaching-list {
    margin-bottom: 30px;
  }

  .expert-coaching-list ul li {
    padding-left: 25px;
  }

  .expert-coaching-list ul li::before {
    font-size: 18px;
  }

  .our-health {
    padding: 50px 0;
  }

  .our-health-content {
    margin-bottom: 30px;
  }

  .our-health-image {
    max-width: 75%;
    margin: 0 auto;
  }

  .our-health-img-1 figure,
  .our-health-img-2 figure,
  .our-health-img-3 figure,
  .our-health-img-1 img,
  .our-health-img-2 img,
  .our-health-img-3 img {
    border-radius: 20px;
  }

  .contact-us-circle img {
    max-width: 134px;
  }

  .our-journey {
    padding: 50px 0 20px;
  }

  .our-journey-item {
    padding: 20px;
    border-radius: 20px;
  }

  .our-journey-item .icon-box {
    margin-bottom: 20px;
  }

  .our-team {
    padding: 50px 0 20px;
  }

  .team-image img {
    aspect-ratio: 1 / 1.03;
  }

  .team-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .page-catagery-list {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .page-catagery-list h3 {
    margin-bottom: 20px;
  }

  .page-catagery-list ul li a {
    border-radius: 10px;
    padding: 12px 40px 12px 15px;
  }

  .page-catagery-list ul li a::before {
    right: 15px;
  }

  .page-cta-box.sidebar-cta-box {
    padding: 80px 20px;
  }

  .service-featured-image {
    margin-bottom: 30px;
  }

  .service-featured-image figure {
    border-radius: 20px;
  }

  .service-featured-image img {
    aspect-ratio: 1 / 0.48;
    border-radius: 20px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .service-entry ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .service-entry ul li::before {
    font-size: 18px;
  }

  .service-solutions-box,
  .service-personalized-box,
  .service-entry-image-content {
    margin-top: 40px;
  }

  .what-we-do-list.service-solutions-list {
    gap: 30px 20px;
    margin-top: 30px;
  }

  .what-we-do-list.service-solutions-list .what-we-list-item {
    width: calc(50% - 10px);
  }

  .service-personalized-image-conetnt {
    gap: 20px;
    margin-top: 30px;
  }

  .service-personalized-conetnt {
    width: calc(62% - 10px);
  }

  .service-personalized-conetnt ul {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .service-personalized-image {
    width: calc(38% - 10px);
  }

  .service-personalized-image figure,
  .service-personalized-image img {
    border-radius: 20px;
  }

  .service-entry-image figure,
  .service-entry-image img {
    border-radius: 20px;
  }

  .service-entry-content-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .service-entry-content-item h3 {
    margin-bottom: 10px;
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-blog .post-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-image figure,
  .post-image img {
    border-radius: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.417em;
  }

  .post-entry h2 {
    font-size: 36px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ol li,
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-tags .tag-links a {
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-programs {
    padding: 50px 0 20px;
  }

  .page-program-single {
    padding: 50px 0;
  }

  .program-detail-box {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .program-detail-item {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .program-featured-image {
    margin-bottom: 30px;
  }

  .program-featured-image figure {
    border-radius: 20px;
  }

  .program-featured-image img {
    aspect-ratio: 1 / 0.47;
    border-radius: 20px;
  }

  .program-entry {
    margin-bottom: 30px;
  }

  .program-entry p {
    margin-bottom: 15px;
  }

  .program-entry h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .program-entry ul {
    gap: 15px 30px;
    margin-bottom: 15px;
  }

  .program-entry ul li {
    padding-left: 25px;
  }

  .program-entry ul li::before {
    font-size: 18px;
  }

  .program-entry-image-video {
    margin-top: 30px;
  }

  .program-entry-image figure {
    border-radius: 20px;
  }

  .program-entry-image img {
    aspect-ratio: 1 / 0.4;
    border-radius: 20px;
  }

  .video-play-button a {
    width: 65px;
    height: 65px;
  }

  .video-play-button a i {
    font-size: 24px;
    margin-left: 2px;
  }

  .program-entry-practices {
    margin-top: 40px;
  }

  .program-image-content-box {
    margin-top: 30px;
  }

  .what-we-do-list.program-content-list .what-we-list-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-sidebar-box {
    padding: 20px;
  }

  .team-single-sidebar {
    position: static;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .team-sidebar-image img {
    aspect-ratio: 1 / 0.8;
  }

  .team-sidebar-body-content {
    margin-bottom: 25px;
  }

  .team-sidebar-body-content h3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .team-sidebar-body ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .team-member-info,
  .team-skills-box,
  .team-awards-box {
    margin-bottom: 30px;
  }

  .team-member-info ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .team-member-info ul li::before {
    font-size: 18px;
  }

  .team-skills-item .circle {
    margin-bottom: 10px;
  }

  .team-skills-item .circle canvas {
    aspect-ratio: auto 120 / 120 !important;
    height: 120px !important;
    width: 120px !important;
  }

  .circle .progress_value {
    font-size: 32px;
    width: 80px;
    height: 80px;
  }

  .team-awards-list ul li {
    padding: 15px;
    margin-bottom: 20px;
  }

  .member-contact-form.contact-form {
    margin-bottom: 0;
  }

  .page-testimonials {
    padding: 50px 0;
  }

  .page-testimonials .testimonial-boxes .testimonial-item {
    width: calc(50% - 15px);
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .page-faqs-catagery .page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0 25px;
  }

  .contact-now-circle img {
    max-width: 114px;
  }

  .contact-form {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .contact-form .form-control {
    padding: 12px 15px;
  }

  .contact-us-content {
    border-radius: 20px;
  }

  .contact-info-list {
    padding: 30px;
  }

  .contact-info-item {
    padding: 20px 20px 20px 0;
  }

  .contact-info-item:nth-of-type(2n + 2) {
    padding: 20px 0 20px 20px;
  }

  .contact-info-item:nth-last-child(-n + 2) {
    padding-bottom: 0;
  }

  .contact-info-item:nth-child(-n + 2) {
    padding-top: 0;
  }

  .contact-social-list {
    padding: 20px 30px;
  }

  .google-map {
    padding: 25px 0 50px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 400px;
    border-radius: 20px;
  }

  .page-book-appointment {
    padding: 50px 0;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-image img {
    max-width: 60%;
  }

  .error-page-content-body p,
  .error-page-content .section-title {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

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

  .section-title h2 {
    font-size: 26px;
  }

  .hero-content-body {
    gap: 20px;
  }

  .contact-now-box-content h3 {
    font-size: 18px;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-experience-box {
    max-width: 155px;
  }

  .hero-experience-box h2 {
    font-size: 1.125rem;
  }

  .about-us-images {
    max-width: 100%;
    padding: 10px 135px 50px 15px;
  }

  .about-us-img-2 {
    top: 10px;
    right: 15px;
    max-width: 160px;
  }

  .about-us-img-2::before {
    right: 10px;
    height: 70px;
    width: 55px;
  }

  .about-us-body {
    padding: 15px;
  }

  .about-us-body ul {
    gap: 10px;
  }

  .about-us-body ul li {
    width: 100%;
  }

  .about-us-body ul li::before {
    font-size: 16px;
  }

  .about-author-box .author-info h3 {
    font-size: 18px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item .icon-box {
    margin-bottom: 20px;
  }

  .service-item-content h3 {
    font-size: 18px;
  }

  .page-cta-box {
    padding: 40px 20px;
  }

  .page-cta-box-info h3 {
    font-size: 18px;
  }

  .page-cta-box-info h2 {
    font-size: 24px;
  }

  .what-we-do-image-1 img {
    aspect-ratio: 1 / 0.95;
  }

  .what-we-do-list {
    margin-bottom: 30px;
  }

  .what-we-do-list-content h3 {
    font-size: 18px;
  }

  .why-choose-item,
  .why-choose-item:last-child {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .why-choose-us .col-lg-3.col-md-6:last-child .why-choose-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .why-choose-image {
    max-width: 100%;
  }

  .expertise-image img {
    aspect-ratio: 1 / 0.8;
  }

  .expertise-box {
    padding: 20px;
  }

  .expertise-box-content h3 {
    font-size: 18px;
  }

  .intro-video.bg-section.dark-section {
    padding: 50px 0;
    background-position: left center;
  }

  .intro-video-content {
    margin-bottom: 30px;
  }

  .intro-video-circle a figure img {
    max-width: 120px;
  }

  .into-video-play-icon {
    width: 50px;
    height: 50px;
  }

  .into-video-play-icon i {
    font-size: 22px;
  }

  .intro-video-counter-list {
    margin-top: 50px;
  }

  .intro-video-counter-item {
    width: calc(50% - 10px);
  }

  .intro-video-counter-item h2 {
    font-size: 26px;
  }

  .program-image img {
    aspect-ratio: 1 / 0.98;
  }

  .program-body {
    left: 20px;
    bottom: 20px;
    right: 20px;
  }

  .program-content h3 {
    font-size: 18px;
  }

  .how-work-step-item {
    width: 100%;
    display: flex;
  }

  .how-work-step-item .icon-box {
    height: 65px;
    width: 65px;
    margin: 0 25px 0 0;
  }

  .how-work-step-item .icon-box img {
    max-width: 28px;
  }

  .how-work-content {
    width: calc(100% - 90px);
  }

  .how-work-content h3 {
    font-size: 18px;
  }

  .book-appointment-box {
    padding: 20px;
  }

  .book-appointment-image img {
    aspect-ratio: 1 / 0.7;
  }

  .faq-images {
    width: 100%;
    max-width: 100%;
    background-size: 38px auto;
    background-position: bottom 75px left 60px;
    padding: 0 90px 120px 0;
  }

  .faq-image-1::before {
    top: 35px;
    right: -80px;
    height: 55px;
    width: 55px;
  }

  .faq-image-2 {
    max-width: 240px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
  }

  .testimonial-boxes {
    gap: 20px;
  }

  .testimonial-item {
    width: 100%;
  }

  .testimonial-rating {
    margin-bottom: 10px;
  }

  .testimonial-author-content h3 {
    font-size: 18px;
  }

  .testimonial-images {
    min-width: 100%;
    padding: 10px 140px 95px 10px;
    margin-bottom: 80px;
  }

  .testimonial-img-1 img {
    aspect-ratio: 1 / 1.54;
  }

  .testimonial-img-2 {
    right: 15px;
    max-width: 150px;
  }

  .testimonial-img-2::before {
    height: 70px;
    width: 60px;
  }

  .testimonial-img-3 {
    bottom: 10px;
    max-width: 195px;
  }

  .hero-content-footer.client-review-box {
    max-width: 160px;
    gap: 10px;
    bottom: 0;
    padding: 10px;
  }

  .hero-content-footer.client-review-box .trusted-client-review p {
    font-size: 14px;
  }

  .post-item-content h3 {
    font-size: 18px;
  }

  .main-footer-box {
    gap: 40px;
  }

  .footer-contact-list {
    margin-bottom: 20px;
  }

  .footer-contact-list ul {
    gap: 15px;
  }

  .footer-contact-list ul li {
    font-size: 16px;
  }

  .footer-menu ul li {
    font-size: 16px;
  }

  .footer-links {
    width: 100%;
  }

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-social-links span {
    font-size: 18px;
  }

  .footer-copyright {
    text-align: center;
    padding: 15px 0;
  }

  .footer-privacy-policy {
    text-align: center;
    margin-top: 10px;
  }

  .footer-privacy-policy ul li {
    margin-right: 3px;
    padding-right: 15px;
  }

  .footer-privacy-policy ul li::before {
    font-size: 16px;
  }

  .page-header-box h1 {
    font-size: 28px;
  }

  .our-approach-image img,
  .our-health-img-3 figure {
    aspect-ratio: 1 / 0.9;
  }

  .our-approach-body ul li {
    width: 100%;
  }

  .mission-vision-item,
  .mission-vision-image {
    width: 100%;
  }

  .mission-vision-item .icon-box {
    margin-bottom: 15px;
  }

  .mission-vision-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .how-work-counter-list {
    margin-top: 30px;
    padding-top: 30px;
  }

  .how-work-counter-item:nth-child(5n + 5):before {
    display: block;
  }

  .how-work-counter-item:last-child:before,
  .how-work-counter-item:nth-child(2n + 2):before {
    display: none;
  }

  .how-work-counter-item {
    width: calc(50% - 10px);
  }

  .how-work-counter-item h2 {
    font-size: 26px;
  }

  .expert-coaching-image {
    max-width: 100%;
    padding: 25px 140px 175px 18px;
  }

  .expert-coaching-image:before {
    border-width: 10px;
    width: 120px;
    height: 120px;
    right: 30px;
    transform: translateY(-50%);
  }

  .expert-coaching-img-1,
  .expert-coaching-img-2,
  .expert-coaching-img-3 {
    border-width: 5px;
  }

  .expert-coaching-img-2 {
    max-width: 140px;
    top: 10px;
    right: 10px;
  }

  .expert-coaching-img-3 {
    left: 100px;
    max-width: 180px;
  }

  .expert-coaching-body-item {
    width: 100%;
  }

  .expert-coaching-body-item h3 {
    font-size: 18px;
  }

  .expert-coaching-list ul {
    gap: 15px;
  }

  .expert-coaching-list ul li {
    width: 100%;
  }

  .our-health-image {
    max-width: 100%;
    padding-left: 40px;
  }

  .contact-us-circle img {
    max-width: 100px;
    border-width: 4px;
  }

  .our-journey-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .team-content h3 {
    font-size: 18px;
  }

  .page-catagery-list h3 {
    font-size: 18px;
  }

  .service-featured-image {
    margin-bottom: 20px;
  }

  .service-featured-image img {
    aspect-ratio: 1 / 0.7;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-solutions-box,
  .service-personalized-box,
  .service-entry-image-content {
    margin-top: 30px;
  }

  .what-we-do-list.service-solutions-list .what-we-list-item {
    width: 100%;
  }

  .service-personalized-conetnt,
  .service-personalized-image {
    width: 100%;
  }

  .service-personalized-conetnt .what-we-do-list {
    margin-bottom: 0;
  }

  .service-personalized-image img {
    aspect-ratio: 1 / 0.78;
  }

  .service-entry-image-content {
    gap: 20px;
  }

  .service-entry-image,
  .service-entry-content {
    width: 100%;
  }

  .service-entry-image img {
    aspect-ratio: 1 / 0.9;
  }

  .service-entry-content-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .service-entry-content-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .post-single-meta ol li {
    font-size: 16px;
  }

  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 18px;
  }

  .program-detail-item h3 {
    font-size: 18px;
  }

  .program-featured-image {
    margin-bottom: 20px;
  }

  .program-featured-image img {
    aspect-ratio: 1 / 0.7;
  }

  .program-entry h2 {
    font-size: 26px;
  }

  .program-entry ul li {
    width: 100%;
  }

  .program-entry-image img {
    aspect-ratio: 1 / 0.56;
  }

  .what-we-do-list.program-content-list,
  .program-practice-image {
    width: 100%;
  }

  .what-we-do-list.program-content-list {
    margin-bottom: 0;
  }

  .what-we-do-list.program-content-list .what-we-list-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .program-practice-image img {
    aspect-ratio: 1 / 0.82;
  }

  .team-sidebar-image img {
    aspect-ratio: 1 / 1.027;
  }

  .team-sidebar-body-content h3 {
    font-size: 18px;
  }

  .team-sidebar-body ul li span {
    font-size: 18px;
  }

  .team-sidebar-footer span {
    font-size: 18px;
  }

  .team-skills-list {
    gap: 30px;
  }

  .team-skills-item {
    width: calc(50% - 15px);
  }

  .circle .progress_value {
    font-size: 24px;
  }

  .page-testimonials .testimonial-boxes .testimonial-item {
    width: 100%;
  }

  .contact-now-circle {
    margin-top: 20px;
    text-align: left;
    display: none;
  }

  .contact-now-circle img {
    max-width: 84px;
  }

  .contact-info-list {
    padding: 20px;
  }

  .contact-info-item {
    width: 100%;
    border-bottom: 1px solid var(--dark-divider-color);
    border-right: none;
    margin-bottom: 20px;
    padding: 0 0 20px 0;
  }

  .contact-info-item:nth-of-type(2n + 2) {
    padding: 0 0 20px 0;
  }

  .contact-info-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 20px;
  }

  .contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .contact-info-item .icon-box {
    margin-bottom: 10px;
  }

  .contact-info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .contact-social-list {
    padding: 20px;
  }

  .contact-social-list h3 {
    font-size: 18px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }

  .error-page-image img {
    max-width: 80%;
  }

  p {
    font-size: 16px;
  }
}

/* Persistent Contact Button */
.persistent-btn-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  pointer-events: none;

  /* Flex Layout */
  display: flex;
  align-items: center;
  gap: 20px;

  /* Container Styling */
  background: var(--primary-color);
  padding: 10px 10px 10px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.persistent-btn-container .hero-course-date-box-content p {
  margin-bottom: 0;
  color: var(--white-color);
  font-weight: 500;
  font-size: 15px;
}

.persistent-btn-container .hero-course-date-box-content p span {
  color: var(--accent-color);
  font-weight: 700;
}

.persistent-btn-container.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Adjust for mobile if needed */
@media only screen and (max-width: 767px) {
  .persistent-btn-container {
    bottom: 20px;
    right: 15px;
    left: 15px;
    /* Row layout for compact view */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 10px 15px 10px 20px;
    gap: 10px;
    border-radius: 50px;
  }

  .persistent-btn-container .hero-course-date-box-content p {
    font-size: 15px;
    line-height: 1.3em;
  }

  .persistent-btn-container .header-contact-btn {
    width: auto;
  }

  .persistent-btn-container .header-contact-btn a {
    width: auto;
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    white-space: nowrap;
  }
}

/* Persistent Button CSS Hover */
.persistent-btn-container .btn-default.btn-accent::before,
.persistent-btn-container .btn-default.btn-accent::after {
  background: var(--white-color) !important;
}

.persistent-btn-container .btn-default.btn-accent:hover {
  color: var(--primary-color) !important;
}

/************************************/
/***   15. Success Stories Grid   ***/
/************************************/

.case-study-grid-container {
  padding-bottom: 60px;
}

/* Category Headers */
.category-header-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
}

.category-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.category-icon img {
  width: 24px;
  height: 24px;
}

.category-header-box h3 {
  margin: 0;
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
}

/* Card Styling */
.case-study-card {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.featured-card {
  border-left: 5px solid var(--accent-color);
}

.roi-card {
  border-left: 5px solid var(--accent-secondary-color);
}

/* Badges */
.card-header-badge {
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 15px;
  display: inline-block;
  border-bottom-right-radius: 12px;
}

.roi-card .card-header-badge {
  background: var(--accent-secondary-color);
  color: var(--primary-color);
}

.card-body {
  padding: 25px;
}

/* Author Block */
.author-block {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.author-block h3 {
  margin: 0;
  font-size: 20px;
  color: var(--primary-color);
}

.author-block h3 small {
  font-size: 14px;
  color: #777;
  font-weight: 400;
}

.meta-tag {
  display: inline-block;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}

/* Content Typography */
.case-study-card p {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.6;
}

.struggle-text {
  color: #555;
}

.result-box {
  background: rgba(var(--accent-color-rgb), 0.1);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 3px solid var(--accent-color);
}

.roi-card .result-box {
  background: rgba(255, 215, 0, 0.1);
  /* Gold/Yellow tint */
  border-left-color: var(--accent-secondary-color);
}

.quote-text {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 15px;
  position: relative;
  padding-left: 20px;
}

.quote-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: var(--accent-color);
  opacity: 0.3;
}

/************************************/
/***   15b. Summary Cards & Modals  ***/
/************************************/

/* Summary Card Grid */
.case-study-summary-grid {
  padding-bottom: 50px;
}

.summary-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  /* Softer, deeper shadow */
  border: 1px solid #f0f0f0;
  border-top: 4px solid var(--accent-color);
  /* Brand accent top border */
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #f0f0f0;
  /* Keep border subtle, let top border and shadow do work */
}

/* Featured Card Override */
.col-lg-8 .summary-card {
  border-top-color: var(--accent-color-secondary);
  /* Different color for large card if we used it, but keeping consistent for now */
}

.summary-card-header {
  background: #fff;
  /* Clean white header */
  padding: 25px 25px 10px;
  border-bottom: none;
  /* Removed separator */
}

.summary-card-header .badge {
  background: rgba(var(--primary-color-rgb), 0.08);
  /* Fallback or calculated if variable exists, checking style.css we usually use solid */
  background: #f4f4f4;
  color: var(--primary-color);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
}

.summary-card-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.summary-card-body {
  padding: 10px 25px 30px;
  /* Adjusted padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.summary-card-body h4 {
  font-size: 16px;
  font-weight: 500;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
  min-height: 48px;
  /* Alignment for varying title lengths */
}

.summary-card-body p {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
}

.btn-text {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 700;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  /* Slightly larger */
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-text i {
  margin-left: 8px;
  transition: transform 0.2s ease;
  font-size: 12px;
}

.summary-card:hover .btn-text i {
  transform: translateX(5px);
}

/* Modal Styling */
.clinical-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  /* Hidden by default */
  opacity: 0;
  transition: opacity 0.3s ease;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.clinical-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 35, 0.9);
  /* Darker, bluer overlay */
  backdrop-filter: blur(4px);
}

.modal-container {
  background: #fff;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 12px;
  position: relative;
  padding-bottom: 8px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  cursor: pointer;
  transform: scale(0.98);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clinical-modal.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #bbb;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--primary-color);
}

/* Modal Header - Blue Theme */
.modal-header {
  padding: 2rem 2.5rem;
  background: #fcfcfc;
  border-bottom: 1px solid #eee;
}

.modal-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6c757d;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.modal-header h2 {
  margin: 0 0 0.25rem 0;
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  font-style: normal;
  /* Removed italics for cleaner look */
}

.modal-scroll-body {
  padding: 2rem 2.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.clinical-section {
  margin-bottom: 2rem;
}

.clinical-section h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-color);
  /* Blue Headers */
  border-bottom: 2px solid rgba(var(--primary-color-rgb), 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.clinical-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.clinical-section ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.clinical-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.clinical-section ul li::before {
  content: '•';
  color: var(--primary-color);
  /* Blue bullets */
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2rem;
}

.result-highlight {
  background: #f0f7ff;
  /* VERY Light Blue Highlight */
  border-left: 3px solid var(--primary-color);
  padding: 1rem;
  border-radius: 4px;
  margin: 1.5rem 0;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

@media (max-width: 768px) {
  .modal-header {
    padding: 20px;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-scroll-body {
    padding: 20px;
  }
}

/* Modal Navigation Buttons */
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0;
  cursor: pointer;
  z-index: 10002;
  /* Above modal overlay (10000) and container (10001) */
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.modal-nav-btn.prev {
  left: 5%;
}

.modal-nav-btn.next {
  right: 5%;
}

@media (max-width: 992px) {
  .modal-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .modal-nav-btn.prev {
    left: 20px;
  }

  .modal-nav-btn.next {
    right: 20px;
  }
}

.modal-nav-btn.muted {
  opacity: 0.5;
  pointer-events: none !important;
  cursor: default !important;
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
  /* On small mobile, move buttons to bottom or sides closer */
  .modal-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    /* Contrast against white modal if overlapping, or ensure outside */
    border: none;
  }

  .modal-nav-btn.prev {
    left: 10px;
  }

  .modal-nav-btn.next {
    right: 10px;
  }
}

/* Toolkit Grid Layout */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-bottom: 60px;
}

.story-item {
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 20px !important;
  background: #fff;
  border: 1px solid #e0e0e0;
  /* Clean light gray border */
  border-radius: 12px;
  /* Smooth rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  /* Very subtle default shadow */
}

.story-item:hover {
  transform: translateY(-4px);
  /* Gentle lift */
  border-color: #d0d0d0;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  /* Soft elevated shadow */
  background: #fff;
  /* Keep white background on hover */
}

/* Content Styles */
.story-item-content {
  text-align: left;
  margin-bottom: 15px !important;
}

.story-item-content h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 5px !important;
  color: var(--primary-color) !important;
  /* Always Primary Navy/Teal */
  transition: color 0.3s ease;
}

.story-tag {
  font-size: 11px !important;
  text-transform: uppercase;
  color: #6c757d;
  /* Gray for muted tag */
  font-weight: 700;
  margin-bottom: 10px !important;
  letter-spacing: 0.5px;
  display: block;
  background: #f8f9fa;
  /* Subtle gray background for tag */
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}

.story-item-content p:last-child {
  font-size: 14px !important;
  color: #444;
  /* Darker gray for readability */
  line-height: 1.5;
  font-style: normal;
  /* Removed italics for cleaner look */
}

/* Hover Content Colors - Minimal Change */
.story-item:hover .story-item-content h3 {
  color: var(--accent-secondary-color) !important;
  /* Slight shift to lighter blue on hover if available, or keep primary */
}

/* Read Button */
.read-story-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: capitalize;
  /* Cleaner look than uppercase */
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
  margin-top: auto;
}

.read-story-btn i {
  margin-left: 5px;
  transition: transform 0.3s ease;
  font-size: 11px;
}

.story-item:hover .read-story-btn {
  color: var(--accent-color);
  /* Highlight button on hover */
}

.story-item:hover .read-story-btn i {
  transform: translateX(4px);
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .toolkit-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .toolkit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .toolkit-grid {
    grid-template-columns: 1fr;
  }
}

/* Roadmap Section - Theme Grid Override */
.roadmap-grid .how-work-step-item {
  width: calc(33.333% - 20px);
  /* 3 items with 30px gap */
}

@media (max-width: 991px) {
  .roadmap-grid .how-work-step-item {
    width: calc(50% - 15px);
    /* Reference standard tablet grid */
  }
}

@media (max-width: 768px) {
  .roadmap-grid .how-work-step-item {
    width: 100%;
    /* Stack on mobile */
  }
}

/* Why This Works Section - Font Consistency */
.why-this-works {
  padding: 100px 0;
}

.why-this-works .accordion-body,
.why-this-works .accordion-body p,
.why-this-works .accordion-body ul,
.why-this-works .accordion-body li {
  font-size: 18px !important;
  line-height: 1.6;
}

.why-this-works .accordion-body ul {
  list-style: none;
  /* Remove default bullets */
  padding-left: 0;
  /* Reset padding */
}

.why-this-works .accordion-body ul li {
  position: relative;
  padding-left: 30px;
  /* Space for icon */
  margin-bottom: 10px;
}

.why-this-works .accordion-body ul li::before {
  content: '\f058';
  /* fa-check-circle */
  position: absolute;
  font-family: 'FontAwesome';
  font-weight: 900;
  left: 0;
  top: 2px;
  /* Adjust vertical alignment */
  font-size: 20px;
  color: var(--accent-secondary-color);
}

/* Success Stories Redesign */
.our-testimonial {
  padding: 80px 0;
  background-color: #ffffff;
}

.badge-pill {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  margin-bottom: 0;
}

.testimonial-quote .section-title {
  margin-bottom: 0px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '\f10d';
  /* FontAwesome Quote Left */
  display: none;
  /* Hide the quote icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.05;
  z-index: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-info h3 {
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
}

.testimonial-rating {
  display: none;
  color: var(--accent-color);
  font-size: 12px;
  margin-top: 5px;
}

.testimonial-quote {
  font-family: var(--default-font);
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Badge for Testimonial Cards */
.testimonial-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-secondary-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 0 12px 0 24px;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 20;
}

.testimonial-tag {
  display: inline-block;
  background: #f1f1f1;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Redesigned Modal Styles - Dr. Boz Metabolic Kick */
.modal-overlay {
  background: rgba(4, 46, 69, 0.8) !important;
  backdrop-filter: blur(8px) !important;
}

.modal-container {
  border-radius: 12px !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
  max-width: 900px !important;
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
  cursor: default !important;
}

/* Sticky Header */
.modal-header {
  background: #f8f9fa !important;
  padding: 20px 30px !important;
  border-bottom: 1px solid #e0e0e0 !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.modal-badge {
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  display: inline-block;
}

.modal-header h2 {
  font-family: 'Epilogue', sans-serif !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  font-size: 28px !important;
  margin: 0 !important;
}

.modal-close-btn {
  top: 20px !important;
  right: 20px !important;
  color: #828283 !important;
  transition: color 0.3s ease !important;
  opacity: 0.7;
}

.modal-close-btn:hover {
  color: var(--accent-color) !important;
  opacity: 1;
}

/* Split Layout Body */
.modal-body-split {
  display: flex;
  flex-direction: row;
  overflow-y: auto;
  height: 100%;
}

.modal-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: #ffffff;
  padding: 30px;
  border-right: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-content-main {
  flex-grow: 1;
  padding: 40px;
  background: #ffffff;
}

/* Sidebar Elements */
.patient-avatar-large img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  margin-bottom: 20px;
}

.results-glance {
  width: 100%;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.results-glance h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary-color);
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.results-glance ul {
  padding: 0;
  margin: 0;
}

.results-glance ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 24px;
  font-weight: 500;
}

.results-glance ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Main Content Typography */
.modal-content-main .clinical-section h4 {
  color: #042e45 !important;
  font-size: 20px !important;
  border-bottom: none !important;
  margin-bottom: 15px !important;
  text-transform: none !important;
  font-family: 'Epilogue', sans-serif !important;
}

.modal-content-main .clinical-section p {
  font-family: 'DM Sans', sans-serif !important;
  line-height: 1.7 !important;
  color: #4a4a4a !important;
  font-size: 16px !important;
  margin-bottom: 20px;
}

/* Medical Reversal Box */
.result-highlight-medical {
  background: #e6f7ff !important;
  border-left: 4px solid #042e45 !important;
  padding: 25px !important;
  border-radius: 8px !important;
  margin-top: 30px;
  margin-bottom: 0;
}

.result-highlight-medical h4 {
  color: #042e45 !important;
  margin-top: 0;
}

/* Responsive Split View */
@media (max-width: 992px) {
  .modal-body-split {
    flex-direction: column;
  }

  .modal-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 20px;
  }

  .patient-avatar-large img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    margin-bottom: 0;
  }

  .results-glance {
    margin-left: 20px;
    width: auto;
    flex-grow: 1;
  }

  .modal-content-main {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .modal-sidebar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .patient-avatar-large img {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .results-glance {
    margin-left: 0;
    width: 100%;
  }

  .modal-header h2 {
    font-size: 22px !important;
  }
}

/* Read More Link Style */
.read-more {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  color: var(--accent-secondary-color);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.read-more i {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .read-more i {
  transform: translateX(5px);
}

/* --- New Modal Redesign (Split Layout) --- */

/* Modal Container Override */
.clinical-modal .modal-container {
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 1. New Sticky Header */
.modal-split-header {
  background: #fff;
  padding: 10px 60px 10px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 100px;
}

.modal-split-header h2 {
  font-family: var(--accent-font);
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color);
  margin: 0;
}

.modal-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 0 12px 0 24px;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 20;
}

/* Close Button Redesign */
.modal-close-btn-new {
  position: absolute;
  right: 20px;
  top: 40px;
  transform: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 0;
  z-index: 30;
}

.modal-close-btn-new:hover {
  color: var(--accent-color);
}

/* 2. Split Layout Body */
.modal-split-body {
  display: flex;
  flex-direction: row;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  align-items: stretch;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Desktop Only: Faux Column & Sticky Sidebar */
@media (min-width: 901px) {
  .modal-split-body {
    background: linear-gradient(
      to right,
      #f8f9fa 0%,
      #f8f9fa 320px,
      #eee 320px,
      #eee 321px,
      #ffffff 321px,
      #ffffff 100%
    );
  }
}

/* Left Sidebar (Summary) */
.modal-sidebar {
  width: 320px;
  background: #f8f9fa;
  padding: 40px 30px;
  border-right: 1px solid #eee;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Desktop Only: Sticky Sidebar Behavior */
@media (min-width: 901px) {
  .modal-sidebar {
    background: transparent;
    border-right: none;
    position: sticky;
    top: 0px;
    align-self: flex-start;
    height: auto;
  }
}

.modal-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  object-fit: cover;
}

.modal-stat-box {
  background: transparent;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  border-left: none;
}

.modal-stat-box:last-child {
  border-bottom: none;
}

.modal-stat-box h4 {
  font-size: 1.125rem;
  text-transform: none;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-weight: 600;
  letter-spacing: normal;
  display: block;
}

.modal-stat-box p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
  line-height: 1.3;
}

/* Right Content (Narrative) */
.modal-main-content {
  padding: 40px;
  flex-grow: 1;
}

.modal-main-content h3 {
  font-family: var(--accent-font);
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.modal-main-content h3:first-child {
  margin-top: 0;
}

.modal-main-content p {
  font-family: var(--default-font);
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.modal-quote-box {
  font-style: italic;
  font-size: 18px;
  color: var(--primary-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin: 30px 0;
  line-height: 1.5;
}

.medical-reversal-box {
  background: var(--accent-secondary-color);
  border: 1px solid var(--accent-secondary-color);
  border-radius: 8px;
  padding: 25px;
  margin-top: 30px;
}

.medical-reversal-box h4 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.medical-reversal-box h4 i {
  margin-right: 8px;
}

.medical-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  object-fit: contain;
}

.medical-reversal-box .medical-icon {
  filter: brightness(0) invert(1);
}

.medical-reversal-box ul {
  line-height: 1.5;
  list-style: none;
  padding: 0;
  margin: 0;
}

.medical-reversal-box li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--white-color);
  font-size: 18px;
}

.medical-reversal-box li::before {
  content: '';
  position: absolute;
  font-family: FontAwesome;
  font-weight: 900;
  left: 0px;
  top: 0px;
  font-size: 20px;
  color: var(--accent-color);
  transition: 0.4s ease-in-out;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .modal-split-body {
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  .modal-sidebar {
    width: 100%;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    row-gap: 10px;
    align-items: center;
    text-align: left;
  }

  .modal-avatar-large {
    grid-column: 1;
    grid-row: 1 / 4;
    margin-bottom: 0;
    margin-right: 0;
    width: 100px;
    height: 100px;
  }

  .modal-stat-box {
    grid-column: 2;
    width: 100%;
    text-align: left;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
  }

  .modal-stat-box:last-child {
    border-bottom: none;
  }

  .modal-stat-box h4 {
    font-size: 1.125rem;
    margin-bottom: 2px;
  }

  .modal-stat-box p {
    font-size: 1.125rem;
  }

  .modal-main-content {
    padding: 30px 20px;
    padding-bottom: 40px;
  }
}

/* Mobile Optimization (< 600px) */
@media (max-width: 600px) {
  .modal-split-header {
    padding: 20px 20px 15px 20px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .modal-split-header h2 {
    font-size: 22px;
    margin-top: 5px;
    padding-right: 0;
    line-height: 1.2;
  }

  .modal-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
    box-shadow: none;
  }

  .modal-close-btn-new {
    top: 15px;
    right: 15px;
    font-size: 28px;
  }

  /* Adjust sidebar for very small screens */
  .modal-sidebar {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    text-align: center;
  }

  .modal-avatar-large {
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 15px;
  }

  .modal-stat-box {
    grid-column: 1;
    text-align: center;
  }

  .modal-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* Compact FAQ Accordion for Objections Section */
.faq-compact .accordion-item {
  margin-bottom: 15px !important;
}

.faq-compact .accordion-header .accordion-button {
  padding: 12px 20px;
  font-size: 16px;
}

.faq-compact .accordion-body {
  padding: 15px 20px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-body-color);
}

/* FAQ Grid Section Styles */
.faq-grid-section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  /* Light Gray-Blue */
}

.objection-card {
  background: var(--white-color);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  border: 1px solid var(--divider-color);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.objection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
  /* Boz Gold */
}

.objection-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

.objection-number {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-color);
  /* Boz Gold */
  background: rgba(249, 214, 123, 0.15);
  /* Gold with low opacity */
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.objection-card h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary-color);
  /* Deep Navy */
  margin: 0;
}

.objection-body {
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body-color);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--divider-color);
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
}

/* Reveal Answer on Hover */
.objection-card:hover .objection-body {
  opacity: 1;
  max-height: 300px;
  /* Arbitrary large height */
  visibility: visible;
  margin-top: 15px;
  padding-top: 15px;
}

/* --- Objections Section --- */
.faq-clean-section {
  position: relative;
  z-index: 1;
  background-color: var(--white-color);
  padding: 100px 0;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

/* Sidebar Column */
.faq-sidebar {
  flex: 0 0 32%;
  max-width: 32%;
}

/* Content Column */
.faq-content {
  flex: 0 0 calc(68% - 60px);
  max-width: calc(68% - 60px);
}

/* Sidebar Navigation Tabs */
.faq-sidebar .nav-pills .nav-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  color: var(--text-color);
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 18px;
  padding: 22px 30px;
  margin-bottom: 15px;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-sidebar .nav-pills .nav-link:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq-sidebar .nav-pills .nav-link.active {
  background-color: var(--accent-secondary-color);
  color: var(--white-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .faq-clean-section {
    padding: 60px 0;
  }

  .faq-sidebar,
  .faq-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .faq-sidebar .section-title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  /* Scrollable Nav Pills */
  .faq-sidebar .nav-pills {
    flex-direction: row !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 5px;
    margin-right: -15px;
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .faq-sidebar .nav-pills::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .faq-sidebar .nav-pills .nav-link {
    white-space: nowrap;
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 15px;
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 5px;
  }

  .faq-sidebar .nav-pills .nav-link.active {
    background-color: var(--accent-secondary-color);
    color: var(--white-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* Adjust Accordion Padding for Mobile */
  .faq-content .accordion-button {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-content .accordion-body {
    padding: 10px 20px 20px 20px;
  }

  .faq-category-description p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faq-sidebar .nav-pills {
    gap: 0px;
  }
}

/* --- Decision Matrix Section (Horizontal Accordion) --- */
.decision-matrix-section {
  position: relative;
  z-index: 1;
}

.decision-matrix-section .section-title {
  margin-bottom: 60px;
}

.decision-accordion-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  height: 500px;
  display: flex;
  gap: 15px;
  padding: 0 15px;
}

@media (max-width: 991px) {
  .decision-accordion-wrapper {
    flex-direction: column;
    height: auto;
  }

  .decision-card-item {
    height: 100px;
    margin-bottom: 10px;
  }

  .decision-card-item.active {
    height: auto;
    min-height: 400px;
  }

  .decision-card-item:not(.active) .card-content-collapsed {
    flex-direction: row-reverse;
    left: auto;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: auto;
    gap: 15px;
  }

  .decision-card-item:not(.active) .card-content-collapsed h3 {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 20px;
  }
}

.decision-card-item {
  position: relative;
  flex: 1;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--white-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.decision-card-item.active {
  flex: 3.5;
  /* Expand active item */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-secondary-color);
}

.decision-card-item:not(.active):hover {
  background-color: var(--accent-secondary-color);
  border-color: var(--accent-secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.decision-card-item:not(.active):hover .card-content-collapsed h3 {
  color: var(--white-color);
}

/* Background Image Overlay */
.decision-card-item .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: grayscale(100%);
}

.decision-card-item.active .card-bg {
  opacity: 0.1;
  /* Subtle background texture */
}

/* Gradient Overlay */
.decision-card-item .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.decision-card-item.active .card-overlay {
  opacity: 1;
}

/* Collapsed Content */
.card-content-collapsed {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  width: 100%;
  padding: 0 10px;
  text-align: center;
}

.decision-card-item.active .card-content-collapsed {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}

.card-content-collapsed h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 1px;
  margin: 0;
  white-space: nowrap;
}

.card-content-collapsed .icon-box-small {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: none;
}

.card-content-collapsed .icon-box-small img {
  width: 24px;
  height: 24px;
  opacity: 1;
  filter: brightness(0.12);
  /* Make darker (approx primary-color) */
}

/* Expanded Content */
.card-content-expanded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  /* Slight delay */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Align content to bottom */
  transform: translateY(20px);
}

.decision-card-item.active .card-content-expanded {
  opacity: 1;
  transform: translateY(0);
}

.expanded-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.expanded-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
}

.expanded-header .icon-box-large {
  width: 60px;
  height: 60px;
  background: var(--accent-secondary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(4, 46, 69, 0.2);
}

.expanded-header .icon-box-large img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.expanded-body .question {
  font-size: 18px;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
}

.expanded-body .result-badge {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(249, 214, 123, 0.3);
  position: absolute;
  top: 40px;
  right: 40px;
}

.expanded-body p:last-child {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 0;
  max-width: 90%;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .decision-accordion-wrapper {
    flex-direction: column;
    height: auto;
    padding: 0;
    gap: 10px;
  }

  .decision-card-item {
    flex: none;
    height: 80px;
    /* Collapsed height */
    border-radius: 16px;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .decision-card-item.active {
    flex: none;
    height: 450px;
    /* Expanded height increased for mobile spacing */
  }

  .card-content-collapsed {
    flex-direction: row;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    justify-content: flex-start;
    padding: 0 20px;
  }

  .decision-card-item.active .card-content-collapsed {
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
  }

  .card-content-collapsed h3 {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 18px;
  }

  .card-content-expanded {
    justify-content: center;
    padding: 30px;
  }

  /* Mobile Badge Reposition logic if needed, but top-right absolute might overlap small screens */
  .expanded-body .result-badge {
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .expanded-header h3 {
    font-size: 24px;
  }

  .expanded-body .question {
    font-size: 16px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Value Stack Section --- */
.value-stack-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

@media (min-width: 992px) {
  .sticky-pricing-wrapper {
    position: sticky;
    top: 0px;
    z-index: 5;
  }
}

.value-item.what-we-list-item {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 20px;
  background: var(--white-color);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
}

.value-item .icon-box {
  background: rgba(var(--accent-color-rgb), 0.1);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.value-item li,
ul.medical-list li {
  position: relative;
  padding-left: 0px;
  margin-bottom: 15px;
  font-size: 18px;
  list-style: none;
}

ul.medical-list li {
  line-height: 1.6;
}

.value-item li::before,
ul.medical-list li::before {
  content: '';
  position: absolute;
  font-family: FontAwesome;
  font-weight: 900;
  left: -30px;
  top: 0px;
  font-size: 20px;
  color: var(--accent-secondary-color);
  transition: 0.4s ease-in-out;
}

/* Matching .card-badge style */
.value-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 8px 16px;
  border-radius: 0 20px 0 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-family: var(--accent-font);
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

/* --- Pricing Card Style --- */
.pricing-card {
  border-radius: 40px;
  background: var(--accent-secondary-color);
  color: var(--white-color);
  height: auto;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-card h2 {
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: -2px;
  font-family: var(--accent-font);
  font-weight: 700;
}

.text-accent {
  color: var(--accent-color) !important;
}

.pricing-card .pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Specific Header Styling */
.pricing-card .pricing-header span:first-child {
  font-family: var(--accent-font);
  font-weight: 700;
}

.medical-grade-card {
  background: var(--white-color);
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.medical-grade-card .section-title {
  margin-bottom: 10px;
}

.medical-grade-card .section-title h3 {
  font-size: 1.25rem;
  text-transform: none;
}

/* Typography Overrides */
.value-stack-section .display-4 {
  font-weight: 800;
  letter-spacing: -1px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .value-item.what-we-list-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px;
    text-align: left;
  }

  .value-item.what-we-list-item .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-badge {
    align-self: flex-start;
    margin-left: 0 !important;
    margin-top: 0px;
  }
}

/* --- Split-View Decision Matrix (Bottom Section) --- */
.decision-display-area {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.decision-content-block {
  display: none;
  width: 100%;
}

.decision-content-block.active {
  display: block;
  animation: fadeScaleIn 0.4s ease-out;
}

.decision-result-header {
  margin-bottom: 15px;
}

.large-text {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.btn-reset {
  background: none;
  border: none;
  color: var(--accent-color);
  text-decoration: none;
  cursor: pointer;
  margin-top: 20px;
  font-size: 14px;
  padding: 0;
  font-weight: 600;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-reset::before {
  content: '←';
}

.btn-reset:hover {
  opacity: 0.8;
  color: var(--accent-color);
}

.decision-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  height: 100%;
}

.decision-trigger {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  backdrop-filter: blur(5px);
}

.decision-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.decision-trigger.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(249, 214, 123, 0.4);
}

.trigger-text {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--white-color);
  flex-grow: 1;
  line-height: 1.4;
}

.decision-trigger.active .trigger-text {
  color: var(--primary-color);
  font-weight: 700;
}

.trigger-icon {
  display: none;
}

@media (max-width: 991px) {
  .decision-grid-container {
    grid-template-columns: 1fr;
  }

  .decision-display-area {
    min-height: auto;
    margin-bottom: 30px;
    padding: 30px;
  }
}

/* --- Target Audience Section --- */
.target-audience-section {
  background: linear-gradient(to bottom, var(--white-color) 0%, var(--secondary-bg-color) 100%);
  position: relative;
  z-index: 1;
  padding: 100px 0;
  margin: 0 15px;
}

/* Dual Card Base */
/* Persona Cards (Minimalist Redesign) */
.persona-card {
  background: var(--white-color);
  border-radius: 24px;
  /* Slightly larger radius */
  padding: 40px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  /* Almost invisible border */
  position: relative;
}

@media (max-width: 768px) {
  .persona-card {
    padding: 25px;
    padding-top: 40px;
  }
}

.persona-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Remove colored borders */
.persona-card.veteran,
.persona-card.beginner {
  border-left: none;
}

.solution-section {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* Very subtle divider */
  background: transparent;
  /* Remove background */
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.persona-header {
  margin-bottom: 35px;
  position: relative;
  text-align: center;
}

.persona-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  /* Tighter tracking for modern look */
}

.card-subhead {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.8;
  font-style: normal;
  /* Remove italics */
}

.persona-body {
  display: flex;
  flex-direction: column;
}

/* Refined Badge */
.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 16px;
  border-radius: 0 24px 0 24px;
  /* Corner styling */
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  background: var(--accent-secondary-color);
  color: var(--white-color);
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
  /* Float effect */
}

.persona-card.beginner .card-badge {
  background: var(--accent-color);
  color: var(--primary-color);
}

/* Minimalist Header Icon */
.header-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Removed background and shadow for cleaner look */
}

.header-icon img {
  width: 48px;
  /* Larger, cleaner icon */
  height: 48px;
}

/* Clean Segments */
.card-segment {
  padding-bottom: 0;
  border-bottom: none;
}

.card-segment:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Highlight Fix Segment */
.card-segment.highlight {
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  padding-top: 20px;
}

.segment-label {
  display: block;
  font-family: var(--accent-font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent-secondary-color);
  margin-bottom: 12px;
  opacity: 1;
}

.segment-label img {
  width: 16px;
  height: 16px;
}

.card-segment p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color);
}

/* Anti-Persona Section Wrapper */
.anti-persona-section {
  background-color: rgba(249, 214, 123, 0.6);

  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  border-radius: 50px;
}

@media only screen and (max-width: 991px) {
  .anti-persona-section {
    border-radius: 0;
  }
}

/* Ensure Anti-Persona header uses Navy icon */
.anti-persona-section .section-title h3 {
  color: var(--accent-secondary-color) !important;
  font-size: 28px;
  background: none !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.anti-persona-section .section-title h3::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-color: var(--accent-secondary-color);
  -webkit-mask: url('../images/icon-sub-heading.svg') no-repeat center;
  mask: url('../images/icon-sub-heading.svg') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Anti-Persona Cards */
.anti-persona-card {
  background: var(--white-color);
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.anti-persona-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.anti-persona-card .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--secondary-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.anti-persona-card:hover .icon-box {
  background: var(--accent-secondary-color);
}

.anti-persona-card .icon-box img {
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
}

.anti-persona-card:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.anti-persona-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.anti-persona-card p {
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--text-color);
}

/* You Can't Do This Alone Section*/
/* Community Image Full Width */
.community-img-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.community-img {
  width: 100%;
  height: auto;
}

.community-img figure {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
}

.community-img img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: unset !important;
  border-radius: 30px;
}

@media (min-width: 992px) {
  .community-img-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    /* Standard Bootstrap gutter */
    width: calc(100% - 30px);
    /* Full width minus gutters */
    height: 100% !important;
  }
}

/* FAQ Vertical Slider */
.faq-slider {
  height: 100%;
  /* Fill available space */
  min-height: 600px;
  /* Fallback */
  padding: 10px;
  overflow: hidden;
}

/* Ensure the col-lg-6 parent allows 100% height */
.col-lg-6:has(.faq-slider) {
  display: flex;
  flex-direction: column;
}

.faqs-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  /* CRITICAL: Allows flex child to shrink below content size */
}

.faqs-content .section-title {
  flex-shrink: 0;
}

.faq-accordion.swiper {
  flex: 1;
  min-height: 0;
  /* CRITICAL: Allows swiper to be constrained by parent height */
}

@media (min-width: 992px) {
  /* On desktop, force the row to be a flex container where children stretch */
  .col-lg-6 {
    display: flex;
    flex-direction: column;
  }

  /* The Row naturally stretches children to equal height.
     We need to ensure the FAQ column doesn't Dictate the height if it's longer.
     However, standard flexbox behavior is to grow to the tallest.
     If FAQ is tallest, Image col grows.
     User wants FAQ to be same size 'without changing height of container on left'.
     This implies Image col is the master.
     If Image col is smaller, FAQ col should SHRINK to match it.
     This is impossible in standard CSS Grid/Flex if content is rigid, unless overflow is hidden.
     We set max-height or absolute positioning to enforce this.
  */

  .col-lg-6:has(.faq-slider) {
    /* Re-introducing a safety cap based on image aspect ratio? */
    /* Or better: */
    height: 100%;
  }
}

.faq-slider .swiper-slide {
  height: auto;
  max-height: 100%;
  /* Constrain to container height */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Adjust margin for swiper context */
.faq-slider .accordion-item {
  margin-bottom: 0;
  height: auto;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

.faq-slider .accordion-header {
  margin: 0;
}

.faq-slider .accordion-button {
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background-color: transparent;
  box-shadow: none;
  text-align: left;
}

.faq-slider .accordion-body {
  padding: 15px 20px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
}

/* Science of Breakthrough Section Padding */
.science-of-breakthrough {
  padding: 100px 0;
}

@media only screen and (max-width: 768px) {
  .science-of-breakthrough {
    padding-bottom: 0px;
  }
}

/* Feature Image Transition */
.feature-image-transition {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.feature-image-transition.fading {
  opacity: 0;
}

/************************************/
/***      12. How It Work css     ***/
/************************************/

.science-step-item {
  width: calc(50% - 40px);
  display: flex !important;
  flex-direction: column;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .science-step-item {
    width: 100%;
    margin-bottom: 30px;
  }
}

.science-step-item .icon-box {
  position: relative;
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-color);
  border-radius: 50%;
  margin-right: 0;
  margin-bottom: 30px;
}

.science-step-item .icon-box:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.science-step-item:hover .icon-box::before {
  transform: scale(1);
}

.science-step-item .icon-box img {
  width: 100%;
  max-width: 35px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}

@keyframes flip-vertical {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(0deg);
  }
}

.science-step-item:hover .icon-box img {
  filter: brightness(0) invert(0);
  animation: flip-vertical 1s ease-in-out forwards;
}

.science-no {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  height: 24px;
  width: 24px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.science-no h3 {
  font-size: 14px;
  color: var(--white-color);
}

.step-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  .step-content h3 {
    font-size: 18px;
  }
}

.science-content p {
  color: var(--white-color);
  margin: 0;
}

/* --- Responsive Refinements for Testimonials & Modals --- */

/* Tablet & Mobile Improvements for Testimonial Cards */
@media (max-width: 991px) {
  .testimonial-card {
    padding: 25px;
  }

  .testimonial-info h3 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-quote p {
    font-size: 15px;
    line-height: 1.5;
  }

  .testimonial-card:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  }
}

@media (max-width: 900px) {
  .modal-sidebar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 25px 20px;
  }

  .modal-stat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 12px 0;
  }

  .modal-stat-box h4 {
    margin-bottom: 0;
    font-size: 1rem;
    text-align: left;
  }

  .modal-stat-box p {
    font-size: 1rem;
    text-align: right;
    margin: 0;
  }

  .modal-avatar-large {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .modal-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-stat-box {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .modal-stat-box h4,
  .modal-stat-box p {
    text-align: center !important;
    width: 100%;
  }

  .medical-reversal-box {
    padding: 15px;
    margin-top: 20px;
  }

  .medical-reversal-box h4 {
    font-size: 1.125rem;
  }

  .medical-reversal-box li {
    font-size: 1.125rem;
    line-height: 1.3;
    padding-left: 30px;
  }
}

/* 34. Responsive css - Specific Patches */

/* --- .our-health-content Fixes --- */
@media (max-width: 991px) {
  .our-health-content {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .our-health-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure list items don't feel cramped */
  .our-health-content .what-we-list-item {
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 30px;
  }

  .our-health-content .what-we-list-item .icon-box {
    margin-bottom: 0;
    margin-right: 15px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-shrink: 0;
    /* Reduced specific margin */
    flex: 0 0 40px;
    /* Reduced icon size to give text more room */
  }

  .our-health-content .what-we-list-item .icon-box img {
    max-width: 50%;
    /* Ensure image scales within the smaller box */
  }

  .our-health-content .what-we-do-list-content {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    /* Critical for flex child text wrapping */
  }

  /* Adjust typography for better readability on small screens */
  .our-health-content .section-title h2 {
    font-size: 28px;
    /* Further reduced for mobile */
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .our-health-content .section-title h3 {
    font-size: 14px;
    padding-left: 26px;
    background-size: 18px auto;
    margin-bottom: 15px;
  }

  .our-health-content .what-we-do-list-content h3 {
    font-size: 18px;
    /* Reduced for hierarchy */
    margin-bottom: 8px;
  }

  .our-health-content .what-we-do-list-content p {
    font-size: 15px;
    /* Readable mobile body text */
    line-height: 1.5;
    color: var(--text-color);
  }
}

/* --- .our-team Fixes --- */
@media (max-width: 991px) {
  /* Tablet: Ensure grid consistency (2 wide handled by col-md-6) */
  .team-item {
    /* Ensure items have consistent height for alignment */
    height: auto;
    margin-bottom: 30px;
  }

  .team-image img {
    /* Ensure aspect ratio is maintained or adapted */
    height: auto;
  }
}

@media (max-width: 767px) {
  /* Mobile: Stacked view */
  .our-team {
    padding-bottom: 40px;
  }

  .team-item {
    margin-bottom: 40px;
    /* More space between stacked items */
    text-align: center;
    /* Center align for single column look */
    height: auto;
  }

  .team-image {
    margin: 0 auto;
    /* Center image */
    max-width: 300px;
    /* Prevent overly large images on phablets */
  }

  /* Adjust team content positioning for mobile */
  .team-content {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: -40px;
    background: var(--white-color);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .team-content h3,
  .team-content p {
    color: var(--primary-color);
  }

  .team-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  /* Small Mobile */
  .team-image {
    max-width: 100%;
  }

  .team-content {
    width: 95%;
  }
}

@media only screen and (max-width: 991px) {
  .anti-persona-card {
    margin-bottom: 20px;
  }

  .anti-persona-section .section-title h3 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .anti-persona-section .section-title h3 {
    font-size: 20px;
    align-items: flex-start;
  }
}

/* =========================================


/* =========================================
   Concerns Section Refactor - refined
   ================================********* */

/* Shared Tab Styles with FAQ Section */
#concernsTabs {
  border-bottom: 0;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#concernsTabs::-webkit-scrollbar {
  display: none;
}

#concernsTabs .nav-link {
  background: transparent;
  color: var(--text-color);
  font-family: var(--accent-font);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

#concernsTabs .nav-link.active {
  background: var(--accent-secondary-color);
  color: var(--white-color);
  text-decoration: none;
}

#concernsTabs .nav-link:hover:not(.active) {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* =========================================
   Concerns Section - Typography Adjustments
   ========================================= */

/* Apply font-size 20px to section titles in this specific tab content area */
#concernsTabContent .section-title h3 {
  font-size: 20px !important;
}

/* Accordion Header Styling: 18px font-size, 500 font-weight */
#concernsTabContent .accordion-button {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

/* =========================================
   Concerns Section - Desktop Grid Layout
   ========================================= */

@media (min-width: 992px) {
  /* Grid Layout for Desktop: 2 Columns */
  #concernsTabContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    gap: 30px;
    align-items: start;
  }

  /* Reset tab panes to display nicely in grid */
  #concernsTabContent .tab-pane {
    display: block !important;
    opacity: 1 !important;
    margin-bottom: 0;
    width: auto;
    break-inside: auto;
    margin-bottom: 5rem !important;
  }
}

/* Mobile Layout: Natural Stacking (Tabs) */
@media (max-width: 991px) {
  /* Ensure the active tab is visible and others are hidden */
  #concernsTabContent .tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.15s linear;
  }

  #concernsTabContent .tab-pane.active {
    display: block;
    opacity: 1;
  }
}

/* =========================================
   Decision Matrix - Icon Animation
   ========================================= */

@keyframes flip-horizontal-real {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

.decision-card:hover .icon-box img {
  animation: flip-horizontal-real 1s ease-in-out forwards;
}

/* ----------------------------------------------------------------------------------------
*   Metabolic Quiz Section
---------------------------------------------------------------------------------------- */

.metabolic-quiz-section {
  padding-top: 100px;
  padding-bottom: 50px;
  background-color: var(--white-color);
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .metabolic-quiz-section {
    padding-top: 50px;
  }
}

/* Left Column: Image Panel */
.quiz-image-panel {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--white-color) !important;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .quiz-image-panel {
    display: flex;
  }
}

.quiz-images-inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
}

.quiz-img-wrapper {
  position: absolute;
  overflow: hidden;
}

.quiz-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-img-wrapper.main-img {
  width: 85%;
  aspect-ratio: 1;
  top: 0;
  left: 0;
  border-radius: 20px;
  z-index: 1;
}

.quiz-img-wrapper.secondary-img {
  width: 45%;
  aspect-ratio: 1;
  bottom: 0;
  right: 0;
  border-radius: 20px;
  border: 10px solid #fff;
  z-index: 2;
}

/* Right Column: Interaction Panel */
.quiz-interaction-panel {
  padding: 60px 60px 40px;
  min-height: 700px;
  background: var(--white-color);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Scrollable Results Area */
#quiz-results {
  flex: 1;
  max-height: 480px;
  overflow-y: auto;
  min-height: 0;
  padding-right: 10px;
}

/* Custom Scrollbar */
#quiz-results::-webkit-scrollbar {
  width: 6px;
}

#quiz-results::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0;
}

#quiz-results::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 0;
}

#quiz-results::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary-color);
}

/* Intro Text */
.quiz-intro-text {
  margin-bottom: 40px;
  max-width: 600px;
}

.quiz-pretitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-secondary-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.quiz-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.quiz-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Stepper */
.quiz-stepper-container {
  margin-bottom: 50px;
  max-width: 600px;
}

.quiz-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quiz-stepper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
  transform: translateY(-50%);
}

.step-item {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 10px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.step-item.active .step-circle {
  border-color: var(--accent-secondary-color);
  background: var(--accent-secondary-color);
  color: #fff;
}

.step-item.completed .step-circle {
  border-color: var(--accent-secondary-color);
  background: var(--accent-color);
  color: var(--primary-color);
}

#quiz-results h3 {
  font-size: 20px;
}

#quiz-results h2 {
  font-size: 22px;
}

/* Question Box */
.question-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

/* quiz options */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-option-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.quiz-option-card:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
}

.quiz-option-card.selected {
  border-color: var(--accent-color);
  background: var(--accent-color);
  box-shadow: 0 0 0 1px var(--accent-color);
}

.option-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
  margin-right: 20px;
  width: 20px;
}

.option-text {
  flex: 1;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.5;
}

.option-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quiz-option-card.selected .option-check {
  opacity: 1;
  transform: scale(1);
}

/* Navigation */
.quiz-nav-top {
  margin-bottom: 20px;
}

.btn-quiz-back {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.btn-quiz-back:hover {
  color: var(--primary-color);
}

.btn-quiz-reset {
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
}

/* Results Area */
.quiz-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {
  .quiz-interaction-panel {
    padding: 50px 30px 40px;
    min-height: 500px;
    height: auto;
    max-height: none;
  }

  .quiz-image-panel {
    min-height: 300px;
  }

  #quiz-results {
    max-height: 500px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Force scrollbar visibility on Webkit mobile browsers */
  #quiz-results::-webkit-scrollbar {
    display: block !important;
    width: 6px;
    background: #f1f1f1;
  }

  #quiz-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0;
  }

  #quiz-results::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 0;
  }

  /* Make sure image shows on tablet/mobile if we remove d-none */
  /* For now keeping d-none d-lg-block in HTML, but if we wanted to show it: */
  /* .quiz-image-panel { height: 300px; } */
}

@media (max-width: 768px) {
  .question-title {
    font-size: 24px;
  }

  .option-text {
    font-size: 16px;
  }

  .quiz-stepper-container {
    margin-bottom: 30px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------- */
/* Modal Calendar Styles */
/* ------------------------------------- */
.calendar-btn {
  background-color: #000;
  color: var(--white-color);
  position: relative;
  font-family: var(--accent-font);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border-radius: 50px;
  padding: 18px 30px;
  border: none !important;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.calendar-btn:hover {
  background-color: var(--accent-color) !important;
  color: var(--primary-color);
}
.modal-container-large {
  width: 96% !important;
  max-width: 1650px !important;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-split-header {
  border-bottom: 2px solid var(--secondary-color);
  background: var(--white-color);
  padding: 20px 40px;
}

.modal-split-header h2 {
  font-size: 28px;
  color: var(--accent-secondary-color);
}

.modal-badge {
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.modal-body-scrollable {
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  background-color: #fcfcfc;
}

.calendar-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 40px;
}

/* Minimal styling for scrollbar in the wrapper */
.calendar-wrapper::-webkit-scrollbar {
  height: 8px;
}
.calendar-wrapper::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

/* Digital Calendar Grid Styles */
.calendar-legend {
  display: flex;
  gap: 30px;
  background: var(--white-color);
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-icon {
  font-size: 18px;
}

.pill-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
}

.legend-text {
  display: flex;
  flex-direction: column;
}

.legend-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-secondary-color);
}

.legend-desc {
  font-size: 14px;
  color: var(--text-color);
}

.legend-desc small {
  color: #64748b;
  font-size: 14px;
}

/* Base Grid Container */
.digital-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  min-width: 1400px;
}

/* Headers */
.grid-header {
  background: #f8fafc;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Row Label spanning full width */
.grid-row-label {
  grid-column: 1 / -1;
  background: var(--accent-secondary-color);
  color: var(--white-color);
  padding: 8px 15px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid-row-label span {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

/* Day Boxes */
.grid-day {
  background: var(--white-color);
  min-height: 180px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
}

.grid-day:hover {
  background: #fdfdfd;
}

.prep-day {
  background: #fafafa;
}

.weekend {
  background: #f8fafc;
}

/* Date Numbers */
.date-num {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  align-self: flex-start;
  margin-bottom: 4px;
}

.boxed-num {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  color: #64748b;
}

.weekend-num {
  background: #e2e8f0;
}

/* Event Pills */
.event-pill {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
  line-height: 1.2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: default;
  transition: transform 0.2s;
}

.event-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.core-pill {
  background: #0ea5e9; /* Bright Blue */
  color: var(--white-color);
}

.case-pill {
  background: var(--accent-color); /* Bright Yellow/Gold */
  color: var(--primary-color);
}

.prep-pill {
  background: #cbd5e1;
  color: var(--primary-color);
}

.alert-pill {
  background: #ef4444; /* Red */
  color: var(--white-color);
}

.action-pill {
  background: #000000; /* Black */
  color: var(--white-color);
}

.routine-pill {
  background: #f8fafc; /* Very subtle grey */
  color: #475569;
  border: 1px solid #e2e8f0;
  font-weight: 500;
  font-size: 14px;
  box-shadow: none;
}

.routine-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.phase-pill-cravings {
  background: #8b5cf6; /* Distinct Vibrant Purple */
  color: var(--white-color);
  margin-top: auto;
  font-size: 14px;
}

.phase-pill-metabolic {
  background: #f97316; /* Distinct Vibrant Orange */
  color: var(--white-color);
  margin-top: auto;
  font-size: 14px;
}

/* ------------------------------------- */
/* Responsive Layouts for Digital Calendar */
/* ------------------------------------- */

/* Tablet & Mobile Wrapper Settings - Full View with Scaling */
@media (max-width: 1450px) {
  .modal-container-large {
    width: 98% !important;
    max-width: 98vw !important;
    max-height: 98vh !important;
  }

  .calendar-wrapper {
    /* Use flexbox to center the scaled down calendar */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    width: 100%;
    /* Hide overflow caused by the scaling transform */
    overflow: hidden;
  }

  /* The grid itself enforces width to prevent squishing */
  .digital-calendar-grid {
    min-width: 1400px;
    /* Transformation origin to top-center so it scales down predictably */
    transform-origin: top center;
  }
}

/* Specific Scale Steps based on Viewport Width */
@media (max-width: 1450px) and (min-width: 1201px) {
  .digital-calendar-grid {
    transform: scale(0.9);
    margin-bottom: -10%;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .digital-calendar-grid {
    transform: scale(0.75);
    margin-bottom: -25%;
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  .digital-calendar-grid {
    transform: scale(0.6);
    margin-bottom: -40%;
  }
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
  .modal-container-large {
    border-radius: 12px;
  }

  .modal-split-header {
    padding: 20px 15px 15px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .modal-split-header h2 {
    font-size: 22px;
    margin-top: 5px;
    line-height: 1.2;
  }

  .modal-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    align-self: flex-start;
  }

  .modal-close-btn-new {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .calendar-wrapper {
    padding: 0 10px 20px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
  }

  .digital-calendar-grid {
    transform: scale(0.45);
    transform-origin: top left;
    margin-bottom: -55%;
    margin-right: -55%;
  }

  .calendar-legend {
    padding: 12px 15px;
    gap: 15px;
    min-width: 100%;
    width: max-content;
    margin-bottom: 20px;
    transform: scale(0.85);
    transform-origin: top left;
    margin-right: -15%;
  }
}
