
/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Services Section
6.  Class Section
7.  Trainer Section
8.  Membership Plan Section
9.  Contact
10.  Footer Style

-------------------------------------------------------------------*/

/*----------------------------------------*/

/* Template default CSS
/*----------------------------------------*/

html, body {
	height: 100%;
	font-family: "Poppins", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
}
h1 {
	font-size: 70px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
p {
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	color: #6b6b6b;
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
}
img {
	max-width: 100%;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}
ul, ol {
	padding: 0;
	margin: 0;
}
/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 25px;
}
.section-title h2 {
	color: #111111;
	font-size: 40px;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
}
.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.spad {
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 10px;
}
.spad-short {
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 10px;
}
.spad-minimal {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 10px;
}
.spad-2 {
	padding-top: 50px;
	padding-bottom: 70px;
}
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white li, .text-white a {
	color: #fff;
}
/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	padding: 0 12px;
	color: #ffffff;
	text-align: center;
	width: 160px;
	height: 46px;
	border-left: 2px solid #eb3c5a;
	border-right: 2px solid #f67831;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
	background-size: 100% 2px;
	background-image: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831)), -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background-image: -o-linear-gradient(left, #eb3c5a 0%, #f67831 100%), -o-linear-gradient(left, #eb3c5a 0%, #f67831 100%);
	background-image: linear-gradient(to right, #eb3c5a 0%, #f67831 100%), linear-gradient(to right, #eb3c5a 0%, #f67831 100%);
	-webkit-transition-duration: 1000ms;
	-o-transition-duration: 1000ms;
	transition-duration: 1000ms;
	line-height: 45px;
	position: relative;
	z-index: 1;
}
/* Update primary-btn colors to #00A9A4 with transparency, except signup-btn */
.primary-btn:not(.signup-btn) {
	background: rgba(0, 169, 164, 0.9);
	border-left: 2px solid rgba(0, 169, 164, 0.9);
	border-right: 2px solid rgba(0, 169, 164, 0.9);
	background-image: none;
}
.primary-btn:not(.signup-btn):hover {
	background: rgba(0, 169, 164, 1);
}
.primary-btn:after {
	color: #fff;
	-webkit-transition-duration: 500ms;
	-o-transition-duration: 500ms;
	transition-duration: 500ms;
	background: #f67831;
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 1;
}
/* Update primary-btn:after for non-signup buttons */
.primary-btn:not(.signup-btn):after {
	background: rgba(0, 169, 164, 0.9);
	opacity: 0;
}
/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}
.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}
@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}
/*---------------------
  Header
-----------------------*/

.header-section {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.6); /* Adjust opacity as needed */
}
.header-section .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	float: left;
}
.logo a {
	display: flex;
	align-items: center;
	padding: 24px 0 29px;
}
.nav-menu {
	float: right;
	display: flex;
	align-items: center;
}
.nav-menu .mainmenu {
	display: inline-block;
}
.nav-menu .mainmenu ul {
	display: flex;
	align-items: center;
	margin: 0 0 0 40px;
	padding: 0;
}
.nav-menu .mainmenu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 18px;
}
.nav-menu .mainmenu ul li.active a:after {
	opacity: 1;
}
.nav-menu .mainmenu ul li a {
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
	padding: 25px 0;
	position: relative;
	display: flex;
	align-items: center;
}
.nav-menu .mainmenu ul li a:hover:after {
	opacity: 1;
}
.nav-menu .mainmenu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 24px;
	width: 100%;
	height: 2px;
	background: #f15d44;
	content: "";
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.nav-menu .signup-btn {
	display: flex;
	align-items: center;
	margin: 0 0 0 40px;
}
.nav-menu .signup-btn:after {
	opacity: 0;
}
.slicknav_menu {
	display: none;
}
/*---------------------
  Hero Section
-----------------------*/

.hero-section {
	height: 634px;
	padding-top: 313px;
}
.hero-text span {
	font-size: 14px;
	color: #f15d44;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}
.hero-text h1 {
	font-size: 72px;
	color: #ffffff;
	font-weight: 600;
	margin-top: 11px;
	margin-bottom: 18px;
}
.hero-text p {
	color: #ffffff;
	margin-bottom: 44px;
}
/*---------------------
  About Section
-----------------------*/

.about-pic {
	position: relative;
}
.about-pic .play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-41.5px, -41.5px);
	-ms-transform: translate(-41.5px, -41.5px);
	transform: translate(-41.5px, -41.5px);
}
.about-text {
	padding-top: 12px;
	padding-left: 40px;
}
.about-text h2 {
	font-size: 40px;
	color: #111111;
	text-transform: uppercase;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	margin-bottom: 25px;
}
.about-text p {
	color: #6b6b6b;
}
.about-text p.first-para {
	margin-bottom: 10px;
}
.about-text p.second-para {
	margin-bottom: 25px;
}
.about-text img {
	margin-bottom: 25px;
}
.about-text .at-author h4 {
	font-size: 22px;
	color: #111111;
	font-weight: 600;
}
.about-text .at-author span {
	font-size: 12px;
	color: #f15d44;
}
.about-section.about-page .about-text {
	padding-top: 8px;
}
.about-section.about-page .about-text h2 {
	margin-bottom: 20px;
}
.about-section.about-page .about-text .second-para {
	margin-bottom: 28px;
}
/*---------------------
  Hero Section
-----------------------*/

.services-pic {
	margin-left: -15px;
	margin-right: -15px;
}
.services-pic img {
	height: 660px;
	min-width: 100%;
}
.services-item {
	margin-left: -15px;
	margin-right: -15px;
	background: #141414;
	padding-top: 110px;
	position: relative;
	padding-left: 70px;
	padding-right: 45px;
	padding-bottom: 30px;
	height: 330px;
	overflow: hidden;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.services-item.bg-gray {
	background: #1e1e1e;
}
.services-item.pd-b {
	padding-top: 100px;
}
.services-item img {
	position: absolute;
	left: 70px;
	top: 60px;
}
.services-item h4 {
	font-size: 22px;
	color: #ffffff;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 12px;
	line-height: 1.3;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.services-item b,
.services-item B {
	color: #ff4444;
	font-weight: 600;
	font-size: 14px;
	display: block;
	margin-bottom: 10px;
	line-height: 1.4;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.services-item p {
	color: #bdbdbd;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.5;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
/*---------------------
  Classes Section
-----------------------*/

.classes-section.classes-page {
	padding-bottom: 60px;
}
.classes-slider {
	margin: 0;
}
.classes-slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 12px;
}
.classes-slider.owl-carousel .owl-dots button {
	width: 9px;
	height: 9px;
	display: inline-block;
	background: #ebebeb;
	border-radius: 50%;
	margin-right: 10px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.classes-slider.owl-carousel .owl-dots button.owl-dot.active {
	width: 42px;
	border-radius: 50px;
	background: #f67831;
}
.classes-slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}
.classes-slider .col-lg-4 {
	max-width: 100%;
}
.single-class-item {
	height: 255px;
	position: relative;
	margin-bottom: 30px;
}
.single-class-item .si-text {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	padding-left: 30px;
	padding-top: 10px;
	padding-bottom: 15px;
}
.single-class-item .si-text h4 {
	font-size: 22px;
	font-weight: 600;
	color: #ffffff;
}
.single-class-item .si-text span {
	font-size: 14px;
	color: #ffffff;
}
.single-class-item .si-text span i {
	color: #e85d39;
	margin-right: 4px;
}
/*---------------------
  Trainer Section
-----------------------*/

.trainer-section {
	background: #f5f5f5;
	padding-top: 90px;
	padding-bottom: 190px;
}
.trainer-section.about-trainer {
	background: #ffffff;
}
.single-trainer-item {
	position: relative;
}
.single-trainer-item:hover .trainer-text {
	height: 250px;
	bottom: -90px;
	padding: 26px 30px 30px;
	-webkit-box-shadow: 0px 10px 49px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 10px 49px 0px rgba(0, 0, 0, 0.15);
}
.single-trainer-item:hover .trainer-text p {
	opacity: 1;
}
.single-trainer-item:hover .trainer-text .trainer-social {
	opacity: 1;
	visibility: visible;
}
.single-trainer-item img {
	min-width: 100%;
}
.single-trainer-item .trainer-text {
	position: absolute;
	left: 50%;
	bottom: -55px;
	text-align: center;
	background: #ffffff;
	width: 310px;
	margin: 0 auto;
	-webkit-transform: translateX(-155px);
	-ms-transform: translateX(-155px);
	transform: translateX(-155px);
	-webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
	padding: 20px 30px 18px;
	height: 90px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	overflow: hidden;
}
.single-trainer-item .trainer-text h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 600;
	margin-bottom: 4px;
}
.single-trainer-item .trainer-text span {
	font-size: 16px;
	color: #f15d44;
}
.single-trainer-item .trainer-text p {
	margin-top: 7px;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.single-trainer-item .trainer-text .trainer-social {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.single-trainer-item .trainer-text .trainer-social a {
	display: inline-block;
	font-size: 17px;
	color: #111111;
	margin-right: 25px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.single-trainer-item .trainer-text .trainer-social a:hover {
	color: #f15d44;
}
.single-trainer-item .trainer-text .trainer-social a:last-child {
	margin-right: 0;
}
/*---------------------
  Testimonial Section
-----------------------*/

.testimonial-section {
	position: relative;
}
.testimonial-section:after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1100px;
	height: 540px;
	background: url(../img/testimonial/testimonial-bg.png);
	content: "";
	-webkit-transform: translate(-550px, -270px);
	-ms-transform: translate(-550px, -270px);
	transform: translate(-550px, -270px);
}
.testimonial-section .section-title {
	margin-bottom: 35px;
}
.testimonial-slider.owl-carousel .owl-item img {
	display: inline-block;
}
.testimonial-slider.owl-carousel .owl-nav button {
	font-size: 36px;
	color: #bdbdbd;
	position: absolute;
	left: -110px;
	top: 30%;
}
.testimonial-slider.owl-carousel .owl-nav button:hover {
	color: #ed8064;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -110px;
}
.testimonial-slider .testimonial-item {
	text-align: center;
}
.testimonial-slider .testimonial-item p {
	font-size: 22px;
	color: #111111;
	line-height: 30px;
	margin-bottom: 60px;
}
.testimonial-slider .testimonial-item .ti-pic {
	width: 120px;
	height: 120px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.testimonial-slider .testimonial-item .ti-pic img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
}
.testimonial-slider .testimonial-item .ti-pic .quote {
	position: absolute;
	left: 20px;
	top: -22px;
	z-index: -1;
}
.testimonial-slider .testimonial-item .ti-pic .quote img {
	width: auto;
	height: auto;
	border-radius: initial;
}
.testimonial-slider .testimonial-item .ti-author {
	margin-top: 25px;
}
.testimonial-slider .testimonial-item .ti-author h4 {
	font-size: 22px;
	color: #111111;
	font-weight: 600;
	margin-bottom: 8px;
}
.testimonial-slider .testimonial-item .ti-author span {
	font-size: 16px;
	color: #f15d44;
}
/*---------------------
  Banner Section
-----------------------*/

.banner-section.spad-short {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	min-height: auto !important;
	max-height: 360px !important; /* Increased from 340px to make it a little bit bigger */
	overflow: hidden;
	display: flex;
	align-items: center;
}
.banner-section.spad-short .container {
	height: 100%;
}
.banner-section.spad-short .row {
	height: 100%;
	margin: 0;
}
.banner-text {
	padding-top: 30px !important;
	padding-bottom: 25px !important;
}
.banner-text h2 {
	font-size: 39px !important; /* Increased from 38px */
	color: #ffffff;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	margin-bottom: 15px !important;
	line-height: 1.3 !important;
}
.banner-text p {
	font-size: 15px !important;
	line-height: 26px !important;
	color: #ffffff;
	margin-bottom: 22px !important;
}
.banner-section .container .row {
	align-items: center;
}
.banner-section .col-lg-5 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.banner-section .col-lg-5 img {
	max-height: 340px !important; /* Increased from 320px to make it a little bit bigger */
	width: auto;
	object-fit: contain;
	transform: scale(1.05); /* 5% zoom in */
	transform-origin: center;
}
/*---------------------
  Membership Section
-----------------------*/

.membership-section {
	padding-bottom: 10px;
	margin-bottom: 40px !important;
}
.membership-section .section-title {
	margin-bottom: 25px;
}
.membership-section .row.mt-5 {
	margin-top: 2rem !important;
}
.membership-section .fw-bold {
	font-weight: 500 !important;
	font-family: "Poppins", sans-serif;
}
.membership-item {
	text-align: center;
	background: #ffffff;
	-webkit-box-shadow: 0px 15px 49px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 15px 49px rgba(0, 0, 0, 0.15);
	padding-bottom: 50px;
}
.membership-item .mi-title {
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
	padding: 25px 0;
	position: relative;
	margin-bottom: 38px;
}
.membership-item .mi-title h4 {
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
}
.membership-item .mi-title:after {
	position: absolute;
	left: 50%;
	bottom: -14px;
	width: 30px;
	height: 15px;
	-webkit-transform: translateX(-15px);
	-ms-transform: translateX(-15px);
	transform: translateX(-15px);
	-webkit-clip-path: polygon(0% 0%, 50% 100%, 50% 100%, 100% 0%);
	clip-path: polygon(0% 0%, 50% 100%, 50% 100%, 100% 0%);
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
	content: "";
}
.membership-item .mi-price {
	font-size: 40px;
	color: #f15d44;
	font-weight: 600;
	margin-bottom: 24px;
}
.membership-item .mi-price span {
	font-size: 16px;
	color: #6b6b6b;
	font-weight: 400;
}
.membership-item ul {
	margin-bottom: 27px;
}
.membership-item ul li {
	list-style: none;
	font-size: 16px;
	line-height: 36px;
}
.membership-item ul li p {
	margin-bottom: 0;
	color: #6b6b6b;
}
.membership-item ul li span {
	color: #111111;
	font-weight: 600;
}
.membership-item .membership-btn {
	color: #111111;
}
.membership-item .membership-btn:hover {
	color: #ffffff;
}
.membership-item .membership-btn:hover:after {
	opacity: 1;
}
.membership-item .membership-btn:after {
	opacity: 0;
}
/*---------------------
  Register Section
-----------------------*/

.register-section {
	background: #f5f4f4;
	padding-top: 235px;
	margin-top: -135px;
}
.register-section.classes-page {
	background: #ffffff;
	padding-top: 100px;
	margin-top: 0;
	padding-bottom: 0;
}
.register-section.classes-page .classes-page-text {
	-webkit-box-shadow: 0px 12px 21px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 12px 21px rgba(0, 0, 0, 0.15);
}
.register-section .section-title {
	margin-bottom: 32px;
}
.register-section .section-title h2 {
	margin-bottom: 12px;
}
.register-text {
	padding: 50px 70px 60px 70px;
	background: #ffffff;
	margin-right: -15px;
}
.register-text .register-form label {
	font-size: 14px;
	color: #9b9b9b;
	margin-bottom: 11px;
}
.register-text .register-form input {
	width: 100%;
	height: 46px;
	border: 1px solid #ebebeb;
	padding-left: 20px;
	font-size: 14px;
	color: #9b9b9b;
	margin-bottom: 18px;
}
.register-text .register-form .register-btn {
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
	width: 100%;
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
	border: none;
	padding: 12px 0;
	cursor: pointer;
	margin-top: 30px;
}
.register-pic {
	margin-left: -15px;
}
.register-pic img {
	height: 502px;
}
/*---------------------
  Latest BLog Section
-----------------------*/

.latest-blog-section .section-title {
	margin-bottom: 25px;
}
.latest-blog-section.recommend {
	padding-top: 0;
}
.latest-blog-section.recommend h3 {
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	color: #111111;
	text-transform: uppercase;
	margin-bottom: 52px;
}
/*---------------------
  Footer Banner Section
-----------------------*/

.footer-banner-item {
	height: 400px;
	margin-left: -15px;
	margin-right: -15px;
	position: relative;
	padding-top: 85px;
	padding-left: 60px;
	padding-right: 60px;
	z-index: 1;
}
.footer-banner-item:after {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 520px;
	height: 310px;
	border: 18px solid rgba(255, 255, 255, 0.1);
	content: "";
	-webkit-transform: translate(-260px, -155px);
	-ms-transform: translate(-260px, -155px);
	transform: translate(-260px, -155px);
	z-index: -1;
}
.footer-banner-item span {
	font-size: 16px;
	color: #f15d44;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.footer-banner-item h2 {
	font-size: 40px;
	color: #ffffff;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 5px;
}
.footer-banner-item p {
	color: #ffffff;
	margin-bottom: 42px;
}
/*---------------------
  Footer
-----------------------*/

.footer-section {
	background: #111111;
	padding-top: 60px;
	padding-bottom: 30px;
}
.contact-option span {
	font-size: 14px;
	color: #f15d44;
}
.contact-option p {
	font-size: 16px;
	color: #ffffff;
	margin-top: 15px;
}
.subscribe-option {
	overflow: hidden;
	padding: 0 45px;
	margin-bottom: 30px;
	margin-top: 43px;
}
.subscribe-option .so-text {
	float: left;
	padding: 34px 0 26px;
}
.subscribe-option .so-text h4 {
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.subscribe-option .so-text p {
	margin-bottom: 0;
	font-size: 14px;
	color: #ffffff;
}
.subscribe-option .subscribe-form {
	float: right;
	width: 340px;
	position: relative;
	margin: 37px 0;
}
.subscribe-option .subscribe-form input {
	width: 100%;
	height: 46px;
	font-size: 14px;
	color: #bdbdbd;
	border: 1px solid #ffffff;
	padding-left: 22px;
}
.subscribe-option .subscribe-form button {
	font-size: 18px;
	color: #ffffff;
	background: rgba(0, 169, 164, 0.9);
	border: none;
	height: 46px;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 22px;
}
.subscribe-option .subscribe-form button:hover {
	background: rgba(0, 169, 164, 1);
}
.copyright-text {
	overflow: hidden;
}
.copyright-text p {
	padding-top: 6px;
	float: left;
	color: #ffffff;
	margin-right: 25px;
	display: inline-block;
}
.copyright-text p a {
	color: #ffffff;
}
.copyright-text p a:hover {
	color: #eb3c5a;
}
.copyright-text ul {
	display: inline-block;
}
.copyright-text ul li {
	list-style: none;
	font-size: 16px;
	display: inline-block;
	margin-right: 25px;
	line-height: 40px;
}
.copyright-text ul li:last-child {
	margin-right: 0;
}
.copyright-text ul li a {
	color: #ffffff;
}
.copyright-text ul li:last-child {
	margin-right: 0;
}
.copyright-text .footer-social {
	float: right;
}
.copyright-text .footer-social a {
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	width: 40px;
	height: 40px;
	background: #282828;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	margin-left: 4px;
}
.copyright-text .footer-social a:first-child {
	margin-left: 0;
}
.copyright-text .footer-social a:hover {
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
}
/*---------------------
  Breadcrumb Section
-----------------------*/

.breadcrumb-section {
	padding-top: 190px;
	height: 400px;
}
.breadcrumb-text {
	text-align: center;
}
.breadcrumb-text h2 {
	font-size: 60px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.breadcrumb-text .breadcrumb-option a {
	font-size: 16px;
	color: #ffffff;
	display: inline-block;
	margin-right: 10px;
	position: relative;
}
.breadcrumb-text .breadcrumb-option a:after {
	position: absolute;
	right: -10px;
	top: 0;
	content: "";
	font-family: "FontAwesome";
}
.breadcrumb-text .breadcrumb-option span {
	font-size: 16px;
	color: #bdbdbd;
	display: inline-block;
}
/*---------------------------
  Classes Timetable Section
----------------------------*/

.classes-timetable {
	padding-top: 0;
}
.classes-timetable .nav-controls {
	text-align: center;
	margin-bottom: 42px;
}
.classes-timetable .nav-controls ul li {
	list-style: none;
	font-size: 16px;
	color: #111111;
	font-weight: 600;
	display: inline-block;
	margin-right: 48px;
	text-transform: uppercase;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
}
.classes-timetable .nav-controls ul li.active {
	color: #f15d44;
}
.classes-timetable .nav-controls ul li:hover {
	color: #f15d44;
}
.classes-timetable .nav-controls ul li:last-child {
	margin-right: 0;
}
.schedule-table.filtering .ts-item {
	opacity: 0;
}
.schedule-table.filtering .ts-item.show {
	opacity: 1;
}
.schedule-table table {
	width: 100%;
	text-align: center;
	border: 1px solid #e1e1e1;
}
.schedule-table table thead tr th {
	font-size: 16px;
	color: #000000;
	font-weight: 600;
	text-transform: uppercase;
	padding: 25px 0;
	background: #f0f0f0;
}
.schedule-table table tbody tr {
	border-top: 1px solid #e5e5e5;
}
.schedule-table table tbody tr td {
	width: 146px;
	background: #ffffff;
	border-right: 1px solid #e5e5e5;
	padding: 18px 0;
	position: relative;
	z-index: 1;
}
.schedule-table table tbody tr td.ts-item {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.schedule-table table tbody tr td:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
	content: "";
	opacity: 0;
	z-index: -1;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.schedule-table table tbody tr td.hover-bg:hover h6 {
	color: #ffffff;
}
.schedule-table table tbody tr td.hover-bg:hover span {
	color: #ffffff;
}
.schedule-table table tbody tr td.hover-bg:hover .trainer-name {
	color: #ffffff;
}
.schedule-table table tbody tr td.hover-bg:hover:after {
	opacity: 1;
}
.schedule-table table tbody tr td.workout-time {
	font-size: 16px;
	color: #000000;
	font-weight: 600;
	text-transform: uppercase;
}
.schedule-table table tbody tr td h6 {
	font-weight: 600;
	color: #f15d44;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.schedule-table table tbody tr td span {
	font-size: 14px;
	font-weight: 600;
	color: #111111;
}
.schedule-table table tbody tr td .trainer-name {
	font-size: 14px;
	color: #6b6b6b;
}
/*---------------------
  About Counter
-----------------------*/

.about-counter-text {
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
	overflow: hidden;
	padding: 35px 65px 15px;
}
.about-counter-text .single-counter {
	float: left;
	margin-right: 180px;
}
.about-counter-text .single-counter:last-child {
	margin-right: 0;
}
.about-counter-text .single-counter h1 {
	font-size: 72px;
	color: #ffffff;
	display: inline-block;
}
.about-counter-text .single-counter span {
	font-size: 72px;
	color: #ffffff;
	display: inline-block;
	line-height: 80px;
}
.about-counter-text .single-counter p {
	color: #ffffff;
	letter-spacing: 2px;
	text-transform: uppercase;
}
/*---------------------
  Gym Award Section
-----------------------*/

.award-text {
	padding-top: 20px;
}
.award-text h2 {
	font-size: 40px;
	font-weight: 600;
	color: #111111;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.award-text p {
	margin-bottom: 10px;
}
/*---------------------
  Gallery Section
-----------------------*/

.gallery-section {
	padding-bottom: 70px;
}
.gallery-controls {
	text-align: center;
	margin-bottom: 55px;
}
.gallery-controls li {
	list-style: none;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: #111111;
	text-transform: uppercase;
	margin-right: 30px;
	cursor: pointer;
}
.gallery-controls li.active {
	color: #f15d44;
}
.gallery-controls li:last-child {
	margin-right: 0;
}
.gallery-filter img {
	min-width: 100%;
	margin-bottom: 30px;
}
/*---------------------
  Blog Section
-----------------------*/

.blog-section {
	padding-bottom: 50px;
}
.single-blog-item {
	margin-bottom: 42px;
}
.single-blog-item img {
	min-width: 100%;
	margin-bottom: 30px;
}
.single-blog-item .blog-widget {
	margin-bottom: 10px;
}
.single-blog-item .blog-widget .bw-date {
	font-size: 14px;
	color: #bdbdbd;
	display: inline-block;
	margin-right: 8px;
}
.single-blog-item .blog-widget .tag {
	font-size: 14px;
	color: #f15d44;
}
.single-blog-item h4 a {
	color: #111111;
	font-weight: 600;
	line-height: 30px;
}
/*----------------------------
  Blog Details Hero Section
----------------------------*/

.blog-details {
	padding-top: 50px;
}
.blog-details-hero {
	height: 633px;
	padding-top: 280px;
}
.bd-hero-text {
	text-align: center;
}
.bd-hero-text span {
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	background: #f15d44;
	letter-spacing: 2px;
	border-radius: 2px;
	padding: 4px 16px;
	display: inline-block;
}
.bd-hero-text h2 {
	color: #ffffff;
	font-size: 40px;
	font-weight: 600;
	line-height: 60px;
	text-transform: uppercase;
	margin-top: 15px;
}
.bd-text .bd-title {
	margin-bottom: 55px;
}
.bd-text .bd-title p {
	font-size: 17px;
	line-height: 30px;
}
.bd-text .bd-pic {
	margin-bottom: 35px;
}
.bd-text .bd-pic img {
	min-width: 100%;
	margin-bottom: 20px;
}
.bd-text .bd-more-text {
	margin-bottom: 52px;
}
.bd-text .bd-more-text .bm-item h4 {
	font-weight: 600;
	-webkit-column-rule: #111111;
	-moz-column-rule: #111111;
	column-rule: #111111;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.bd-text .bd-more-text .bm-item p {
	font-size: 17px;
	line-height: 30px;
}
.bd-text .bd-quote {
	background: -webkit-gradient(linear, left top, right top, from(#eb3c5a), to(#f67831));
	background: -o-linear-gradient(left, #eb3c5a, #f67831);
	background: linear-gradient(to right, #eb3c5a, #f67831);
	padding: 40px 60px 30px 60px;
	position: relative;
	border-radius: 10px;
	z-index: 1;
	margin-bottom: 52px;
}
.bd-text .bd-quote samp {
	position: absolute;
	left: 45px;
	top: 35px;
	font-size: 89px;
	color: #ffffff;
	opacity: 0.1;
	line-height: 68px;
	z-index: -1;
}
.bd-text .bd-quote p {
	font-size: 24px;
	color: #ffffff;
	line-height: 36px;
	margin-bottom: 23px;
}
.bd-text .bd-quote .quote-author h5 {
	color: #ffffff;
	margin-bottom: 4px;
}
.bd-text .bd-quote .quote-author span {
	font-size: 14px;
	color: #ffffff;
}
.bd-text .bd-last-para {
	margin-bottom: 55px;
}
.bd-text .bd-last-para p {
	font-size: 17px;
	line-height: 30px;
}
.bd-text .tag-share {
	overflow: hidden;
	border-top: 1px solid #ebebeb;
	padding-top: 30px;
	margin-bottom: 60px;
}
.bd-text .tag-share .tags {
	float: left;
}
.bd-text .tag-share .tags a {
	font-size: 12px;
	color: #111111;
	text-transform: uppercase;
	background: #ebebeb;
	letter-spacing: 2px;
	border-radius: 2px;
	padding: 4px 16px;
	display: inline-block;
	font-weight: 500;
	margin-right: 6px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.bd-text .tag-share .tags a:hover {
	color: #ffffff;
	background: #f15d44;
}
.bd-text .tag-share .tags a:last-child {
	margin-right: 0;
}
.bd-text .tag-share .social-share {
	float: right;
}
.bd-text .tag-share .social-share span {
	font-size: 18px;
	color: #111111;
	display: inline-block;
}
.bd-text .tag-share .social-share a {
	color: #111111;
	display: inline-block;
	font-size: 16px;
	margin-left: 25px;
}
.bd-text .blog-author {
	margin-bottom: 55px;
}
.bd-text .blog-author .ba-pic {
	background: #f7f7f7;
	padding: 28px 0;
	border-radius: 2px;
	text-align: center;
}
.bd-text .blog-author .ba-pic img {
	height: 144px;
	width: 144px;
	border-radius: 50%;
	border: 10px solid #ffffff;
}
.bd-text .blog-author .ba-text {
	padding-top: 35px;
}
.bd-text .blog-author .ba-text h5 {
	color: #111111;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 12px;
}
.bd-text .blog-author .ba-text p {
	font-size: 17px;
	margin-bottom: 30px;
}
.bd-text .blog-author .ba-text .bt-social a {
	display: inline-block;
	font-size: 14px;
	color: #111111;
	margin-right: 25px;
}
.bd-text .leave-comment h3 {
	color: #111111;
	font-weight: 600;
	margin-bottom: 32px;
}
.bd-text .leave-comment form input {
	width: 100%;
	height: 46px;
	border: 1px solid #ebebeb;
	padding-left: 20px;
	font-size: 16px;
	margin-bottom: 30px;
	color: #ebebeb;
}
.bd-text .leave-comment form input:focus {
	color: #111111;
}
.bd-text .leave-comment form textarea {
	width: 100%;
	height: 110px;
	border: 1px solid #ebebeb;
	padding-left: 20px;
	font-size: 16px;
	padding-top: 10px;
	color: #ebebeb;
	margin-bottom: 42px;
	resize: none;
}
.bd-text .leave-comment form textarea:focus {
	color: #111111;
}
.bd-text .leave-comment form button {
	font-size: 16px;
	color: #ffffff;
	padding: 10px 33px;
	display: inline-block;
	background: rgba(0, 169, 164, 0.9);
	border: none;
}
.bd-text .leave-comment form button:hover {
	background: rgba(0, 169, 164, 1);
}
/*---------------------
  Map Section
-----------------------*/

.map {
	height: 612px;
	position: relative;
}
.map iframe {
	width: 100%;
}
.map img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-14px, -21px);
	-ms-transform: translate(-14px, -21px);
	transform: translate(-14px, -21px);
}
/*---------------------
  Contact Section
-----------------------*/

.contact-info h4 {
	font-weight: 600;
	color: #111111;
	text-transform: uppercase;
	margin-bottom: 47px;
}
.contact-info .contact-address .ca-widget {
	overflow: hidden;
	margin-bottom: 16px;
}
.contact-info .contact-address .ca-widget .cw-icon {
	height: 74px;
	width: 74px;
	border: 1px solid #ebebeb;
	border-radius: 50%;
	text-align: center;
	line-height: 74px;
	float: left;
	margin-right: 28px;
}
.contact-info .contact-address .ca-widget .cw-text {
	padding-top: 12px;
}
.contact-info .contact-address .ca-widget .cw-text h5 {
	color: #bdbdbd;
	margin-bottom: 5px;
}
.contact-info .contact-address .ca-widget .cw-text p {
	margin-bottom: 0;
	color: #111111;
	font-size: 18px;
}
.contact-form h4 {
	font-weight: 600;
	color: #111111;
	text-transform: uppercase;
	margin-bottom: 47px;
}
.contact-form form input {
	width: 100%;
	height: 51px;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	font-size: 16px;
	margin-bottom: 30px;
}
.contact-form form input::-webkit-input-placeholder {
	color: #9a9a9a;
}
.contact-form form input::-moz-placeholder {
	color: #9a9a9a;
}
.contact-form form input:-ms-input-placeholder {
	color: #9a9a9a;
}
.contact-form form input::-ms-input-placeholder {
	color: #9a9a9a;
}
.contact-form form input::placeholder {
	color: #9a9a9a;
}
.contact-form form input:focus {
	color: #111111;
}
.contact-form form textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	font-size: 16px;
	padding-top: 10px;
	margin-bottom: 42px;
	resize: none;
}
.contact-form form textarea::-webkit-input-placeholder {
	color: #9a9a9a;
}
.contact-form form textarea::-moz-placeholder {
	color: #9a9a9a;
}
.contact-form form textarea:-ms-input-placeholder {
	color: #9a9a9a;
}
.contact-form form textarea::-ms-input-placeholder {
	color: #9a9a9a;
}
.contact-form form textarea::placeholder {
	color: #9a9a9a;
}
.contact-form form textarea:focus {
	color: #111111;
}
.contact-form form button {
	font-size: 14px;
	color: #ffffff;
	padding: 10px 33px;
	display: inline-block;
	background: rgba(0, 169, 164, 0.9);
	border: none;
	text-transform: uppercase;
}
.contact-form form button:hover {
	background: rgba(0, 169, 164, 1);
}
/*-------------------------------- Respinsive Media Styles --------------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}
/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.services-item {
		padding-top: 60px;
		padding-left: 37px;
		padding-right: 30px;
		padding-bottom: 25px;
		height: auto;
		min-height: 300px;
	}
	.services-item img {
		left: 40px;
		top: 30px;
	}
	.services-item.pd-b {
		padding-top: 60px;
	}
	.services-item h4 {
		margin-top: 15px;
	}
	.single-trainer-item .trainer-text {
		width: 282px;
		-webkit-transform: translateX(-141px);
		-ms-transform: translateX(-141px);
		transform: translateX(-141px);
	}
	.testimonial-section:after {
		width: 990px;
		-webkit-transform: translate(-495px, -270px);
		-ms-transform: translate(-495px, -270px);
		transform: translate(-495px, -270px);
	}
	.footer-banner-item:after {
		width: 450px;
		-webkit-transform: translate(-225px, -155px);
		-ms-transform: translate(-225px, -155px);
		transform: translate(-225px, -155px);
	}
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -95px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -95px;
	}
	.about-counter-text .single-counter {
		margin-right: 110px;
	}
	.about-text {
		padding-top: 0;
		padding-left: 20px;
	}
	.award-text {
		padding-top: 0;
	}
	.bd-text .blog-author .ba-text {
		padding-top: 15px;
	}
}
@media only screen and (max-width: 991px) {
	.testimonial-section:after {
		display: none;
	}
	.banner-text {
		margin-bottom: 30px;
	}
	.single-trainer-item {
		margin-bottom: 110px;
	}
	.trainer-section {
		padding-bottom: 80px;
	}
	.membership-item {
		margin-bottom: 40px;
	}
	.register-section {
		padding-top: 195px;
	}
	.register-pic {
		margin-left: 0;
		padding-top: 30px;
	}
	.classes-page-text .register-pic {
		padding-top: 0;
	}
	.subscribe-option .so-text {
		float: none;
	}
	.subscribe-option .subscribe-form {
		float: none;
		margin: 5px 0 37px;
	}
	.award-text {
		margin-bottom: 30px;
	}
	.classes-page-text .register-pic img {
		min-width: 100%;
	}
	.contact-info {
		margin-bottom: 30px;
	}
	.register-text {
		margin-right: 0;
	}
}
/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.nav-menu .mainmenu ul li {
		margin-right: 12px;
	}
	.nav-menu .signup-btn {
		margin: 16px 0px 16px 0px;
		width: 145px;
	}
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -25px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -25px;
	}
	.about-counter-text .single-counter {
		margin-right: 30px;
	}
	.services-pic img {
		height: auto;
	}
	.register-pic img {
		height: auto;
		min-width: 100%;
	}
}
/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
	.slicknav_menu {
		display: block;
		background: transparent;
		padding: 0;
		position: relative;
		z-index: 55;
	}
	.slicknav_btn {
		margin: 22px 0;
		border-radius: 0;
	}
	.slicknav_nav {
		background: #222;
	}
	.slicknav_nav ul {
		margin: 10px;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: #f15d44;
		color: #ffffff;
	}
	.slicknav_nav a {
		padding: 10px;
	}
	.nav-menu .mainmenu {
		display: none;
	}
	.nav-menu .signup-btn {
		display: none;
	}
	.hero-text {
		padding: 25px 20px !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.hero-text h1 {
		font-size: 65px;
	}
	.hero-text h2 {
		font-size: 36px !important;
		white-space: normal !important;
		line-height: 1.2;
	}
	.services-section {
		padding: 30px 0;
	}
	.service-items {
		margin-top: 20px;
	}
	.services-pic {
		margin-bottom: 30px;
	}
	.services-pic img {
		height: auto;
	}
	.testimonial-slider.owl-carousel .owl-nav button {
		left: -10px;
	}
	.testimonial-slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}
	.footer-banner-item:after {
		width: 450px;
		-webkit-transform: translate(-225px, -155px);
		-ms-transform: translate(-225px, -155px);
		transform: translate(-225px, -155px);
	}
	.banner-text {
		padding-top: 40px;
	}
	.register-pic img {
		height: auto;
		min-width: 100%;
	}
	.copyright-text {
		text-align: center;
	}
	.copyright-text p {
		float: none;
		display: block;
		margin-bottom: 20px;
		margin-right: 0;
	}
	.copyright-text .footer-social {
		float: none;
	}
	.about-section .about-text {
		padding-left: 0;
	}
	.about-counter-text {
		padding: 35px 35px 15px;
	}
	.about-counter-text .single-counter {
		float: none;
		margin-right: 0;
		text-align: center;
	}
	.schedule-table {
		overflow: auto;
	}
	.classes-timetable .nav-controls ul li {
		margin-right: 10px;
	}
	.gallery-controls li {
		margin-right: 15px;
	}
	.bd-text .tag-share .tags {
		float: none;
		margin-bottom: 10px;
	}
	.bd-text .tag-share .social-share {
		float: none;
	}
	.testimonial-slider.owl-carousel .owl-nav {
		text-align: center;
		padding-top: 20px;
	}
	.testimonial-slider.owl-carousel .owl-nav button {
		position: relative;
		margin: 0 5px;
	}
}
/* Small Mobile: 320px */

@media only screen and (max-width: 479px) {
	.hero-text h1 {
		font-size: 42px;
	}
	.single-trainer-item .trainer-text {
		width: 284px;
		-webkit-transform: translateX(-142px);
		-ms-transform: translateX(-142px);
		transform: translateX(-142px);
	}
	.footer-banner-item:after {
		width: 300px;
		-webkit-transform: translate(-150px, -155px);
		-ms-transform: translate(-150px, -155px);
		transform: translate(-150px, -155px);
	}
	.footer-banner-item {
		padding-top: 28px;
	}
	.subscribe-option {
		padding: 0 15px;
	}
	.subscribe-option .subscribe-form {
		width: 260px;
	}
	.copyright-text ul li {
		margin-right: 15px;
	}
	.register-text {
		padding: 50px 35px 60px 35px;
	}
	.services-item {
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 25px !important;
		padding-right: 25px !important;
		padding-top: 80px !important;
		padding-bottom: 25px !important;
		height: auto !important;
		min-height: auto !important;
		margin-bottom: 15px;
	}
	.services-item.pd-b {
		padding-top: 80px !important;
	}
	.services-item img {
		left: 25px !important;
		top: 25px !important;
		width: 40px !important;
		height: 40px !important;
		object-fit: contain;
	}
	.services-item h4 {
		font-size: 18px !important;
		margin-top: 10px !important;
		margin-bottom: 8px !important;
		line-height: 1.3;
		word-wrap: break-word;
		overflow-wrap: break-word;
		padding-right: 0;
	}
	.services-item b,
	.services-item B {
		font-size: 13px !important;
		margin-bottom: 8px !important;
		line-height: 1.4;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	.services-item p {
		font-size: 13px !important;
		line-height: 1.5;
		word-wrap: break-word;
		overflow-wrap: break-word;
		padding-right: 0;
		text-align: left;
		margin-bottom: 0;
		hyphens: auto;
	}
	.service-items .row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.services-item {
		overflow: visible !important;
	}
	.service-items .col-md-6 {
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 0;
	}
	.bd-text .tag-share .tags a {
		margin-bottom: 5px;
	}
	.gallery-controls li {
		margin-right: 10px;
	}



}

/* ============================================= */
/* VIDEO OVERLAY & PLAY BUTTON (NO JS)           */
/* ============================================= */
.about-pic {
    position: relative;
    overflow: hidden;
    line-height: 0;
    display: block;
    width: 100%;
    height: auto;
}

.about-pic img.about-pic-bg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
}

.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
    background: #000;
}

.youtube-embed iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.play-btn img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.play-btn:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .play-btn {
        width: 60px;
        height: 60px;
    }
}

/* ============================================= */


  
/* Popup container (overlay) */
.popup {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	justify-content: center;
	align-items: center;
	overflow: auto; /* allow page scroll if content too tall */
  }
  
  /* Popup content */
  .popup-content {
	position: relative;
	background: transparent;
	padding: 0;
	border-radius: 10px;
	max-width: 50vw;
	max-height: 100vh;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
	text-align: center;
	animation: fadeIn 0.3s ease-in-out;
	overflow: auto; /* enable inner scroll if image too large */
  }
  
  /* Override for text content - ensure white background */
  .popup-content.popup-text-content {
	background: #ffffff !important;
	background-color: #ffffff !important;
  }
  
  /* Image styling */
  .popup-content img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: none; /* allow tall images */
	object-fit: contain;
  }
  
  /* Text popup content styling */
  .popup-text-content {
	background: #ffffff !important;
	background-color: #ffffff !important;
	padding: 40px;
	border-radius: 12px;
	max-width: 700px;
	max-height: 85vh;
	overflow-y: auto;
	text-align: left;
	box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  }
  
  .popup-title {
	font-size: 32px;
	font-weight: 700;
	color: #00A9A4;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #00A9A4;
	font-family: 'Poppins', sans-serif;
  }
  
  .popup-text {
	color: #333;
	line-height: 1.8;
	font-size: 16px;
  }
  
  .popup-text p {
	margin-bottom: 20px;
	color: #555;
  }
  
  .popup-text p:last-child {
	margin-bottom: 0;
  }
  
  /* Close button */
  .close {
	position: absolute;
	top: 15px;
	right: 20px;
	color: #666;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1001;
	transition: color 0.3s;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.05);
  }
  
  .close:hover {
	color: #00A9A4;
	background: rgba(0, 169, 164, 0.1);
  }
  
  @keyframes fadeIn {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
  }
  

  
/* --------------------------Partners Section----------------------------- */
.partners-section {
    padding-top: 75px !important;
}

/* --------------------------Partners Continuous Scrolling----------------------------- */
.partners-scroll-container {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
    position: relative;
    padding: 20px 0;
    margin-left: 0;
    margin-right: 0;
}

.partners-scroll-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: scroll-partners 30s linear infinite;
    animation-play-state: running !important;
    will-change: transform;
    white-space: nowrap;
    transform: translateX(0);
    min-width: fit-content;
}

.partner-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
}

.partner-logo-item img {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.partner-logo-item img:hover {
    transform: scale(1.1);
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Ensure animation always plays and starts from beginning */
.partners-scroll-track {
    animation-play-state: running !important;
    animation-fill-mode: none !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .partners-scroll-track {
        gap: 50px;
    }
    .partner-logo-item img {
        height: 80px;
        max-width: 160px;
    }
}

@media (max-width: 767px) {
    .partners-scroll-track {
        gap: 40px;
        animation: scroll-partners 25s linear infinite !important;
        animation-play-state: running !important;
        will-change: transform;
    }
    .partner-logo-item img {
        height: 70px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .partners-scroll-track {
        gap: 30px;
        animation: scroll-partners 20s linear infinite !important;
        animation-play-state: running !important;
        will-change: transform;
    }
    .partner-logo-item img {
        height: 55px;
        max-width: 110px;
    }
}



/* SHUSTHO SLIDER - Below Latest Blog */
.shustho-slider-section {
    background: rgba(244, 244, 255, 0.3) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 169, 164, 0.15);
    min-height: 50vh;     /* 66.666vh */
    height: auto;     /* 66.666vh */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Source Sans Pro', sans-serif;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 430px;
    margin: 0 auto;
}

/* CARD */
.shustho-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    height: 430px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(0, 169, 164, 0.18);
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: backface-visibility hidden;
    pointer-events: none;
    transition: opacity 0.7s ease;
    z-index: 1;
    border-radius: 0;
}

.shustho-card.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
}

.shustho-card-img {
    width: 50%;
    background: #ccc center/cover no-repeat;
	/*object-fit: contain;*/
	display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.shustho-card-content {
    width: 50%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shustho-card-theme {
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #00A9A4;
    margin-bottom: 18px;
}

.shustho-card-title {
    font-weight: 900;
    font-size: 40px;
    line-height: 1.05;
    color: #111;
    margin-bottom: 20px;
}

.shustho-card-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* LINK HOVER FIX - NEVER WHITE AGAIN */
.shustho-card-link {
    font-weight: 700;
    font-size: 18px;
    color: #00A9A4 !important;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.4s ease;
    padding: 8px 0;
}

.shustho-card-link::after {
    content: " →";
    font-weight: 900;
    margin-left: 6px;
    transition: transform 0.4s ease;
}

.shustho-card-link:hover {
    color: #006d68 !important;
    transform: translateY(-3px);
}

.shustho-card-link:hover::after {
    transform: translateX(8px);
}

.shustho-card-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: #00A9A4;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.shustho-card-link:hover::before {
    width: 100%;
}

/* ARROWS */
.slider-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-nav button {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 169, 164, 0.3);
    border-radius: 50%;
    color: #00A9A4;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    transform: scale(1.18);
    background: #00A9A4;
    color: white;
    border-color: #00A9A4;
    box-shadow: 0 15px 40px rgba(0, 169, 164, 0.4);
}

/* MOBILE */
@media (max-width: 992px) {
    .shustho-slider-section {
        min-height: 50vh;
        height: auto;
        padding: 40px 15px; /*60pxx 15 px */
    }
    .slider-container { height: auto; }
    .shustho-card {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }
    .shustho-card-img,
    .shustho-card-content { width: 100%; }
    .shustho-card-img {
        height: 45vh;
        min-height: 280px;
    }
    .shustho-card-content { padding: 50px 30px; }
    .shustho-card-title { font-size: 32px; }
    .slider-nav { right: 15px; }
    .slider-nav button {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .shustho-card-title { font-size: 36px; }
    .shustho-card-content { padding: 40px 25px; }
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (min-width: 993px) { /* Target emulated desktop on mobile */
    .shustho-slider-section {
        padding: 20px;
    }
}

/* for membership plan hover effects */
.transition-all { transition: all 0.3s ease; }
    .plan-card {
        border: 1px solid #00A9A4 !important;
        border-radius: 24px !important;
        transition: all 0.3s ease;
    }
    .plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 169, 164, 0.15) !important;
        border-color: #00A9A4 !important;
    }
    .btn-teal:hover {
        background: rgba(0, 169, 164, 1) !important;
        transform: translateY(-2px);
    }
    .text-teal { color: #00a9a4 !important; }
    .wave-bg svg { transform: rotate(180deg); }



/* END OF CSS FILE */
/*---------------------
  Blog Slider
-----------------------*/
.blog-slider {
    position: relative;
    margin: 0 -15px;  /* Adjust for container padding */
}

.blog-slider .single-blog-item {
    padding: 15px;  /* Spacing between cards */
    transition: transform 0.3s ease;
}

.blog-slider .single-blog-item:hover {
    transform: translateY(-5px);  /* Subtle hover effect */
}

.blog-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;  /* Allows clicking through to cards */
}

.blog-slider .owl-nav button {
    pointer-events: all;  /* Re-enable clicks on arrows */
    background: rgba(255, 255, 255, 0.8) !important;
    color: #f15d44 !important;  /* Match your theme color */
    font-size: 20px;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 10px;  /* Push arrows slightly outward */
}

.blog-slider .owl-nav button:hover {
    background: #f15d44 !important;
    color: #fff !important;
    transform: scale(1.1);
}

.blog-slider .owl-nav .owl-prev {
    left: -20px;  /* Position left arrow outside */
    position: absolute;
}

.blog-slider .owl-nav .owl-next {
    right: -20px;  /* Position right arrow outside */
    position: absolute;
}

/* Mobile adjustments */
@media only screen and (max-width: 767px) {
    .blog-slider .owl-nav button {
        font-size: 24px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    .blog-slider .owl-nav .owl-prev {
        left: -10px;
    }
    .blog-slider .owl-nav .owl-next {
        right: -10px;
    }
}




/*---------------------
  Trainer Slider (Shop Slider)
-----------------------*/
/*==================================================================
  SHOP WITH SHUSTHO – Clean Modern Product Slider
====================================================================*/
/*==================================================================
  SHOP WITH SHUSTHO – SAME HEIGHT CARDS + MODERN DESIGN
====================================================================*/

.shustho-shop-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.shustho-shop-section .section-title h2 {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slider */
.shustho-shop-slider {
    margin: 0 -15px;
}

.shustho-shop-slider .owl-stage {
    display: flex;
}

.shustho-shop-slider .owl-item {
    display: flex;
    padding: 0 15px;
}

/* Card – Same Height */
.shustho-product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.shustho-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Fixed Image Height */
.product-image-wrapper {
    height: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-image-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.shustho-product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Text Area – Takes Remaining Space */
.card-body {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.3;
}

.product-badge {
    display: inline-block;
    background: #ffeaea;
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 30px;
    margin: 8px 0 12px;
}

.product-desc {
    font-size: 14px;
    color: #777;
    margin: 0 0 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-social a {
    color: #bbb;
    margin: 0 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.product-social a:hover {
    color: #00A9A4;
}

/* Navigation Arrows */
.shustho-shop-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.shustho-shop-slider .owl-nav button {
    pointer-events: all;
    background: #fff !important;
    color: #ff6b6b !important;
    width: 50px;
    height: 50px;
    line-height: 50px !important;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.shustho-shop-slider .owl-nav button:hover {
    background: #ff6b6b !important;
    color: #fff !important;
    transform: scale(1.1);
}

.shustho-shop-slider .owl-nav .owl-prev { left: -20px; position: absolute; }
.shustho-shop-slider .owl-nav .owl-next { right: -20px; position: absolute; }

/* Responsive */
@media (max-width: 767px) {
    .product-image-wrapper { height: 220px; }
    .shustho-shop-slider .owl-nav button {
        width: 40px;
        height: 40px;
        line-height: 40px !important;
        font-size: 18px;
    }
    .shustho-shop-slider .owl-nav .owl-prev { left: -10px; }
    .shustho-shop-slider .owl-nav .owl-next { right: -10px; }
}



/*==================================================================
  Corporate Wellness (Shustho Style)
====================================================================*/
.get-training-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    color: #ffffff;
    /* Padding handled by .spad-short class */
    background-attachment: fixed; /* optional: nice parallax effect */
}

.get-training-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.get-training-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.get-training-text {
    max-width: 620px;
}

.get-training-text h1 {
    font-size: 58px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #ffffff;
}

.get-training-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: .9;
    color: #ffffff;
}

/* Reuse your existing primary-btn - no changes needed! */

/* Responsive */
@media (max-width: 992px) {
    .get-training-section {
        min-height: 700px;
        padding: 100px 0;
        text-align: center;
    }
    .get-training-text {
        max-width: 100%;
        margin: 0 auto;
    }
    .get-training-text h1 {
        font-size: 52px;
    }
    .get-training-text p {
        font-size: 18px;
    }
    .primary-btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .get-training-section {
        min-height: 620px;
    }
    .get-training-text h1 {
        font-size: 44px;
        letter-spacing: 2px;
    }
    .get-training-text p {
        font-size: 17px;
    }
}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ======================== CORPORATE TESTIMONIAL SECTION (100% ISOLATED) ======================== */
.corporate-testimonial-section {
  background: linear-gradient(rgba(0,0,0,0.88), rgba(0,0,0,0.92)),
              url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat fixed;
  color:  #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 90px 20px 110px;
}
/* 2. Extra safety – force white on the most important text elements */
.corporate-testimonial-title,
.corporate-testimonial-subtitle,
.corporate-testimonial-name,
.corporate-testimonial-text {
    color: #ffffff !important;
}

/* 3. Make sure the stars stay gold (not affected by the white rule above) */
.corporate-testimonial-stars {
    color: #FFD700 !important;
}

.corporate-testimonial-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  max-width: 1320px;
  margin: 0 auto;
}

/* LEFT */
.corporate-testimonial-left {
  flex: 0 0 360px;
  padding-top: 6px;
}
.corporate-testimonial-title {
  font-size: 38px;
  font-weight: 500;
  line-height: 0.96;
  margin-bottom: 16px;
}
.corporate-testimonial-subtitle {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 360px;
}

/* RIGHT GRID */
.corporate-testimonial-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  align-content: start;
}

/* CARD */
.corporate-testimonial-card {
  background: rgba(30, 30, 30, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 20px;
  min-height: 210px;
  opacity: 0.95;
}
.corporate-testimonial-name {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.corporate-testimonial-position {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 8px;
  font-style: italic;
  opacity: 0.98;
}
.corporate-testimonial-stars {
  color: #FFD700;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1.2px;
}
.corporate-testimonial-text {
  font-size: 13.8px;
  line-height: 1.62;
  opacity: 0.90;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .corporate-testimonial-wrapper {
    gap: 40px;
    padding: 0 10px;
  }
  .corporate-testimonial-title { font-size: 50px; }
  .corporate-testimonial-right { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .corporate-testimonial-section { padding: 60px 20px; }
  .corporate-testimonial-wrapper { 
    flex-direction: column; 
    gap: 35px; 
  }
  .corporate-testimonial-left { flex: none; }
  .corporate-testimonial-title { font-size: 42px; }
  .corporate-testimonial-subtitle { font-size: 15px; }
  .corporate-testimonial-card { 
    padding: 20px; 
    min-height: 180px; 
  }
}

/* ==== SHUSTHO LIFE CONTACT FORM STYLES (NO CONFLICT) ==== */
.shustho-contact-section { padding: 60px 20px; background-color: #f8f9fa; }
.shustho-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
.shustho-contact-form, .shustho-map { flex: 1; min-width: 300px; max-width: 520px; }
.shustho-contact-form h2 { font-size: 32px; margin-bottom: 16px; color: #1a1a1a; }
.shustho-contact-form p { margin-bottom: 32px; color: #555; font-size: 16px; }

.shustho-form-group { margin-bottom: 22px; }
.shustho-form-row { display: flex; gap: 16px; }
.shustho-form-row .shustho-form-group { flex: 1; }

.shustho-contact-form label { 
  display: block; 
  margin-bottom: 8px; 
  font-weight: 500; 
  color: #333; 
}

.shustho-contact-form input,
.shustho-contact-form select,
.shustho-contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s;
}
.shustho-contact-form input:focus,
.shustho-contact-form select:focus,
.shustho-contact-form textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.shustho-contact-form textarea { min-height: 130px; resize: vertical; }
.shustho-country-code { display: flex; gap: 10px; }
.shustho-country-code select { width: 110px; flex-shrink: 0; }

#shusthoSubmitBtn {
  background:#1a1a1a; color:#fff; padding:14px 32px; border:none; border-radius:8px; 
  font-size:16px; cursor:pointer; transition:background 0.3s;
}
#shusthoSubmitBtn:hover:not(:disabled) { background:#333; }
#shusthoSubmitBtn:disabled { background:#666; cursor:not-allowed; }

.shustho-map-container {
  width: 100%; height: 480px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

#shusthoStatus { margin-top: 15px; padding: 12px; border-radius: 8px; font-weight: 500; }
.shustho-success { background:#d4edda; color:#155724; border:1px solid #c3e6cb; }
.shustho-error   { background:#f8d7da; color:#721c24; border:1px solid #f5c6cb; }

@media (max-width: 768px) {
  .shustho-container { flex-direction: column; gap: 40px; }
  .shustho-contact-form h2 { font-size: 28px; }
}

/* --------------------------Trusted by Leaders Section----------------------------- */
.trusted-leaders-section {
    position: relative;
    overflow: visible;
}

.trusted-leaders-section .photos-wrapper {
    position: relative;
    height: 350px;
    margin-bottom: 20px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.trusted-leaders-section .photo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 8px 0;
    width: 100%;
}

.trusted-leaders-section .photo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.trusted-leaders-section .photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.trusted-leaders-section .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fix for specific images that need to fit fully */
.trusted-leaders-section .photo img[alt*="Ziaul"],
.trusted-leaders-section .photo img[src*="Ziaul"] {
    object-fit: contain;
    object-position: center;
}

.trusted-leaders-section .photo-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 100;
    pointer-events: none;
    margin-top: 8px;
    font-size: 11px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 200px;
}

.trusted-leaders-section .photo-info::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.9);
}

.trusted-leaders-section .photo-info .name {
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
}

.trusted-leaders-section .photo-info .company {
    font-weight: 400;
    font-size: 10px;
    color: #ccc;
    display: block;
}

.trusted-leaders-section .photo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.trusted-leaders-section .photo:hover .photo-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.trusted-leaders-section .content-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

.trusted-leaders-section .badge {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.trusted-leaders-section .content-section h1 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.trusted-leaders-section .content-section .subtitle {
    font-size: 38px;
    font-weight: 800;
    color: #666;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.trusted-leaders-section .content-section .description {
    font-size: 15px;
    color: #333;
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
    font-weight: 400;
}

.trusted-leaders-section .cta-button {
    display: inline-block;
    background-color: rgba(0, 169, 164, 0.9);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.trusted-leaders-section .cta-button:hover {
    background-color: rgba(0, 169, 164, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 169, 164, 0.3);
}

.trusted-leaders-section .cta-button::after {
    content: ' →';
    margin-left: 4px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1200px) {
    .trusted-leaders-section .photo { width: 100px; height: 100px; }
    .trusted-leaders-section .photos-wrapper { height: 300px; }
    .trusted-leaders-section .content-section h1,
    .trusted-leaders-section .content-section .subtitle { font-size: 34px; }
}

@media (max-width: 992px) {
    .trusted-leaders-section .photo { width: 85px; height: 85px; border-radius: 18px; }
    .trusted-leaders-section .photo-inner { border-radius: 18px; }
    .trusted-leaders-section .photos-wrapper { height: 280px; margin-bottom: 15px; }
    .trusted-leaders-section .photo-row { gap: 12px; }
    .trusted-leaders-section .content-section h1,
    .trusted-leaders-section .content-section .subtitle { font-size: 30px; }
    .trusted-leaders-section .content-section .description { font-size: 14px; }
}

@media (max-width: 768px) {
    .trusted-leaders-section .photo { width: 70px; height: 70px; border-radius: 16px; }
    .trusted-leaders-section .photo-inner { border-radius: 16px; }
    .trusted-leaders-section .photos-wrapper { height: 250px; margin-bottom: 15px; }
    .trusted-leaders-section .photo-row { gap: 10px; margin: 6px 0; }
    .trusted-leaders-section .photo-info { font-size: 11px; padding: 8px 12px; }
    .trusted-leaders-section .photo-info .name { font-size: 12px; }
    .trusted-leaders-section .photo-info .company { font-size: 10px; }
    .trusted-leaders-section .content-section h1,
    .trusted-leaders-section .content-section .subtitle { font-size: 28px; }
    .trusted-leaders-section .content-section .description { font-size: 14px; max-width: 100%; }
    .trusted-leaders-section .badge { font-size: 11px; padding: 5px 14px; }
    .trusted-leaders-section .cta-button { font-size: 14px; padding: 10px 24px; }
}

@media (max-width: 576px) {
    .trusted-leaders-section .photos-wrapper { display: none; }
    .trusted-leaders-section .content-section h1,
    .trusted-leaders-section .content-section .subtitle { font-size: 26px; }
}

/* --------------------------Meet the Founders Section----------------------------- */
.founders-section {
    position: relative;
    padding: 28px 0 !important;
}

.founder-tube-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-tube-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

.founder-tube-card:hover .founder-image-modern {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.founder-image-modern {
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .founder-tube-card {
        min-height: 290px !important;
        max-width: 160px !important;
    }
    .founders-section .founder-story {
        padding: 15px !important;
        margin: 0 5px !important;
    }
}

@media (max-width: 768px) {
    .founder-tube-card {
        min-height: 260px !important;
        max-width: 150px !important;
        padding: 12px 10px !important;
        border-radius: 80px !important;
    }
    .founder-tube-card .founder-image-modern {
        min-height: 150px !important;
        border-radius: 70px !important;
    }
    .founders-section .founder-story {
        padding: 12px !important;
        margin: 10px 0 !important;
    }
    .founders-section h2 {
        font-size: 1rem !important;
    }
    .founder-name {
        font-size: 10px !important;
    }
    .founder-role {
        font-size: 9px !important;
    }
}

@media (max-width: 576px) {
    .founder-tube-card {
        min-height: 240px !important;
        max-width: 140px !important;
        padding: 10px 9px !important;
        border-radius: 70px !important;
    }
    .founder-tube-card .founder-image-modern {
        min-height: 140px !important;
        border-radius: 60px !important;
    }
    .founders-section .row.align-items-start {
        flex-direction: column;
    }
    .founder-story {
        order: -1;
        margin-bottom: 10px !important;
    }
}

/* ==================== Shustho AI Coming Soon Page Styles ==================== */
.shustho-ai-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0f;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    color: #ffffff;
}

/* Modern gradient overlay */
.shustho-ai-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 169, 164, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Animated grid background */
.shustho-ai-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: shustho-ai-gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes shustho-ai-gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.shustho-ai-container {
    position: relative;
    z-index: 10;
    padding: 60px 40px;
    max-width: 1200px;
    width: 100%;
}

.shustho-ai-brand-section {
    text-align: center;
    margin-bottom: 80px;
}

.shustho-ai-brand-name {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00a9a4 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shustho-ai-gradientFlow 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes shustho-ai-gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.shustho-ai-coming-soon-badge {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(0, 169, 164, 0.15);
    border: 1px solid rgba(0, 169, 164, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00a9a4;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: shustho-ai-fadeInUp 0.8s ease-out;
}

.shustho-ai-main-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 40px 0;
    letter-spacing: -3px;
    line-height: 1.1;
    animation: shustho-ai-fadeInUp 1s ease-out 0.2s both;
    text-align: center;
}

.shustho-ai-moving-text-wrapper {
    margin: 60px 0;
    overflow: hidden;
    position: relative;
    height: 120px;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.shustho-ai-moving-text-track {
    display: flex;
    gap: 60px;
    width: fit-content;
}

.shustho-ai-moving-text-item {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
}

.shustho-ai-moving-text-track-1 {
    animation: shustho-ai-scrollLeft 25s linear infinite;
}

.shustho-ai-moving-text-track-2 {
    animation: shustho-ai-scrollRight 30s linear infinite;
    margin-top: 20px;
}

.shustho-ai-moving-text-track-3 {
    animation: shustho-ai-scrollLeft 35s linear infinite;
    margin-top: 20px;
}

@keyframes shustho-ai-scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes shustho-ai-scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.shustho-ai-emoji {
    font-size: 2rem;
    filter: grayscale(0.3);
}

.shustho-ai-description-section {
    text-align: center;
    max-width: 800px;
    margin: 80px auto;
    animation: shustho-ai-fadeIn 1.2s ease-out 0.4s both;
}

.shustho-ai-description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 60px;
}

.shustho-ai-highlight {
    color: #00a9a4;
    font-weight: 600;
    background: rgba(0, 169, 164, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.shustho-ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 80px;
    animation: shustho-ai-fadeInUp 1.4s ease-out 0.6s both;
}

.shustho-ai-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.shustho-ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 169, 164, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.shustho-ai-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 169, 164, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shustho-ai-feature-card:hover::before {
    opacity: 1;
}

.shustho-ai-feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    filter: grayscale(0.2);
}

.shustho-ai-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.shustho-ai-feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

@keyframes shustho-ai-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shustho-ai-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .shustho-ai-container {
        padding: 40px 24px;
    }

    .shustho-ai-brand-name {
        font-size: 2.5rem;
    }

    .shustho-ai-main-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .shustho-ai-coming-soon-badge {
        font-size: 0.75rem;
        padding: 10px 24px;
    }

    .shustho-ai-moving-text-item {
        font-size: 1.3rem;
    }

    .shustho-ai-description {
        font-size: 1.1rem;
    }

    .shustho-ai-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shustho-ai-feature-card {
        padding: 32px 24px;
    }

    .shustho-ai-moving-text-wrapper {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .shustho-ai-main-title {
        font-size: 2.5rem;
    }

    .shustho-ai-brand-name {
        font-size: 2rem;
    }

    .shustho-ai-moving-text-item {
        font-size: 1.1rem;
        gap: 12px;
    }
}

/* ============================================= */
/* ADDITIONAL MOBILE FIXES FOR FOUNDERS & MORE  */
/* ============================================= */
@media only screen and (max-width: 767px) {
    /* Meet the Founders Mobile */
    .founders-section {
        padding: 24px 0 !important;
    }
    
    .founders-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }
    
    .founders-section .col-lg-3 {
        margin-bottom: 30px;
    }
    
    /* Footer Mobile */
    .footer-section {
        padding: 50px 0 30px !important;
    }
    
    .footer-section .col-lg-4 {
        margin-bottom: 30px;
        text-align: center !important;
    }
}

@media only screen and (max-width: 480px) {
    /* Founders Section - Extra Small */
    .founders-section h2 {
        font-size: 1.3rem !important;
    }
    
    .founders-section .text-center div[style*="width: 150px"] {
        width: 120px !important;
        height: 120px !important;
    }
    
    .founders-section .text-center div[style*="width: 150px"] img {
        width: 100% !important;
        height: 100% !important;
    }
    
    .founders-section h3 {
        font-size: 16px !important;
    }
    
    .founders-section p {
        font-size: 12px !important;
    }
    
    /* Services Section - Extra Small Mobile - Enhanced Fixes */
    .services-section {
        padding: 25px 0 !important;
    }
    
    .service-items .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .service-items .col-md-6 {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 12px;
    }
    
    /* Additional text wrapping for services */
    .services-item * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* About Section Extra Small */
    .about-section {
        padding: 30px 0;
    }
    
    /* Section Titles Extra Small */
    .section-title h2 {
        font-size: 24px !important;
        padding: 0 15px;
    }
    
    /* Corporate Testimonial Extra Small */
    .corporate-testimonial-title {
        font-size: 32px !important;
    }
}

/* ============================================================
   90 Days Transformation Program - New Pricing Design
   ============================================================ */

.tp-pricing-container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.tp-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.tp-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
}

.tp-section-subtitle {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.tp-pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 20px;
    justify-items: center;
}

.tp-pricing-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #00A9A4;
    padding: 1.3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    width: 100%;
}

.tp-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tp-pricing-card.popular {
    border: 3px solid #28a745;
}

.tp-pricing-card.popular:hover {
    transform: translateY(-10px);
}

.tp-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #333333;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    min-width: 180px;
    justify-content: center;
}

.tp-popular-badge i {
    color: #ffd700;
}

.tp-plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.15rem;
}

.tp-plan-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    flex-shrink: 0;
}

.tp-plan-number.basic {
    background: #ffc107;
}

.tp-plan-number.standard {
    background: #28a745;
}

.tp-plan-number.professional {
    background: #007bff;
}

.tp-plan-number.nrb {
    background: #dc3545;
}

.tp-plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.2;
}

.tp-plan-subtitle {
    font-size: 0.7rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
    margin-bottom: 1.15rem;
    line-height: 1.2;
}

.tp-price-section {
    margin-bottom: 1.15rem;
    padding: 1.3rem;
    background: #f8f9fa;
    border-radius: 1rem;
    text-align: center;
}

.tp-price-amount {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.tp-price-currency {
    font-size: 2.2rem;
    font-weight: 600;
}

.tp-price-period {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 0;
    font-weight: 500;
    line-height: 1.2;
}

.tp-save-badge {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 3px;
    line-height: 1.2;
}

.tp-features-list {
    list-style: none;
    margin-bottom: 1.15rem;
    flex-grow: 1;
    padding: 0;
}

.tp-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    color: #2c3e50;
    line-height: 1.65;
}

.tp-checkmark-icon {
    flex-shrink: 0;
    margin-top: 0.15em;
    display: inline-flex;
    align-items: center;
}

.tp-checkmark-icon svg {
    width: 1.3em;
    height: 1.3em;
}

.tp-choose-plan-btn {
    width: 160px;
    height: 42px;
    line-height: 41px;
    padding: 0;
    border: none;
    border-radius: 21px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: auto;
}

.tp-btn-basic {
    background: #ffc107;
    color: #111111;
}

.tp-btn-basic:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.tp-btn-standard {
    background: #28a745;
    color: #ffffff;
}

.tp-btn-standard:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.tp-btn-professional {
    background: #007bff;
    color: #ffffff;
}

.tp-btn-professional:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.tp-btn-nrb {
    background: #dc3545;
    color: #ffffff;
}

.tp-btn-nrb:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tp-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .tp-pricing-card {
        padding: 1.5rem;
        min-height: 480px;
    }

    .tp-pricing-card.popular {
        transform: scale(1);
    }

    .tp-pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .tp-pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .tp-section-title {
        font-size: 2.2rem;
    }

    .tp-pricing-card.popular {
        transform: scale(1);
    }

    .tp-pricing-card {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .tp-pricing-container {
        padding: 0 15px;
    }

    .tp-section-title {
        font-size: 1.8rem;
    }

    .tp-pricing-card {
        padding: 1.5rem;
    }

    .tp-price-amount {
        font-size: 2.5rem;
    }
}

/* ============================================= */
/* COMPREHENSIVE MOBILE RESPONSIVE STYLES        */
/* Optimized for Android and iPhone              */
/* ============================================= */

/* Base Mobile Styles (up to 767px) */
@media only screen and (max-width: 767px) {
    /* Container adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: auto !important;
        min-height: 400px;
        padding-top: 120px !important;
        padding-bottom: 40px;
        background-attachment: scroll !important;
    }
    
    .hero-text {
        padding: 20px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 12px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .hero-text span {
        font-size: 12px !important;
    }
    
    .hero-text p {
        font-size: 14px !important;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    /* Banner Section (Get a Free Session) Mobile */
    .banner-section.spad-short {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
        max-height: none !important;
        min-height: auto !important;
    }
    
    .banner-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .banner-section .row {
        flex-direction: column-reverse;
    }
    
    .banner-section .col-lg-6 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .banner-section .col-lg-5 {
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    
    .banner-text {
        padding-top: 20px !important;
        padding-bottom: 15px !important;
        text-align: center;
    }
    
    .banner-text h2 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
    }
    
    .banner-text p {
        font-size: 15px !important;
        line-height: 1.5;
        margin-bottom: 18px !important;
    }
    
    .banner-section .col-lg-5 img {
        max-height: 250px !important;
        width: auto;
        transform: scale(1) !important;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 30px 0 !important;
    }
    
    .services-section .section-title h2 {
        font-size: 28px !important;
        margin-bottom: 20px;
    }
    
    .service-items {
        margin-top: 15px;
    }
    
    .services-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 70px !important;
        padding-bottom: 20px !important;
        height: auto !important;
        min-height: auto !important;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .services-item img {
        left: 20px !important;
        top: 20px !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .services-item h4 {
        font-size: 18px !important;
        margin-top: 12px !important;
        margin-bottom: 10px !important;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .services-item b,
    .services-item B {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        line-height: 1.4;
    }
    
    .services-item p {
        font-size: 14px !important;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    /* 90 Days Transformation Program Mobile */
    .tp-pricing-container {
        padding: 0 15px !important;
    }
    
    .tp-section-header {
        margin-bottom: 30px;
    }
    
    .tp-section-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
        white-space: normal !important;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .tp-section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .tp-pricing-cards {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .tp-pricing-card {
        min-height: auto !important;
        padding: 20px !important;
        width: 100% !important;
        max-width: 100%;
    }
    
    .tp-plan-title {
        font-size: 1.2rem !important;
    }
    
    .tp-price-amount {
        font-size: 2rem !important;
    }
    
    .tp-price-currency {
        font-size: 1.8rem !important;
    }
    
    .tp-features-list li {
        font-size: 0.85rem !important;
        line-height: 1.6;
    }
    
    .tp-choose-plan-btn {
        width: 100% !important;
        max-width: 280px;
    }
    
    /* Founders Section Mobile */
    .founders-section {
        padding: 30px 0 !important;
    }
    
    .founders-section h2 {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
        text-align: center;
    }
    
    .founders-section .col-lg-3 {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .founders-section .text-center div[style*="width: 150px"] {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto 15px;
    }
    
    .founders-section .text-center div[style*="width: 150px"] img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .founders-section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 5px;
    }
    
    .founders-section p {
        font-size: 0.9rem !important;
        margin-bottom: 10px;
    }
    
    /* Section Titles Mobile */
    .section-title h2 {
        font-size: 26px !important;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    /* Buttons Mobile */
    .primary-btn {
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        font-size: 15px;
        height: 44px;
        line-height: 44px;
        padding: 0;
    }
    
    /* Navigation Mobile */
    .header-section {
        padding: 10px 0;
    }
    
    .logo a img {
        max-width: 140px;
        height: auto;
    }
    
    /* Footer Mobile */
    .footer-section {
        padding-top: 40px;
        padding-bottom: 20px;
        text-align: center;
    }
    
    .footer-section .row > div {
        margin-bottom: 30px;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-section a {
        font-size: 14px;
    }
    
    .copyright-text {
        text-align: center !important;
        padding-top: 20px;
    }
    
    .copyright-text p {
        margin-bottom: 15px;
    }
    
    /* Classes Section Mobile */
    .classes-section {
        padding: 30px 0;
    }
    
    .single-class-item {
        margin-bottom: 25px;
    }
    
    /* Blog Section Mobile */
    .latest-blog-section {
        padding: 30px 0;
    }
    
    .single-blog-item {
        margin-bottom: 25px;
    }
    
    /* Corporate Wellness Section Mobile */
    .get-training-section {
        padding: 40px 0 !important;
        background-attachment: scroll !important;
    }
    
    .get-training-text h1 {
        font-size: 28px !important;
    }
    
    .get-training-text p {
        font-size: 15px !important;
    }
    
    /* Trusted by Leaders Section Mobile */
    .trusted-by-leaders-section {
        padding: 30px 0;
    }
    
    /* Partners Section Mobile */
    .partners-section {
        padding: 30px 0;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 30px 0;
    }
    
    .about-text {
        padding-left: 0 !important;
        padding-top: 20px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    /* Membership Section Mobile */
    .membership-section {
        padding: 30px 0;
    }
    
    .membership-item {
        margin-bottom: 25px;
    }
    
    /* Footer Banner Mobile */
    .footer-banner-item {
        height: auto;
        min-height: 280px;
        padding: 30px 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-banner-item h2 {
        font-size: 28px;
    }
    
    .footer-banner-item p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Shustho Shop Section Mobile */
    .shustho-shop-section {
        padding: 40px 0;
    }
    
    .shustho-shop-section .section-title h2 {
        font-size: 24px;
    }
    
    /* Popup Mobile */
    .popup-content {
        max-width: 95vw !important;
        margin: 20px;
    }
    
    /* Ensure white background for text popup on mobile */
    .popup-content.popup-text-content {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }
}

/* Small Mobile Devices (up to 480px) */
@media only screen and (max-width: 480px) {
    /* Hero Section Small Mobile */
    .hero-section {
        min-height: 350px;
        padding-top: 100px !important;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 26px !important;
    }
    
    .hero-text p {
        font-size: 13px !important;
    }
    
    /* Banner Section Small Mobile */
    .banner-text h2 {
        font-size: 24px !important;
    }
    
    .banner-text p {
        font-size: 14px !important;
    }
    
    .banner-section .col-lg-5 img {
        max-height: 200px !important;
    }
    
    /* Section Titles Small Mobile */
    .section-title h2 {
        font-size: 22px !important;
    }
    
    /* Services Small Mobile */
    .services-item {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 60px !important;
    }
    
    .services-item h4 {
        font-size: 16px !important;
    }
    
    .services-item p {
        font-size: 13px !important;
    }
    
    /* Transformation Program Small Mobile */
    .tp-section-title {
        font-size: 1.4rem !important;
    }
    
    .tp-pricing-card {
        padding: 15px !important;
    }
    
    .tp-plan-title {
        font-size: 1.1rem !important;
    }
    
    .tp-price-amount {
        font-size: 1.8rem !important;
    }
    
    /* Founders Small Mobile */
    .founders-section h2 {
        font-size: 1.5rem !important;
    }
    
    .founders-section .text-center div[style*="width: 150px"] {
        width: 100px !important;
        height: 100px !important;
    }
    
    .founders-section .text-center div[style*="width: 150px"] img {
        width: 100px !important;
        height: 100px !important;
    }
    
    /* Buttons Small Mobile */
    .primary-btn {
        font-size: 14px;
        height: 42px;
        line-height: 42px;
    }
    
    /* Logo Small Mobile */
    .logo a img {
        max-width: 120px;
    }
    
    /* Footer Banner Small Mobile */
    .footer-banner-item {
        min-height: 240px;
        padding: 25px 15px;
    }
    
    .footer-banner-item h2 {
        font-size: 24px;
    }
}

/* Extra Small Mobile (up to 360px) - for smaller Android devices */
@media only screen and (max-width: 360px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 22px !important;
    }
    
    .banner-text h2 {
        font-size: 20px !important;
    }
    
    .section-title h2 {
        font-size: 20px !important;
    }
    
    .tp-section-title {
        font-size: 1.2rem !important;
    }
    
    .services-item h4 {
        font-size: 15px !important;
    }
    
    .primary-btn {
        font-size: 13px;
        max-width: 100%;
    }
}

/* Landscape Mobile Orientation */
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: 300px;
        padding-top: 80px !important;
    }
    
    .banner-section.spad-short {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    
    .banner-section .col-lg-5 img {
        max-height: 180px !important;
    }
}

/* Touch Target Optimization for Mobile */
@media only screen and (max-width: 767px) {
    a, button, input[type="submit"], input[type="button"] {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .primary-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
}

/* Prevent horizontal scroll on mobile */
@media only screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    img {
        height: auto;
        max-width: 100%;
    }
    
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*------------------------------------------------------------------
Free Session Enrollment Form Styles
-------------------------------------------------------------------*/

/* Free Session Form Base Styles */
.free-session-banner {
    width: 100%;
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #dadce0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.free-session-banner-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.free-session-banner-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.free-session-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 24px 80px;
    font-family: 'Roboto', 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #202124;
    line-height: 1.5;
}

.free-session-container {
    background: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 4px rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
}

.free-session-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #dadce0;
}

.free-session-header h1 {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 8px;
    line-height: 1.25;
}

.free-session-header p {
    font-size: 14px;
    color: #5f6368;
    margin-top: 8px;
    line-height: 1.5;
}

.free-session-content {
    padding: 24px 32px;
}

.free-session-section {
    margin-bottom: 32px;
}

.free-session-section:last-of-type {
    margin-bottom: 0;
}

.free-session-section-title {
    font-family: 'Google Sans', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8eaed;
}

.free-session-group {
    margin-bottom: 24px;
}

.free-session-group:last-child {
    margin-bottom: 0;
}

.free-session-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
    line-height: 1.5;
}

.free-session-group label .free-session-required {
    color: #d93025;
    margin-left: 4px;
}

.free-session-group input[type="text"],
.free-session-group input[type="email"],
.free-session-group input[type="tel"],
.free-session-group input[type="number"],
.free-session-group select,
.free-session-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #202124;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.free-session-group input:hover,
.free-session-group select:hover,
.free-session-group textarea:hover {
    border-color: #8e8ea0;
}

.free-session-group input:focus,
.free-session-group select:focus,
.free-session-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.free-session-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.free-session-radio-group,
.free-session-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.free-session-radio-option,
.free-session-checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    background: #fff;
}

.free-session-radio-option:hover,
.free-session-checkbox-option:hover {
    background: #f8f9fa;
    border-color: #8e8ea0;
}

.free-session-radio-option input[type="radio"],
.free-session-checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #1a73e8;
}

.free-session-radio-option label,
.free-session-checkbox-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    flex: 1;
    font-size: 14px;
    color: #202124;
    line-height: 1.5;
}

.free-session-radio-option:has(input[type="radio"]:checked),
.free-session-checkbox-option:has(input[type="checkbox"]:checked) {
    background: #e8f0fe;
    border-color: #1a73e8;
}

.free-session-stress-scale {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 16px;
    background: #f8f9fa;
    border: 1px solid #dadce0;
    border-radius: 4px;
}

.free-session-stress-scale label {
    font-size: 12px;
    font-weight: 400;
    color: #5f6368;
    min-width: 60px;
    margin: 0;
}

.free-session-stress-scale input[type="range"] {
    flex: 1;
    height: 4px;
    accent-color: #1a73e8;
    cursor: pointer;
}

.free-session-stress-value {
    font-weight: 500;
    color: #1a73e8;
    min-width: 32px;
    text-align: center;
    font-size: 16px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #dadce0;
}

.free-session-bmi-info {
    font-size: 12px;
    color: #5f6368;
    margin-top: 8px;
    line-height: 1.5;
}

.free-session-bmi-info a {
    color: #1a73e8;
    text-decoration: none;
}

.free-session-bmi-info a:hover {
    text-decoration: underline;
}

.free-session-submit-section {
    padding: 24px 32px;
    border-top: 1px solid #dadce0;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.free-session-submit-btn {
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Google Sans', 'Roboto', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.free-session-submit-btn:hover {
    background: #1557b0;
    box-shadow: 0 1px 3px rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
}

.free-session-submit-btn:active {
    background: #1557b0;
    box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.free-session-submit-btn:disabled {
    background: #f1f3f4;
    color: #80868b;
    cursor: not-allowed;
    box-shadow: none;
}

.free-session-status-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.free-session-status-message.free-session-success {
    background: #e6f4ea;
    color: #137333;
    border: 1px solid #34a853;
    display: block;
}

.free-session-status-message.free-session-error {
    background: #fce8e6;
    color: #c5221f;
    border: 1px solid #ea4335;
    display: block;
}

/* Free Session Form Responsive Styles */
@media (max-width: 768px) {
    .free-session-wrapper {
        padding: 16px 16px 60px;
    }

    .free-session-banner-container {
        padding: 0 16px;
    }

    .free-session-header {
        padding: 24px 24px 16px;
    }

    .free-session-header h1 {
        font-size: 24px;
    }

    .free-session-content {
        padding: 16px 24px;
    }

    .free-session-section-title {
        font-size: 14px;
    }

    .free-session-stress-scale {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .free-session-stress-scale label {
        min-width: auto;
    }

    .free-session-submit-section {
        padding: 16px 24px;
    }

    .free-session-submit-btn {
        width: 100%;
    }
}

/*------------------------------------------------------------------
Shustho Health Chatbot Widget Styles
-------------------------------------------------------------------*/

/* Chatbot Container */
#shustho-bot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

/* Chatbot Toggle Button */
.shustho-bot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00A9A4 0%, #007066 100%);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 169, 164, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.shustho-bot-toggle i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.shustho-bot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 169, 164, 0.5);
}

.shustho-bot-toggle.shustho-bot-hidden {
    display: none;
}

/* Badge removed - no text on toggle button */

/* Chatbot Window */
.shustho-bot-window {
    width: 380px;
    height: 600px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 80px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.shustho-bot-window.shustho-bot-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chatbot Header */
.shustho-bot-header {
    background: linear-gradient(135deg, #00A9A4 0%, #007066 100%);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shustho-bot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.shustho-bot-avatar {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    padding: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shustho-bot-logo-container {
    background: #fff;
}

.shustho-bot-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(45%) sepia(93%) saturate(1000%) hue-rotate(140deg) brightness(0.9) contrast(1);
}

.shustho-bot-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.shustho-bot-status {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
    color: #fff;
}

.shustho-bot-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shustho-bot-minimize,
.shustho-bot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-size: 14px;
}

.shustho-bot-minimize:hover,
.shustho-bot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chatbot Messages */
.shustho-bot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shustho-bot-messages::-webkit-scrollbar {
    width: 6px;
}

.shustho-bot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.shustho-bot-messages::-webkit-scrollbar-thumb {
    background: #00A9A4;
    border-radius: 3px;
}

.shustho-bot-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shustho-bot-message-bot {
    justify-content: flex-start;
}

.shustho-bot-message-user {
    justify-content: flex-end;
}

.shustho-bot-avatar-small {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00A9A4 0%, #007066 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 3px;
}

.shustho-bot-logo-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
}

.shustho-bot-message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.shustho-bot-message-bot .shustho-bot-message-content {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shustho-bot-message-user .shustho-bot-message-content {
    background: linear-gradient(135deg, #00A9A4 0%, #007066 100%);
    color: #fff;
}

.shustho-bot-message-content p {
    margin: 0 0 8px 0;
    color: inherit;
}

.shustho-bot-message-content p:last-child {
    margin-bottom: 0;
}

.shustho-bot-message-content ul {
    margin: 8px 0;
    padding-left: 20px;
    color: inherit;
}

.shustho-bot-message-content li {
    margin-bottom: 4px;
    color: inherit;
}

.shustho-bot-message-content strong {
    font-weight: 600;
    color: inherit;
}

.shustho-bot-message-content em {
    font-style: italic;
    color: inherit;
}

/* Typing Indicator */
.shustho-bot-typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.shustho-bot-typing-indicator span {
    width: 8px;
    height: 8px;
    background: #00A9A4;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.shustho-bot-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.shustho-bot-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Chatbot Input */
.shustho-bot-input-container {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.shustho-bot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.shustho-bot-input:focus {
    border-color: #00A9A4;
}

.shustho-bot-input:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.shustho-bot-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00A9A4 0%, #007066 100%);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.shustho-bot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 169, 164, 0.4);
}

.shustho-bot-send:active {
    transform: scale(0.95);
}

.shustho-bot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Chatbot Responsive Styles */
@media (max-width: 768px) {
    #shustho-bot-container {
        bottom: 15px;
        right: 15px;
    }

    .shustho-bot-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        max-height: 600px;
        bottom: 80px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .shustho-bot-toggle {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .shustho-bot-window {
        width: 100vw;
        height: 100vh;
        max-height: none;
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
    }

    .shustho-bot-message-content {
        max-width: 85%;
    }
}