html {

	scroll-behavior: smooth;

}

/* ===========================
   NAVBAR
=========================== */
section {
	scroll-margin-top: 80px;
}

.navbar {

	position: fixed;
	top: 0;
	left: 0;

	width: 100%;

	background: #0B2856;

	box-shadow: 0 3px 12px rgba(0, 0, 0, .15);

	z-index: 9999;

}

.nav-container {
	max-width: 1280px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
}

/* Logo */

.logo img {
	height: 72px;
	width: auto;
	display: block;
}

/* Menu */

.nav-menu {

	display: flex;

	align-items: center;

	gap: 28px;

	list-style: none;

}

.nav-menu a {

	text-decoration: none;

	color: #fff;

	font-size: 18px;

	font-weight: 600;

	transition: .3s;

}

.nav-menu a:hover {

	color: #0DB5A5;

}

/* Join Button */

.join-btn {

	background: #0DB5A5;

	padding: 12px 28px;

	border-radius: 30px;

	color: #fff !important;

	font-weight: 700;

	transition: .3s;

}

.join-btn:hover {

	background: #fff;

	color: #144787 !important;

}

/* Hamburger */

.hamburger {

	display: none;

	font-size: 32px;

	color: #fff;

	cursor: pointer;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:900px) {

	.nav-container {

		padding: 10px 18px;

	}

	.logo img {

		height: 42px;

	}

	.hamburger {

		display: block;

	}

	.nav-menu {

		position: absolute;

		top: 64px;

		left: 0;

		width: 100%;

		background: #0B2856;

		display: none;

		flex-direction: column;

		padding: 20px 0;

		gap: 18px;

		box-shadow: 0 8px 15px rgba(0, 0, 0, .2);

	}

	.nav-menu.active {

		display: flex;

	}

	.join-btn {

		padding: 10px 22px;

	}

}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #F5F9FF;
	color: #222;
}

body {

	font-family: 'Poppins', sans-serif;

}

header {

	background: url('hero-clean.png') center center/cover no-repeat;

	min-height: 100vh;

	padding-top: 72px;

	display: flex;

	align-items: center;

	position: relative;

	overflow: hidden;

}

header::before {

	content: "";

	position: absolute;

	inset: 0;

	background: linear-gradient(90deg,
			rgba(0, 0, 0, .45),
			rgba(0, 0, 0, .15));

}

.hero-content {

	position: relative;

	z-index: 2;

	max-width: 680px;

	padding-left: 7%;

	color: white;

}

.hero-logo {

	width: 220px;

	margin-bottom: 20px;

	display: block;

	background: none;

	padding: 0;

	border-radius: 0;

}

header h1 {
	font-size: 42px;
	margin-bottom: 10px;
}

header p {
	font-size: 20px;
	margin-bottom: 20px;
}

.btn {
	display: inline-block;
	padding: 16px 34px;
	background: white;
	color: #144787;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	margin: 10px;
}

.plan-group-title {
	text-align: center;
	color: #144787;
	font-size: 28px;
	font-weight: 700;
	margin: 20px 0 25px;
}

.section {
	padding: 45px 20px;
	max-width: 1200px;
	margin: auto;
}

.section p {

	font-size: 18px;

	line-height: 1.8;

	color: #333;

}

.section h2 {
	text-align: center;
	font-size: 36px;
	font-family: 'Salsa', cursive;
	color: #144787;
	margin-bottom: 25px;
}

.cards {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 30px;

	margin-top: 40px;

}

.card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .1);

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.card p {
	margin-bottom: 10px;
	line-height: 1.5;
}

.card h3 {
	color: #144787;
	margin-bottom: 10px;
}

.card .btn {
	margin-top: auto;
	text-align: center;
	width: 100%;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
}

.gallery img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 10px;
}

.poster-frame {

	width: 100%;

	height: 720px;
	/* choose a height that suits both */

	overflow: hidden;

	border-radius: 18px;

	box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

}

.member-poster {

	width: 100%;

	height: 100%;

	object-fit: cover;

	display: block;

}

.contact {
	background: #144787;
	color: white;
	padding: 50px 20px;
	text-align: center;
}

.contact a {
	color: #00ffff;
	text-decoration: none;
}

footer {
	background: #001f4d;
	color: white;
	text-align: center;
	padding: 20px;
}

.whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25D366;
	color: white;
	padding: 15px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
	z-index: 999;
}

.partner {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	color: #144787;
}

iframe {
	width: 100%;
	height: 450px;
	border: none;
	border-radius: 10px;
}

/*==============================
FLOATING BUTTONS
==============================*/

.offer-float {

	position: fixed;

	left: 18px;

	bottom: 18px;

	z-index: 9999;

	text-decoration: none;

}

.whatsapp-float {

	position: fixed;

	right: 18px;

	bottom: 18px;

	z-index: 9999;

	text-decoration: none;

}

/*==============================
COMMON STYLE
==============================*/

.offer-box,
.whatsapp-float {

	display: flex;

	align-items: center;

	gap: 12px;

	height: 64px;

	padding: 0 20px;

	border-radius: 40px;

	box-shadow: 0 8px 25px rgba(0, 0, 0, .25);

	transition: .35s;

	animation: pulse 1.2s infinite;

}

/*==============================
OFFER
==============================*/

.offer-box {

	background: white;

	border: 2px solid #0DB5A5;

}

.offer-icon {

	width: 42px;

	height: 42px;

	border-radius: 50%;

	background: #144787;

	display: flex;

	align-items: center;

	justify-content: center;

	color: white;

	font-size: 18px;

	flex-shrink: 0;

}

.offer-title {

	font-size: 18px;

	font-weight: 800;

	color: #144787;

	line-height: 1;

}

.offer-sub {

	font-size: 14px;

	font-weight: 700;

	color: #0DB5A5;

	line-height: 1.2;

}

.offer-member {

	font-size: 12px;

	color: #666;

}

/*==============================
WHATSAPP
==============================*/

.whatsapp-float {

	background: #25D366;

	color: white;

	font-size: 18px;

	font-weight: 700;

}

.whatsapp-float i {

	font-size: 28px;

}

.whatsapp-float span {

	white-space: nowrap;

}

/*==============================
HOVER
==============================*/

.offer-box:hover,
.whatsapp-float:hover {

	transform: translateY(-3px) scale(1.03);

}

/*==============================
SCROLL EFFECT
==============================*/

.floating-dim {

	opacity: .45;

	transform: scale(.92);

}

/*==============================
ANIMATION
==============================*/

@keyframes pulse {

	0% {

		transform: scale(1);

	}

	50% {

		transform: scale(1.05);

	}

	100% {

		transform: scale(1);

	}

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px) {

	.offer-box,
	.whatsapp-float {

		height: 58px;

		padding: 0 15px;

	}

	.offer-title {

		font-size: 16px;

	}

	.offer-sub {

		font-size: 12px;

	}

	.offer-member {

		font-size: 10px;

	}

	.offer-icon {

		width: 36px;

		height: 36px;

		font-size: 16px;

	}

	.whatsapp-float {

		font-size: 16px;

	}

	.whatsapp-float i {

		font-size: 24px;

	}

}

/* ===========================
   Social Media Icons
=========================== */

.social-icons {

	display: flex;

	justify-content: center;

	gap: 18px;

	margin-top: 25px;

	flex-wrap: wrap;

}

.social-icons a {

	width: 55px;
	height: 55px;

	display: flex;

	align-items: center;
	justify-content: center;

	background: white;

	border-radius: 50%;

	font-size: 26px;

	text-decoration: none;

	box-shadow: 0 5px 15px rgba(0, 0, 0, .15);

	transition: .3s;

}

.social-icons a:hover {

	transform: translateY(-5px) scale(1.08);

	box-shadow: 0 10px 25px rgba(0, 0, 0, .25);

	background: #0DB5A5;

	color: white !important;

}

/* Official Brand Colors */

.social-icons .instagram {
	color: #E4405F;
}

.social-icons .facebook {
	color: #1877F2;
}

.social-icons .whatsapp {
	color: #25D366;
}

.social-icons .email {
	color: #EA4335;
}

.social-icons .linkedin {
	color: #0A66C2;
}

.social-icons .playstore {
	color: #34A853;
}

.social-icons .appstore {
	color: #000000;
}

.plan-price {

	font-size: 30px;

	font-weight: 700;

	color: #144787;

	margin: 12px 0;

}

/*=========================
COACH SECTION
=========================*/

.coach-section-title {

	font-size: 30px;

	font-weight: 700;

	color: #144787;

	margin-bottom: 30px;

	text-align: center;

}

.coach-grid {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 30px;

	margin-top: 30px;

}

.coach-card {

	background: #fff;

	border-radius: 18px;

	overflow: hidden;

	box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

	transition: .35s;

}

.coach-card:hover {

	transform: translateY(-8px);

	box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

}

.coach-card img {

	width: 100%;

	height: 470px;

	object-fit: cover;

	display: block;

}

.coach-content {

	padding: 22px;

}

.coach-content h3 {

	color: #144787;

	font-size: 24px;

	margin-bottom: 8px;

}

.coach-exp {

	font-weight: 700;

	color: #0DB5A5;

	margin-bottom: 8px;

}

.coach-content p {

	margin-bottom: 15px;

	color: #555;

}

.coach-content ul {

	list-style: none;

	padding: 0;

	margin: 0;

}

.coach-content li {

	padding: 6px 0;

	color: #444;

	line-height: 1.5;

}

.coach-badge {

	display: inline-block;

	background: #0DB5A5;

	color: #fff;

	padding: 8px 18px;

	border-radius: 30px;

	font-size: 14px;

	font-weight: 700;

	margin: 10px 0 15px;

	box-shadow: 0 4px 12px rgba(13, 181, 165, .25);

	letter-spacing: .4px;

}

@media(max-width:992px) {

	.coach-grid {

		grid-template-columns: repeat(2, 1fr);

	}

	.coach-card img {

		height: 400px;

	}

	.cards {

		grid-template-columns: repeat(2, 1fr);

	}
}

@media(max-width:768px) {

	.coach-grid {

		grid-template-columns: 1fr;

	}

	.coach-card img {

		height: 320px;

		object-fit: cover;

	}

	.coach-section-title {

		font-size: 24px;

	}

	.cards {

		grid-template-columns: 1fr;

		gap: 20px;

	}
}

/*=====================================
Transformation Stories
======================================*/

.transformation-desc {

	max-width: 850px;

	margin: 0 auto 40px;

	text-align: center;

	font-size: 18px;

	line-height: 1.8;

	color: #555;

}


/*-------------------
Videos
--------------------*/

.transformation-video-grid {

	display: grid;

	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));

	gap: 35px;

	margin-bottom: 45px;

}

.video-card {

	background: #fff;

	border-radius: 18px;

	padding: 20px;

	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

	transition: .35s;

	text-align: center;

}

.video-card:hover {

	transform: translateY(-6px);

	box-shadow: 0 15px 30px rgba(0, 0, 0, .20);

}

.video-title {

	display: inline-block;

	background: #144787;

	color: white;

	padding: 10px 20px;

	border-radius: 30px;

	font-size: 18px;

	font-weight: 700;

	margin-bottom: 20px;

}

.video-card video {

	width: 100%;

	max-width: 320px;

	border-radius: 16px;

	background: #000;

	box-shadow: 0 8px 20px rgba(0, 0, 0, .20);

}


/*-------------------
Images
--------------------*/


.gallery img:hover {

	transform: translateY(-6px);

	box-shadow: 0 15px 30px rgba(0, 0, 0, .20);

}


/*-------------------
Bottom Text
--------------------*/

.transformation-text {

	margin-top: 35px;

	text-align: center;

	font-size: 22px;

	font-weight: 600;

	color: #144787;

}

@media(max-width:768px) {

	.transformation-video-grid {

		grid-template-columns: 1fr;

		gap: 25px;

	}

	.video-card {

		padding: 18px;

	}

	.video-title {

		font-size: 16px;

		padding: 8px 18px;

	}

	.video-card video {

		max-width: 270px;

	}

	.transformation-gallery {

		grid-template-columns: 1fr;

	}

	.transformation-text {

		font-size: 18px;

	}

}

.video-badge {

	display: inline-block;

	background: #0DB5A5;

	color: white;

	font-size: 11px;

	font-weight: 700;

	padding: 4px 10px;

	border-radius: 20px;

	margin-right: 10px;

	letter-spacing: .5px;

}

/* Mobile only */
@media (max-width:768px) {

	footer {
		padding-bottom: 140px;
	}
.desktop-title{
    display:none !important;
}

.mobile-title{
    display:block !important;
    font-size:46px;
    line-height:1.1;
}
.logo-a{
    height:34px !important;
    width:auto !important;
    margin:0 -2px !important;
    vertical-align:middle;
	display:none !important;
}
}

.story-card {

	display: grid;

	grid-template-columns: 320px 1fr;

	gap: 40px;

	align-items: center;

	background: #fff;

	padding: 30px;

	margin: 40px 0;

	border-radius: 20px;

	box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

}

.story-image img {

	width: 100%;

	border-radius: 16px;

	box-shadow: 0 8px 18px rgba(0, 0, 0, .18);

}

.story-content h3 {

	color: #144787;

	font-size: 30px;

	margin-bottom: 20px;

}

.story-content p {

	font-size: 18px;

	line-height: 1.9;

	margin-bottom: 18px;

	color: #444;

	text-align: justify;

}

.story-stats {

	display: flex;

	flex-wrap: wrap;

	gap: 18px;

	margin-top: 20px;

}

.story-stats span {

	background: #F5F9FF;

	padding: 10px 18px;

	border-radius: 30px;

	font-weight: 600;

	color: #144787;

	box-shadow: 0 3px 10px rgba(0, 0, 0, .08);

}

@media(max-width:768px) {

	.story-card {

		grid-template-columns: 1fr;

		padding: 20px;

		gap: 25px;

	}

	.story-content h3 {

		font-size: 24px;

		text-align: center;

	}

	.story-content p {

		font-size: 16px;

		text-align: left;

	}

	.story-stats {

		justify-content: center;

	}

}

/*=========================
Member Of The Month
==========================*/

.member-award-section {

	background: #fff;

}

.member-award-desc {

	max-width: 900px;

	margin: 0 auto 40px;

	text-align: center;

	font-size: 18px;

	line-height: 1.8;

	color: #555;

}

.member-award-grid {

	display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 35px;

	margin-bottom: 40px;

}

.award-card {

	background: #fff;

	padding: 20px;

	border-radius: 18px;

	box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

	text-align: center;

	transition: .3s;

}

.award-card:hover {

	transform: translateY(-6px);

	box-shadow: 0 15px 30px rgba(0, 0, 0, .18);

}

.award-card h3 {

	color: #144787;

	font-size: 28px;

	margin-bottom: 20px;

	font-weight: 700;

}

.member-poster {

	width: 100%;

	border-radius: 15px;

	box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

}

.award-details {

	max-width: 900px;

	margin: auto;

	font-size: 18px;

	line-height: 1.9;

}

.award-details p {

	margin-bottom: 12px;

}

.award-note {

	margin-top: 25px;

	font-weight: 700;

	color: #144787;

	font-size: 19px;

}

.award-footer {

	margin-top: 30px;

	text-align: center;

	font-size: 24px;

	font-weight: 700;

	color: #0DB5A5;

	line-height: 1.6;

}

@media(max-width:768px) {

	.member-award-grid {

		grid-template-columns: 1fr;

		gap: 25px;

	}

	.award-card {

		padding: 15px;

	}

	.award-card h3 {

		font-size: 22px;

	}

	.member-award-desc {

		font-size: 16px;

	}

	.award-details {

		font-size: 16px;

	}

	.award-footer {

		font-size: 20px;

	}

}
.hero-title {
    display:flex;
    align-items:center;
    gap:0;
    flex-wrap:wrap;
}

.logo-a {
   height: 57px;
	width: 69px;
	vertical-align: middle;
	margin-left: 10px;
	margin-right: -10px;
}

.desktop-title{
    display:flex;
    align-items:center;
}

.mobile-title{
    display:none;
}
