@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
	--primary: #16633f;
	--accent: #BDFA04;
	--secondary: #164935;
	--dark: #1F1D1D;
	--white: #FFFFFF;
	--bg-light: #F8F9FA;
	--bg-cream: #F5F0E8;
	--text-main: #1F1D1D;
	--text-muted: #666666;
	--brand-green: #0F3D2E;
	--brand-lime: #BDFA04;
	--brand-bg: #F5F0E8;
	--brand-text: #1F1D1D;
	--gradient-accent: linear-gradient(135deg, var(--accent), var(--primary));
	--gradient-accent2: linear-gradient(135deg, var(--primary), var(--accent));
	--transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 32px;
	--shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
	--container: 1280px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Rokkitt", serif;
	background: var(--bg-cream);
	color: var(--text-main);
	overflow-x: hidden;
	line-height: 1.6;
	width: 100vw;
}

p,
td,
th,
li,
a {
	font-size: clamp(14px, 0.8vw + 10px, 18px) !important;
	font-family: "Rokkitt", serif;
	line-height: 1.6 !important;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

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

img {
	max-width: 100%;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {

	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	letter-spacing: 1px;
	text-transform: none !important;
}

h4 {
	font-family: "Rokkitt", serif;
	font-size: 18px !important;

}

/* ── UTILITIES ── */
.section-pad {
	padding: 110px 0;
}

.section-pad-sm {
	padding: 70px 0;
}

.container-xl {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

.accent-text {
	color: var(--accent);
}

.lime-text {
	background: linear-gradient(135deg, var(--accent), #8ee800);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.title-type-2 {
	margin-bottom: 30px;
	color: var(--white) !important;
	font-weight: 500;
	font-size: clamp(36px, 6vw, 54px);
	line-height: 1.1;
	letter-spacing: 1px;
}

/* ── SCROLL REVEAL ── */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity .75s cubic-bezier(0.16, 1, 0.3, 1), transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
	opacity: 1;
	transform: none;
}

.delay-1 {
	transition-delay: .1s;
}

.delay-2 {
	transition-delay: .2s;
}

.delay-3 {
	transition-delay: .3s;
}

.delay-4 {
	transition-delay: .4s;
}

.delay-5 {
	transition-delay: .5s;
}

.delay-6 {
	transition-delay: .6s;
}

/* ── PROGRESS BAR ── */
#progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: var(--accent);
	z-index: 9999;
	width: 0%;
	transition: width .1s linear;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 5px 60px;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(15, 61, 46, 0.06);
	transition: var(--transition);

}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
	.site-nav {
		padding: 10px 25px;
	}
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
	.site-nav {
		padding: 10px 20px;
	}
}

/* Mobile Small (<576px) */
@media (max-width: 575px) {
	.site-nav {
		padding: 8px 5px;
	}
}

.site-nav.scrolled {
	padding: 5px 45px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-links-list {
	padding-left: 20px;
}

.site-nav.scrolled .info-icon {
	color: var(--primary);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.nav-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.nav-logo img {
	height: 72px;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-white {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.logo-dark {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
}

/* After scroll */
.site-nav.scrolled .logo-white {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
}

.site-nav.scrolled .logo-dark {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%);
}

.site-nav {
	transition: all 0.4s ease;
}

.site-nav.scrolled {
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.nav-links-list {
	display: flex;
	align-items: center;
	gap: 36px;
}

.nav-links-list a {
	font-size: 22px !important;
	font-weight: 600;
	color: var(--primary);
	position: relative;
}

.nav-links-list a::after {
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	transition: var(--transition);
}

.nav-links-list a:hover::after {
	width: 100%;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.btn-nav-ghost {
	padding: 9px 20px;
	border: 1.5px solid var(--primary);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
	transition: var(--transition);
}

.btn-nav-ghost:hover {
	background: var(--primary);
	color: var(--white);
}

.btn-nav-primary {
	padding: 10px 22px;
	background: var(--primary);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	transition: var(--transition);
}

.btn-nav-primary:hover {
	background: var(--secondary);
	transform: translateY(-1px);
}

.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	width: 36px;
}

.nav-hamburger span {
	display: block;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
	opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.btn-accent {
	background: var(--accent);
	color: var(--primary);
	border: none;
	border-radius: 100px;
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 700;
	transition: var(--transition);
}

.btn-view-all {
	font-size: 14px;
	font-weight: 700;
	border: none;
	background: transparent;
}

.view-all-wrapper {
	display: flex;
	justify-content: end;
	padding: 12px 0;
}

.close-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--primary);
	font-size: 20px;
	transition: var(--transition);
}

.dropdown {
	position: relative;
}

.dropdown>a {
	display: flex;
	align-items: center;
	gap: 6px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: -60px !important;
	background-color: transparent;
	padding: 25px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: .3s ease;
	z-index: 999;
	border: none;

}

.dropdown-menu-content {
	min-width: 220px;
	background: #fff;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	list-style: none;
}

.dropdown-menu li a {
	display: block;
	padding: 12px 20px;
	color: #222;
	text-decoration: none;
	transition: .3s;
}

.dropdown-menu li a:hover {
	background: #f5f5f5;
	color: #77a800;
}

/* ===========================
   HERO CAROUSEL
=========================== */

/*==================================================
            HERO SECTION
==================================================*/

.hero-section {
	position: relative;
	overflow: hidden;
	background: #fff;
	padding: 100px 0 60px 0 !important;
	min-height: auto;
}

.hero-section::before {
	content: "";
	position: absolute;
	width: 550px;
	height: 550px;
	background: radial-gradient(circle,
			rgba(189, 250, 4, .18) 0%,
			rgba(189, 250, 4, 0) 70%);
	left: -220px;
	top: -180px;
	pointer-events: none;
}

.hero-section::after {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle,
			rgba(15, 61, 46, .06) 0%,
			rgba(15, 61, 46, 0) 70%);
	right: -250px;
	bottom: -220px;
	pointer-events: none;
}

/*==================================
    Responsive Container Spacing
===================================*/
  .container-fluid {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 90px;
}

/* Large Desktop */
@media (max-width: 1600px) {
  .container-fluid {
		padding: 0 70px;
	}
}

/* Desktop */
@media (max-width: 1400px) {
  .container-fluid {
		padding: 0 60px;
	}
}

/* Laptop */
@media (max-width: 1200px) {
.container-fluid {
		padding: 0 40px;
	}
}

/* Tablet */
@media (max-width: 992px) {
  .container-fluid {
		padding: 0 30px;
	}
}

/* Large Mobile */
@media (max-width: 768px) {
  .container-fluid {
		padding: 0 20px;
	}
}

/* Mobile */
@media (max-width: 576px) {
  .container-fluid{
		padding: 0 15px;
	}
}

/* Small Mobile */
@media (max-width: 375px) {
  .container-fluid {
		padding: 0 12px;
	}
}

.hero-content {
	position: relative;
	z-index: 5;
}

.hero-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero-subtitle::before {
	content: "";
	width: 55px;
	height: 2px;
	background: var(--accent);
}


.hero-content h1,
.about-section-container h1 {
	font-family: "Inter", sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.08;
	font-weight: 800;
	color: #081a3d;
	margin-bottom: 28px;
	letter-spacing: -0.03em;
}

/* Large Desktop (1600px+) */
@media (min-width: 1600px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 3.3rem;
		/* 76.8px */
	}
}

/* Desktop (1200px–1599px) */
@media (max-width: 1499px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2.5rem;
		/* 64px */
	}
}

/* Laptop (992px–1199px) */
@media (max-width: 1299px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2rem;
		/* 56px */
	}
}

/* Tablet (768px–991px) */
@media (max-width: 991px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 3rem;
		/* 48px */
		line-height: 1.15;
	}
}

/* Mobile Large (576px–767px) */
@media (max-width: 767px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2.5rem;
		/* 40px */
		line-height: 1.2;
		margin-bottom: 20px;
	}
}

/* Mobile Small (<576px) */
@media (max-width: 575px) {

	.hero-content h1,
	.about-section-container h1 {
		font-size: 2rem;
		/* 32px */
		line-height: 1.25;
		margin-bottom: 16px;
	}
}

.hero-content h1 span,
.about-section-container h1 span {
	color: var(--primary);
	position: relative;
}

.hero-content h1 .hero-rotating-word {
	display: inline-block;
	min-width: 12ch;
	color: var(--primary);
	position: relative;
}

.hero-content h1 .hero-rotating-word.is-changing {
	animation: heroWordFade 0.7s ease;
}


.hero-content h1 span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 4px;
	background: var(--accent);
	border-radius: 20px;
}

@keyframes heroWordFade {
	0% {
		opacity: 0;
		transform: translateY(8px);
	}

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

@keyframes heroCursorBlink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

.hero-content p {
	max-width: 560px;
	font-size: 21px;
	color: #0a4403 !important;
	margin-bottom: 42px;
	line-height: 1.8 !important;
}

.hero-buttons {
	display: flex !important;
	align-items: center;
	gap: 24px;
	margin-bottom: 55px;
}

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

.btn-primary-custom,
.btn-outline-custom {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 300px;
	padding: 10px 20px;
	/* min-height: 82px; */
	border-radius: 9px;
	font-family: "Inter", sans-serif;
	font-size: 16px !important;
	font-weight: 600;
	text-align: center;
	transition: .35s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary-custom {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 20px 45px rgba(15, 61, 46, .22);
}

.btn-primary-custom:hover {
	background: #124b39;
	color: #fff;
	transform: translateY(-6px);
	box-shadow: 0 28px 55px rgba(15, 61, 46, .28);
}

.btn-outline-custom {
	background: #fff;
	color: #12263c;
	border: 2px solid rgba(15, 61, 46, .22);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.btn-outline-custom:hover {
	color: #fff;
	background: var(--primary);
	border-color: var(--primary);
	transform: translateY(-6px);
}

/*============================
        FEATURES
============================*/

.hero-features {
	display: flex;
	align-items: center;
	gap: clamp(12px, 3vw, 30px);
	flex-wrap: wrap;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature-item i {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(15, 61, 46, .08);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-item span {
	color: #3d3d3d;
	font-size: 13px;
	font-weight: 600;
	font-family: "Inter", sans-serif;
	line-height: 1.5;
}

/* Laptop */
@media (max-width: 1299px) {
	.feature-item span {
		font-size: 11px;
	}
}

/* Tablet */
@media (max-width: 991px) {
	.feature-item span {
		font-size: 12.5px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.feature-item span {
		font-size: 12px;
	}
}

/* Small Mobile */
@media (max-width: 575px) {
	.feature-item span {
		font-size: 11.5px;
	}
}

/*============================
        RIGHT IMAGE
============================*/

.hero-image {
	position: relative;
	margin-left: auto;
}

.hero-main-image {
	width: 100%;
	border-radius: 34px;
	object-fit: cover;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

/*============================
      FLOATING CARDS
============================*/

.floating-cards {
	position: absolute;
	left: 20px;
	top: 42px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.info-card {
	width: 300px;
	height: 60px;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0 26px;
	border-radius: 18px;

	/* Glass Effect */
	background: rgba(255, 255, 255, 0.747);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);

	border: 1px solid rgba(255, 255, 255, 0.35);

	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.12),
		inset 0 1px 1px rgba(255, 255, 255, 0.35);

	transition: all 0.35s ease;
}

.info-card:hover {
	transform: translateX(10px) translateY(-3px);
	background: rgba(255, 255, 255, 0.25);
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.18),
		inset 0 1px 1px rgba(255, 255, 255, 0.45);
}

.info-card i {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

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

	color: var(--primary);
	font-size: 20px;

	border: 1px solid rgba(255, 255, 255, 0.4);
}

.info-card span {
	color: var(--primary) !important;

	font-weight: 600;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/*============================
        SLIDER DOTS
============================*/

/*==================================================
        ANIMATIONS
==================================================*/

@keyframes floatY {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

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

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content {
	animation: fadeUp .8s ease forwards;
}

.hero-image {
	animation: fadeUp 1s ease forwards;
}

.info-card:nth-child(1) {
	animation: floatY 4s ease-in-out infinite;
}

.info-card:nth-child(2) {
	animation: floatY 4s ease-in-out infinite .4s;
}

.info-card:nth-child(3) {
	animation: floatY 4s ease-in-out infinite .8s;
}

.info-card:nth-child(4) {
	animation: floatY 4s ease-in-out infinite 1.2s;
}

.info-card:nth-child(5) {
	animation: floatY 4s ease-in-out infinite 1.6s;
}

/*==================================================
            LARGE DESKTOP
==================================================*/

@media (max-width:1400px) {


	.hero-main-image {
		border-radius: 30px;
	}

	.floating-cards {
		left: -45px;
	}

	.info-card {
		width: 280px;
	}
}

/*==================================================
            DESKTOP
==================================================*/


@media (max-width:1200px) {

	.hero-content p {
		font-size: 18px;
	}

	.btn-primary-custom,
	.btn-outline-custom {
		min-width: 250px;
		min-height: 74px;
		font-size: 18px !important;
	}

	.floating-cards {
		left: -20px;
		top: 35px;
	}

	.info-card {
		width: 250px;
		height: 76px;
		padding: 0 20px;
	}

	.info-card span {
		font-size: 16px;
	}

	.info-card i {
		width: 46px;
		height: 46px;
		font-size: 20px;
	}

	.hero-features {
		gap: 25px;
	}
}

/*==================================================
            TABLET
==================================================*/

@media (max-width:991px) {

	.hero-content {
		text-align: center;
		margin-bottom: 40px;
	}

	.hero-content p {
		margin: 0 auto 35px;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero-features {
		justify-content: center;
		gap: 20px;
	}

	.hero-image {
		max-width: 700px;
		margin: auto;
	}

	.floating-cards {
		left: 20px;
		top: 25px;
	}

	.info-card {
		width: 240px;
	}
}

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

@media (max-width:767px) {

	.hero-subtitle {
		font-size: 12px;
		justify-content: center;
	}

	.hero-content p {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 18px;
		margin-bottom: 40px;
	}

	.btn-primary-custom,
	.btn-outline-custom {
		width: 100%;
		max-width: 340px;
		min-width: auto;
		min-height: 68px;
		font-size: 17px !important;
		border-radius: 18px;
	}

	.hero-image {
		margin-top: 20px;
	}

	.hero-main-image {
		border-radius: 22px;
	}

	.floating-cards {
		position: relative;
		left: 0;
		top: 0;
		margin-bottom: 20px;
		gap: 12px;
	}

	.info-card {
		width: 100%;
		height: 68px;
		border-radius: 18px;
	}

	.info-card span {
		font-size: 15px;
	}

	.info-card i {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.hero-features {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.feature-item {
		width: 100%;
	}
}

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

@media (max-width:575px) {

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}


	.hero-content p {
		font-size: 15px;
	}

	.btn-primary-custom,
	.btn-outline-custom {
		max-width: 100%;
		min-height: 62px;
		font-size: 16px !important;
	}

	.hero-features {
		align-items: center;
	}

	.feature-item span {
		font-size: 14px;
	}

	.slider-dots {
		margin-top: 20px;
	}

	.slider-dots span {
		width: 10px;
		height: 10px;
	}

	.slider-dots span.active {
		width: 14px;
		height: 14px;
	}
}

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

.slider-dots span {
	cursor: pointer;
}

.hero-buttons a {
	text-decoration: none;
}

/* -----------Hero end ------------------ */

/* Buttons */
.hero-btns-new {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-main {
	border: 2px solid var(--accent);
	background: rgb(208, 255, 58, .05);
	color: var(--accent);
	font-size: calc(14px + 0.2vw);
	box-shadow: 0px 0px 5px rgba(189, 250, 4);
}

.btn-main:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 35px rgba(189, 250, 4, 0.3);
	background: #d0ff3a;
}

.btn-main-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--white);
	padding: 16px 40px;
	border-radius: 60px;
	font-weight: 700;
	font-size: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: 0.3s ease;
}

.btn-main-secondary:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-3px);
}


.btn-secondary-new {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
	backdrop-filter: blur(10px);
}

.btn-main:hover,
.btn-secondary-new:hover {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 0 5px #fff;
}


.btn-main,
.btn-secondary-new {
	display: inli2ne-flex;
	align-items: center;
	font-weight: 500;
	gap: 10px;
	font-size: calc(14px + 0.3vw);
	padding: 12px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
}


/* Pulse Animation */
.pulse-button {
	animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 0 0 rgba(189, 250, 4, .7);
	}

	70% {
		box-shadow: 0 0 0 20px rgba(189, 250, 4, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(189, 250, 4, 0);
	}
}

.carousel-inner {
	border-radius: 30px;
	overflow: hidden;
}

/* Indicators */
.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: -50px !important;
}

.carousel-indicators button {
	width: 15px !important;
	height: 15px !important;
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.carousel-indicators .active {
	background: var(--primary) !important;
	width: 18px !important;
	height: 18px !important;
}

.carousel-indicators [data-bs-target] {
	border: 10px !important;
	background-color: var(--primary);
}

.carousel-indicators {
	position: none !important;
}

/* <!-- ═══════════════════════ HOW IT WORKS SECTION ══════════════════════ --> */

.journey-section {
	background: #fff;
	padding: 90px 0;
}

.section-title .sub-title {
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 15px;
	display: block;
	margin-bottom: 12px;
	font-family: Inter, sans-serif;
}

.section-title h2 {
	font-size: 42px;
	font-weight: 700;
	color: #081b45;
	margin-bottom: 15px;
	font-family: Inter, sans-serif;
}

.title-line {
	width: 70px;
	height: 4px;
	background: var(--primary);
	display: inline-block;
	border-radius: 50px;
}

.journey-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.journey-item {
	flex: 1;
	text-align: center;
	position: relative;
}

.icon-box {
	width: 130px;
	height: 130px;
	margin: auto;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #edf1ef;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .4s;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.icon-box i {
	font-size: 40px;
	color: var(--primary);
	transition: .4s;
}

.journey-item:hover .icon-box {
	transform: translateY(-10px);
	box-shadow: 0 25px 45px rgba(15, 61, 46, .15);
}

.journey-item:hover .icon-box i {
	transform: scale(1.1);
}

.journey-item h4 {
	margin-top: 28px;
	font-size: 26px;
	font-weight: 700;
	color: #081b45;
	line-height: 1.35;
	font-family: Inter, sans-serif;
}

.journey-item p {
	margin-top: 18px;
	color: #666;
	font-size: 17px;
	line-height: 1.9;
	max-width: 260px;
	margin-left: auto;
	margin-right: auto;
}

.journey-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 75px;
	position: relative;
}

.journey-arrow::before {
	content: "";
	width: 55px;
	height: 2px;
	border-top: 2px dashed #8bc79c;
	position: absolute;
	left: 0;
}

.journey-arrow::after {
	content: "";
	width: 55px;
	height: 2px;
	border-top: 2px dashed #8bc79c;
	position: absolute;
	right: 0;
}

.journey-arrow i {
	background: #fff;
	color: var(--primary);
	font-size: 22px;
	padding: 0 10px;
	z-index: 2;
}

/*=========================
			RESPONSIVE
		==========================*/

@media(max-width:1200px) {

	.journey-wrapper {
		flex-wrap: wrap;
		justify-content: center;
	}

	.journey-arrow {
		display: none;
	}

	.journey-item {
		flex: 0 0 33.33%;
		margin-bottom: 40px;
	}

}

@media(max-width:768px) {

	.section-title h2 {
		font-size: 34px;
	}

	.journey-item {
		flex: 0 0 100%;
	}

	.icon-box {
		width: 130px;
		height: 130px;
	}

	.icon-box i {
		font-size: 42px;
	}

	.journey-item h4 {
		font-size: 22px;
	}

}

/* <!-- ══════════════════  WHO IS IT FOR ═══════════════════ --> */

.col-lg-2-4 {
	width: 20%;
}

@media(max-width:992px) {
	.col-lg-2-4 {
		width: 50%;
	}
}

@media(max-width:576px) {
	.col-lg-2-4 {
		width: 100%;
	}
}

.audience-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 13px rgba(0, 0, 0, 0.30);
	transition: .35s;
	height: 100%;
}

.audience-card:hover {
	transform: translateY(-10px);
}

.audience-image {
	position: relative;
	overflow: hidden;
}

.audience-image img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	transition: .4s;
}

.audience-card:hover img {
	transform: scale(1.08);
}

.audience-icon {
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.audience-icon i {
	color: var(--primary);
	font-size: 16px;
}

.audience-content {
	padding: 22px;
}

.audience-content h4 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #0b1d44;
}

.audience-content p {
	color: #666;
	line-height: 1.8;
}

/* <!-- ══════════════════  WHO IS IT FOR END═══════════════════ --> */

/* * ═══════════════════════════════════════
   SCIENCE / TRUST SECTION
═══════════════════════════════════════ */
.science-section {
	background:
		radial-gradient(circle at 15% 20%, rgba(189, 250, 4, 0.12), transparent 28%),
		linear-gradient(135deg, #0b2f24 0%, var(--primary) 58%, #164b39 100%);
	padding: 110px 0;
	position: relative;
	overflow: hidden;
}

.science-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23BDFA04' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.science-section::after {
	content: 'NHANCE';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 22vw;
	color: rgba(255, 255, 255, 0.025);
	pointer-events: none;
	white-space: nowrap;
}

.accent-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border: 1px solid rgba(189, 250, 4, 0.22);
	border-radius: 100px;
	background: rgba(189, 250, 4, 0.1);
	color: var(--accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.accent-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 18px rgba(189, 250, 4, 0.8);
}

.science-title {
	font-weight: 500;
	font-size: clamp(30px, 4.5vw, 46px);
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 28px;
	max-width: 620px;
}

.science-title span {
	color: var(--accent);
}

.science-body {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.85;
	max-width: 560px;
	margin-bottom: 34px;
}

.science-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.science-stat {
	padding: 24px 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-align: left;
	backdrop-filter: blur(14px);
	transition: var(--transition);
}

.science-stat:hover {
	transform: translateY(-5px);
	border-color: rgba(189, 250, 4, 0.38);
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.science-stat-num {
	font-size: 35px;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 8px;
	display: block;
}

.science-stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.68);
	font-weight: 600;
	line-height: 1.45;
}

.science-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 0;
}

.sci-pill {
	padding: 10px 16px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.78);
	display: flex;
	align-items: center;
	gap: 8px;
}

.sci-pill i {
	color: var(--accent);
}

/* Science image cards */
.science-visual {
	height: 450px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(14px);
}

.science-hero-card,
.science-img-card {
	overflow: hidden;
	position: relative;
	height: 360px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
}

.science-hero-card {
	height: 100%;
	min-height: 328px;
}

.science-mini-grid {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
}

.science-hero-card img,
.science-img-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.science-hero-card:hover img,
.science-img-card:hover img {
	transform: scale(1.05);
}

.science-hero-card::after,
.science-img-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 28, 21, 0.72) 0%, rgba(7, 28, 21, 0.08) 60%);
}

.science-hero-overlay {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
}

.science-hero-overlay p {
	max-width: 360px;
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.55;
}

.science-img-card-label {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	font-size: 24px;
	color: #fff;
	letter-spacing: 1px;
}

.science-hero-overlay .science-img-card-label {
	position: static;
	display: block;
	color: var(--accent);
	font-size: 34px;
}

/* ═══════════════════════════════════════
 PLAN SECTION
═══════════════════════════════════════ */

.pricing-section {
	background: #fff;
}

.pricing-card {
	position: relative;
	background: #fff;
	border: 1px solid #e8ece9;
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	transition: .35s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(15, 61, 46, .12);
}

.featured-card {
	transform: scale(1.04);
	border: 2px solid var(--primary);
}

.featured-card:hover {
	transform: scale(1.04) translateY(-10px);
}

.popular-badge {
	background: var(--primary);
	color: #fff;
	text-align: center;
	padding: 10px;
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 15px;
}

.pricing-body {
	padding: 40px 35px;
}

.pricing-body h3 {
	color: var(--primary);
	font-family: Inter, sans-serif;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.price {
	text-align: center;
	font-size: 40px;
	font-family: Inter, sans-serif;
	font-weight: 800;
	color: #081B45;
	margin-bottom: 15px;
}

.pricing-body p {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;

}

.feature-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 18px;
}

.feature-list i {
	color: var(--primary);
	margin-top: 4px;
}

.feature-list span {
	color: #444;
}



.btn-outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	background: #fff;
}

.btn-outline:hover {
	background: var(--primary);
	color: #fff;
}

.btn-filled {
	background: var(--primary);
	color: #fff;
	border: 2px solid var(--primary);
}

.btn-filled:hover {
	background: #14513d;
	border-color: #14513d;
}

/*==========================
			RESPONSIVE
		===========================*/

@media(max-width:1199px) {

	.price {
		font-size: 54px;
	}

	.pricing-body {
		padding: 35px 28px;
	}

}

@media(max-width:991px) {

	.featured-card {
		transform: none;
	}

	.featured-card:hover {
		transform: translateY(-10px);
	}

	.price {
		font-size: 48px;
	}

	.pricing-body h3 {
		font-size: 25px;
	}

}

@media(max-width:767px) {

	.pricing-body {
		padding: 30px 22px;
	}

	.price {
		font-size: 42px;
	}

	.pricing-body h3 {
		font-size: 22px;
	}


}

@media(max-width:575px) {

	.price {
		font-size: 36px;
	}

	.pricing-body {
		padding: 25px 18px;
	}

	.feature-list li {
		font-size: 15px;
	}

}

/* ===========================
           CORPORATE
        =========================== */

.trusted-section {
	background: #fff;
}

.trusted-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 24px;
	padding: 40px;
	height: 100%;
	transition: .35s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.trusted-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(15, 61, 46, .12);
}

.trusted-icon {
	width: 140px;
	height: 140px;
	margin: auto;
	border-radius: 50%;
	background: #f6fbf8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.trusted-icon i {
	font-size: 72px;
	color: var(--primary);
}

.trusted-card h3 {
	font-family: "Inter", sans-serif;
	font-size: 25px;
	font-weight: 700;
	color: #081B45;
	margin-bottom: 18px;
}

.trusted-card p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 25px;
}

.trusted-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 58px;
	border: 2px solid var(--primary);
	border-radius: 15px;
	color: var(--primary);
	font-family: "Inter", sans-serif;
	font-weight: 700;
	transition: .35s;
}

.trusted-btn:hover {
	background: var(--primary);
	color: #fff;
}

/*=========================
			Responsive
		==========================*/

@media(max-width:991px) {

	.trusted-card {
		padding: 30px;
		text-align: center;
	}

	.trusted-icon {
		margin-bottom: 25px;
	}

	.trusted-card h3 {
		font-size: 25px;
	}

}

@media(max-width:767px) {

	.trusted-icon {
		width: 110px;
		height: 110px;
	}

	.trusted-icon i {
		font-size: 56px;
	}

	.trusted-card h3 {
		font-size: 22px;
	}

	.trusted-btn {
		width: 100%;
		min-width: 100%;
	}

}

@media(max-width:576px) {

	.trusted-card {
		padding: 25px 20px;
	}

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

	.trusted-card p {
		font-size: 15px;
	}

}

/*==========================================
					TESTIMONIAL SECTION
			==========================================*/

.testimonial-section {
	position: relative;
	background: linear-gradient(180deg, #f8fffb 0%, #ffffff 100%);
	overflow: hidden;
}

.testimonial-section .container-fluid {
	padding: 0 90px;
}

.testimonial-slider-shell {
	display: flex;
	align-items: center;
	gap: 16px;
}

.testimonial-viewport {
	flex: 1;
	overflow: hidden;
	padding: 8px 2px 20px;
}

.testimonial-track {
	display: flex;
	gap: 24px;
	transition: transform .6s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}

.testimonial-card {
	position: relative;
	background: #fff;
	border: 1px solid #edf1ef;
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	padding: 28px;
	transition: .35s ease;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
	cursor: pointer;
}

.testimonial-card--slider {
	flex: 0 0 calc((100% - ((var(--visible-cards) - 1) * var(--card-gap))) / var(--visible-cards));
	min-width: 0;
}

.testimonial-card:hover {

	transform: translateY(-10px);

	box-shadow: 0 25px 60px rgba(15, 61, 46, .12);

}

/*==========================
				Content
			==========================*/

.testimonial-content {
	display: grid;
	grid-template-columns: 1.3fr 2fr;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

@media (max-width: 1291px) {
	.testimonial-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

.testimonial-left {
	flex: 1;
}

.testimonial-right {
	width: auto;
	flex-shrink: 0;
}

/*==========================
				Rating
			==========================*/

.rating {
	margin-bottom: 20px;
}

.rating i {

	color: #0F8B52;
	font-size: 18px;
	margin-right: 2px;

}

/*==========================
				Review
			==========================*/

.testimonial-text {

	font-size: 17px;
	color: #444;
	line-height: 1.8;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: calc(1.8em * 4);

}

.client-name {

	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #081B45;

}

/*==========================
					Image
			==========================*/

.client-image {

	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #f7f7f7;
	transition: .4s;

}

.testimonial-card:hover .client-image {

	transform: scale(1.08);

}

/*==========================
					Controls
			==========================*/

.testimonial-nav,
.teamSliderBtn-nav {
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(135deg, #0f8b52, #1fb97a);
	color: #fff;
	box-shadow: 0 12px 30px rgba(15, 61, 46, .18);
	transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
	flex-shrink: 0;
}

.testimonial-nav:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(15, 61, 46, .22);
}

.testimonial-nav:disabled {
	opacity: .45;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.testimonial-dots,
.team-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.testimonial-dots {
	margin-top: 24px;

}

.testimonial-dots button,
.team-dots button {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: #d9e2dc;
	padding: 0;
	transition: all .3s ease;
}

.testimonial-dots button.active,
.team-dots button.active {
	width: 34px;
	border-radius: 999px;
	background: var(--primary);
}

.testimonial-modal {
	position: fixed;
	inset: 0;
	z-index: 4000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.testimonial-modal.is-open {
	display: flex;
}

.testimonial-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(6, 18, 15, .82);
	backdrop-filter: blur(8px);
}

.testimonial-modal-panel {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	height: min(760px, 100%);
	background: linear-gradient(135deg, #ffffff 0%, #f4fff8 100%);
	border-radius: 32px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.testimonial-modal-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #0f8b52;
	box-shadow: 0 10px 18px rgba(15, 61, 46, .16);
	z-index: 2;
}

.testimonial-modal-body {
	flex: 1;
	overflow: hidden;
	padding: 22px 8px 6px;
}

.testimonial-modal-track {
	display: flex;
	height: 100%;
	transition: transform .55s ease;
}

.testimonial-modal-slide {
	flex: 0 0 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 6px 4px;
}

.testimonial-modal-card {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 28px;
	box-shadow: 0 16px 44px rgba(15, 61, 46, .1);
	padding: 32px;
	display: flex;
	align-items: center;
	gap: 30px;
}

.testimonial-modal-card .testimonial-left {
	flex: 1;
}

.testimonial-modal-card .testimonial-text {
	-webkit-line-clamp: unset;
	display: block;
	min-height: 0;
	overflow: visible;
	font-size: 18px;
	line-height: 1.9;
	margin-bottom: 26px;
}

.testimonial-modal-card .client-image {
	width: 180px;
	height: 180px;
}

.testimonial-modal-footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding-top: 10px;
}

.testimonial-modal-nav {
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: linear-gradient(135deg, #0f8b52, #1fb97a);
	color: #fff;
	box-shadow: 0 10px 22px rgba(15, 61, 46, .16);
}

.testimonial-modal-nav:disabled {
	opacity: .45;
	cursor: not-allowed;
	box-shadow: none;
}

.testimonial-modal-dots {
	display: flex;
	gap: 8px;
}

.testimonial-modal-dots button {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: #d8e4dc;
	padding: 0;
}

.testimonial-modal-dots button.active {
	width: 34px;
	border-radius: 999px;
	background: var(--primary);
}

/*==========================
				Responsive
			==========================*/

@media(max-width:1399px) {

	.testimonial-section .container-fluid {

		padding: 0 70px;

	}

}

@media(max-width:1199px) {

	.testimonial-section .container-fluid {
		padding: 0 50px;
	}

	.client-image {

		width: 100px;
		height: 100px;

	}

	.testimonial-right {
		width: 100px;
	}

}

@media(max-width:991px) {

	.testimonial-content {

		flex-direction: column-reverse;
		text-align: center;

	}

	.testimonial-right {

		width: 100%;

	}

	.client-image {

		margin: auto;

	}

	.testimonial-nav {

		display: none;

	}

}

@media(max-width:767px) {

	.testimonial-section .container-fluid {

		padding: 0 20px;

	}

	.testimonial-card {

		padding: 25px 20px;

	}

	.client-image {

		width: 90px;
		height: 90px;

	}

	.rating i {

		font-size: 16px;

	}

	.testimonial-text {

		font-size: 15px;

	}

	.client-name {

		font-size: 17px;

	}

	.carousel-indicators {

		margin-top: 25px;

	}

}

@media(max-width:575px) {

	.testimonial-card {

		padding: 20px;

	}

	.testimonial-text {

		font-size: 14px;

		line-height: 1.7;

	}

	.client-image {

		width: 80px;
		height: 80px;

	}

	.rating {

		margin-bottom: 15px;

	}

	.client-name {

		font-size: 16px;

	}

}


/* ═══════════════════════════════════════
			HOME ABOUT SECTION
		═══════════════════════════════════════ */
.about-section {

	position: relative;
	overflow: hidden;
	background-image: url(../img/side-img/about-us-bg-image.png);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 50px;
	/* background: #222121;
		background-blend-mode: multiply; */
}

/* ---------------- */
.about-image {
	display: flex;
	align-items: center;
}

.benefits-card {
	background: #fff;
	padding: 30px;
	max-width: 350px;
	border-radius: 10px;
	box-shadow: 0 0 30px rgb(0, 0, 0, .30);
}

.benefits-title {
	color: var(--primary) !important;
	font-size: 20px;
	font-weight: 500;
	font-family: "Rokkitt", serif;
}


.benefit-icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;
	background: #2f7d32;
	color: #fff;
	font-size: 18px;

	box-shadow: 0 8px 20px rgba(47, 125, 50, .18);
}

.benefit-content h4 {
	margin: 0 0 6px;
	color: #222;
	font-size: 18px;
	font-weight: 700;
	font-family: "Rokkitt", serif;
}


/* ---------------------- */
.about-card {
	display: grid;
	grid-template-columns: 40% 65%;
	justify-content: space-between;
	border-radius: 28px;
	padding: 18px;
	position: relative;
}

.about-content {
	background: linear-gradient(to right, rgb(246 243 240), rgb(246 243 240));
	padding: 50px;
	max-width: 550px;
	border-radius: 10px;
	justify-self: end;
}

.about-lrft-content {
	display: grid;
	align-items: end;
}

.about-body {
	font-size: 15px;
	line-height: 1.85;
	color: var(--white);
	font-weight: 400;
	max-width: 720px;
	margin: 0;
}

.about-body strong {
	color: var(--primary);
}

.about-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.about-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 10px;
	border-radius: 100px;
	background: rgba(15, 61, 46, 0.06);
	border: 1px solid var(--primary);
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
}

.about-proof {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	z-index: 1;
}


/* =================================================================
    NHANCE PRO
    ========================= ==========================================*/
.pro-journey-section {
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.pro-journey-section::before {
	content: "";
	position: absolute;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: rgba(15, 61, 46, .05);
	top: -220px;
	right: -150px;
}

.pro-header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.price-tag {
	display: inline-block;
	background: #1f3622;
	color: #fff;
	padding: 8px 16px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 32px;
}

.label-pill {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	background: #1f3622;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 20px;
}

.hero-title {
	font-size: 36px;
	line-height: 1.25;
	margin-bottom: 20px;
	max-width: 700px;
	color: #1f3622;
	font-weight: 700;
}

.journey-layout {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 70px;
	align-items: center;
}

.pro-product-shot {
	position: sticky;
	top: 90px;
	text-align: center;
}

.pro-product-shot img {
	max-width: 100%;
	animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {
	50% {
		transform: translateY(-12px);
	}
}

.pro-feature-cards {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pro-feature-card {
	display: flex;
	align-items: center;
	background: #f1f4e9;
	border-radius: 12px;
	padding: 16px;
	gap: 16px;
}

.pro-feature-icon {
	width: 70px;
	height: 70px;
	min-width: 70px;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.pro-feature-icon.doctor-bg {
	background: #e8e3dc;
}

.pro-feature-icon.blood-bg {
	background: #f5dacc;
}

.pro-feature-icon.clipboard-bg {
	background: #e6efe2;
}

.pro-feature-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pro-feature-text h4 {
	font-size: 16px;
	font-weight: 700;
	color: #1f3622;
	margin-bottom: 6px;
}

.pro-feature-text p {
	font-size: 13px;
	color: #4a5c53;
	line-height: 1.4;
	margin: 0;
}

.begin-btn {
	display: inline-block;
	margin-top: 25px;
	padding: 15px 30px;
	border-radius: 60px;
	background: #0f3d2e;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.trigger-area {
	margin-top: 70px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	position: relative;
}

.trigger-box {
	position: relative;
	border-radius: 20px;
	background: #f7f5ef;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	overflow: hidden;
	min-height: 250px;
	box-shadow: 0 0 4px rgba(15, 61, 46, .5);
	transition: .35s ease;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.trigger-box.active-highlight {
	transform: scale(1.02);
	box-shadow: 0 0 0 4px rgba(15, 61, 46, .15), 0 18px 45px rgba(0, 0, 0, .12);
}

.trigger-content {
	padding: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}

.trigger-content h3 {
	font-size: 24px;
	line-height: 1.25;
	margin-bottom: 12px;
	color: #1a3122;
	font-weight: 700;
}

.trigger-content p {
	font-size: 14px;
	color: var(--primary);
	line-height: 1.5;
	margin-bottom: 25px;
}

.trigger-box a {
	align-self: flex-start;
	background: #1a3122;
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.trigger-image {
	position: relative;
	width: 100%;
	height: 100%;
}

.trigger-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.trigger-center-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	background: #f1f4e9;
	border: 4px solid #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 3;
	font-size: 22px;
	color: #1a3122;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.plans {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.plan {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	background: #fdfdfc;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.plan-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a3122;
	margin-bottom: 15px;
	text-align: center;
}

.plan-intro {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.plan-intro-icon {
	font-size: 20px;
	color: #fff;
	background: #1a3122;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.plan-intro-text {
	line-height: 1.4;
}

.plan-body h4 {
	font-size: 14px;
	font-weight: 700;
	color: #1a3122;
	margin-bottom: 12px;
}

.plan ul {
	margin-top: 0;
	padding-left: 0;
	list-style: none;
	margin-bottom: 25px;
}

.plan ul li {
	font-size: 13px;
	color: #4a5c53;
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.2 !important;
}

.plan ul li i {
	margin-top: 3px;
}

.plan-btn {
	display: block;
	text-align: center;
	background: var(--primary);
	color: #fff;
	padding: 12px 15px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: .3s;
	margin-bottom: 20px;
}

.plan-btn:hover {
	background: var(--secondary);
	color: #fff;
}

.plan-btn i {
	margin-right: 6px;
}

/* Modal */

.pro-modal {
	position: fixed;
	inset: 0;
	background: rgba(8, 20, 20, .65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 999999;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.pro-modal.active {
	display: flex;
	animation: fadeIn .35s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.modal-card {

	width: 100%;
	max-width: 620px;
	background: #f7f5ef;
	border-radius: 20px;
	padding: 45px 35px;
	position: relative;
	text-align: center;
	animation: popupScale .35s ease;
	box-shadow:
		0 0 4px rgba(15, 61, 46, .5),
		0 25px 70px rgba(0, 0, 0, .18);
}

@keyframes popupScale {

	from {
		opacity: 0;
		transform: translateY(20px) scale(.95);
	}

	to {
		opacity: 1;
		transform: none;
	}

}

.modal-badge {

	display: inline-block;

	margin-top: 18px;

	margin-bottom: 12px;

	padding: 7px 18px;

	border-radius: 40px;

	background: #eefaf4;

	color: #0f3d2e;

	font-weight: 600;

}

.modal-card h2 {

	margin-bottom: 14px;

	font-size: 34px;

}

.modal-card p {

	color: #666;

	line-height: 1.8;

}

.modal-actions {

	display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 18px;

	margin-top: 30px;

}

.modal-actions a {
	display: inline-block;
	padding: 14px 22px;
	border-radius: 50px;
	background: #0f3d2e;
	color: #fff;
	text-decoration: none;
}

.close-modal {
	position: absolute;
	right: 18px;
	top: 15px;
	border: none;
	background: none;
	font-size: 32px;
	cursor: pointer;
	color: #666;
}

.modal-icon {
	width: 74px;
	height: 74px;
	margin: auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	background: #e7f7ef;
}

.schedule-blood-btn,
.doctor-btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 20px;
	border-radius: 40px;
	background: #0f3d2e;
	color: #fff;
	text-decoration: none;
}

#modal-dynamic-view {
	padding: 10px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
	animation: fadeIn 0.35s ease;
}

#modal-dynamic-view h3 {
	font-size: 24px;
	line-height: 1.25;
	margin-bottom: 12px;
	color: #1a3122;
	font-weight: 700;
}

#modal-dynamic-view p {
	font-size: 14px;
	color: var(--primary);
	line-height: 1.5;
	margin-bottom: 25px;
}

#modal-dynamic-view a {
	align-self: flex-start;
	background: #1a3122;
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

#modal-initial-view {
	animation: fadeIn 0.35s ease;
}

@media(max-width:991px) {

	.journey-layout {
		grid-template-columns: 1fr;
	}

	.trigger-area {
		grid-template-columns: 1fr;
	}

	.plans {
		grid-template-columns: 1fr;
	}

	.plan {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-title {
		font-size: 38px;
	}

	.pro-product-shot {
		position: static;
	}
}

.popup-option {

	border: none;

	cursor: pointer;

	border-radius: 18px;

	padding: 24px;

	text-align: left;

	background: #f7faf9;

	transition: .3s;

}

.popup-option:hover {

	transform: translateY(-4px);

	background: #0f3d2e;

	color: #fff;

}

.popup-option strong {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
}

.popup-option small {
	display: block;
	opacity: .8;
	line-height: 1.6;
}

.trigger-box {
	scroll-margin-top: 120px;
	transition: .4s;
}

.trigger-box.active-highlight {
	transform: scale(1.02);
	border: 2px solid #0f3d2e;
	box-shadow:
		0 0 0 8px rgba(15, 61, 46, .08),
		0 20px 50px rgba(0, 0, 0, .12);
}

@media(max-width:768px) {

	.modal-card {
		padding: 30px 22px;
	}

	.modal-card h2 {
		font-size: 28px;
	}

	.modal-actions {
		grid-template-columns: 1fr;
	}

}

/* ==================================
   QUALITY PILLARS SECTION
================================== */
.our-quality-pillars {
	background: #fcfdfc;
	overflow: hidden;
}

.pillars-row {
	border-top: 1px solid rgba(26, 49, 34, 0.1);
	border-bottom: 1px solid rgba(26, 49, 34, 0.1);
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

.pillar-col {
	position: relative;
	border-right: 1px solid rgba(26, 49, 34, 0.1);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	padding: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.pillar-col:hover {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	z-index: 2;
	border-color: transparent;
}

.pillar-col:last-child {
	border-right: none;
}

.pillar-card {
	position: relative;
	padding: 40px 30px;
	width: 100%;
	background: linear-gradient(to bottom, rgba(247, 249, 245, 0.95) 0%, rgba(247, 249, 245, 0.85) 60%, rgba(247, 249, 245, 0.4) 100%);
	min-height: 420px;
	z-index: 1;
	transition: all 0.4s ease;
}

.pillar-col:hover .pillar-card {
	background: linear-gradient(to bottom, rgba(247, 249, 245, 0.90) 0%, rgba(247, 249, 245, 0.6) 60%, rgba(247, 249, 245, 0.1) 100%);
}

.pillar-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.pillar-icon {
	width: 56px;
	height: 56px;
	background: #1a3122;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
	border: 3px solid #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.pillar-col:hover .pillar-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 20px rgba(26, 49, 34, 0.3);
}

.pillar-icon span {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.pillar-header h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1a3122;
	margin: 0;
	line-height: 1.3;
	padding-top: 6px;
}

.pillar-card p {
	font-size: 14px;
	color: #333;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 991px) {
	.pillar-col {
		border-right: none;
		border-bottom: 1px solid rgba(26, 49, 34, 0.1);
	}

	.pillar-col:last-child {
		border-bottom: none;
	}
}

/* ==================================
   MODERN CLINICAL TABLE
================================== */

.clinical-table-wrap {
	margin-top: 30px;
	border-radius: 24px;
	overflow: hidden;

	background: rgba(255, 255, 255, .7);
	backdrop-filter: blur(15px);

	border: 1px solid rgba(15, 61, 46, .08);

	box-shadow:
		0 20px 60px rgba(15, 61, 46, .08);
}

.clinical-table {
	width: 100%;
	border-collapse: collapse;
}

.clinical-table thead {
	background: linear-gradient(135deg,
			var(--primary),
			#1a5c42);
}

.clinical-table th {
	color: #fff;
	padding: 12px 24px;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .5px;
}

.clinical-table td {
	padding: 12px 24px;
	border-bottom: 1px solid rgba(15, 61, 46, .08);
	vertical-align: middle;
	color: var(--text-main);
}

.clinical-table tr:last-child td {
	border-bottom: none;
}

.clinical-table tbody tr {
	transition: .35s ease;
}

.clinical-table tbody tr:hover {
	background: rgba(189, 250, 4, .08);
}

.table-title {
	display: flex;
	align-items: center;
	gap: 14px;

	font-weight: 700 !important;
	color: var(--primary) !important;
}

.table-icon {
	width: 48px;
	height: 48px;

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

	border-radius: 5px;

	background: linear-gradient(135deg, rgb(42 55 4 / 25%), rgba(189, 250, 4, .10));

	color: var(--primary);
	font-size: 18px;
	box-shadow:
		2px 3px 0px rgb(88, 50, 7);
}

.clinical-table td:last-child {
	line-height: 1.7;
}

/* Mobile */

@media(max-width:768px) {

	.clinical-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.clinical-table th,
	.clinical-table td {
		min-width: 260px;
	}
}

/* ═══════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════ */

/* -------------------------CTA------------------------- */
.cta-section {
	position: relative;
	overflow: hidden;
	padding: 50px 0;
	background: var(--secondary);
	color: var(--white);
	text-align: center;
}

.cta-section::before {
	content: 'NHANCE';
	position: absolute;
	font-family: serif;
	top: 50%;
	left: 50%;
	z-index: 0;
	color: rgba(255, 255, 255, 0.03);
	font-size: 15vw;
	transform: translate(-50%, -50%);
}

.badge-new {
	display: inline-block;
	margin-bottom: 25px;
	padding: 7px 20px;
	border: 1px solid rgba(189, 250, 4, 0.25);
	border-radius: 100px;
	background: rgba(189, 250, 4, 0.12);
	color: var(--accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.cta-sub {
	position: relative;
	max-width: 760px;
	margin: 0 auto 50px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 20px;
	line-height: 1.7;
}

.cta-actions {
	display: flex;
	align-items: center;
	justify-content: center;
}


@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 45px;
	}
}

@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding: 24px 0 0;
	}

	.footer-bottom span {
		width: 100%;
	}
}

/* ------------------------------Footer ----------------------*/
footer {
	position: relative;
	padding: 80px 0 0;
	background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
	color: rgba(255, 255, 255, 0.6);
	overflow: hidden;
}


.footer-accent-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 60px;
	z-index: 1;
	margin-bottom: 20px;
}


.footer-desc {
	max-width: 350px;
	margin-top: 25px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 30px;
}

.footer-social a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.footer-social a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--gradient-accent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.footer-social a i {
	position: relative;
	z-index: 1;
}

.footer-social a:hover {
	border-color: var(--accent);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(189, 250, 4, 0.2);
}

.footer-social a:hover::before {
	opacity: 1;
}

.footer-social a:hover i {
	color: var(--primary);
}

.footer-col h5 {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 15px;
	color: var(--white);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.footer-col h5::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--gradient-accent);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.footer-col:hover h5::after {
	width: 60px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0 !important;
}

.footer-col ul li a {
	position: relative;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	transition: all 0.3s ease;
	padding-left: 0;
}

.footer-col ul li a::before {
	content: '';
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: all 0.3s ease;
}

.footer-col ul li a:hover {
	color: var(--white);
	padding-left: 15px;
}

.footer-col ul li a:hover::before {
	width: 10px;
	left: 0;
}

.footer-bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	z-index: 1;
}

.footer-bottom span {
	color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span:last-child {
	color: var(--accent);
	font-weight: 600;
}

/* =================================
   Cart Section
================================= */
.cart-breadcrumb .breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
}

.cart-breadcrumb .breadcrumb-item.active {
    color: #16a34a;
    font-weight: 600;
}

.cart-page-hero {
    margin-top: 150px;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.hero-blob-1 {
    width: 300px;
    height: 300px;
    background: #16a34a;
    top: -100px;
    left: -100px;
}

 

/* =================================
   Address Box
================================= */
.address-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.address-header h5 {
    font-size: 18px;
    font-weight: 700;
    color: #202020;
    margin: 0;
}

.add-address-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: #F2FBF5;
    border: 1px solid var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-address-btn:hover {
    background: var(--primary);
    color: #fff;
}

.address-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.address-list {
    flex: 1;
    width: 100%;
}

.address-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: .3s;
    cursor: pointer;
    position: relative;
}

.address-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.address-item.active {
    border-color: var(--primary);
    background: #F2FBF5;
}

.address-item.active::before {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.address-radio {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--primary);
}

.address-details h6 {
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 6px;
}

.address-details p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.address-edit-btn,
.address-delete-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
    border: none;
}

.address-edit-btn {
    color: var(--primary);
    background: #F2FBF5;
}

.address-edit-btn:hover {
    background: var(--primary);
    color: #fff;
}

.address-delete-btn {
    color: #dc3545;
    background: #fff4f4;
}

.address-delete-btn:hover {
    background: #dc3545;
    color: #fff;
}

.no-address {
    text-align: center;
    padding: 40px 20px;
}

.no-address i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 15px;
}

.no-address h6 {
    font-size: 18px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 8px;
}

.no-address p {
    color: #6b7280;
    margin-bottom: 20px;
}

/* =================================
   Address Modal
================================= */
.address-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.address-modal-overlay.active {
    display: flex;
}

.address-modal {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h5 {
    font-size: 20px;
    font-weight: 700;
    color: #202020;
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ececec;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.modal-close:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 8px;
}

.form-group label span {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: .3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #ececec;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.btn-cancel:hover {
    background: #e5e7eb;
}

.btn-save {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.btn-save:hover {
    background: var(--primary-dark);
}

/* =================================
   Cart Box
================================= */
.cart-box,
.summary-box,
.feature-box {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
}

.cart-heading {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #042b07;
    border-radius: 12px 12px 0 0;
}

.product-col {
    width: 50%;
}

.price-col {
    width: 17%;
}

.qty-col {
    width: 22%;
}

.total-col {
    width: 6%;
}

.cart-item {
    padding: 25px 30px;
    border-bottom: 1px solid #ececec;
}

.cart-item:last-child {
    border-bottom: none;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-image {
    width: 95px;
    height: 95px;
    background: #F8F8F8;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #202020;
}

.product-details p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
    max-width: 210px;
    line-height: 1.6;
}

.product-size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 30px;
    border-radius: 30px;
    border: 1px solid #A7D8B7;
    color: var(--primary);
    background: #F2FFF7;
    font-size: 12px;
    font-weight: 600;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #232323;
}

.cart-item-content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
     gap: 15px;
    align-items: center;
}

.product-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}
.pqt-btns{
    width: 100%;
}

.price-wrapper,
.quantity-wrapper,
.total-wrapper {
    text-align: center;
}

.qty-box {
    width: 110px;
    height: 42px;
    border: 1px solid #ececec;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    margin: 0 auto;
}

.qty-box button {
    width: 34px;
    height: 42px;
    cursor: pointer;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    transition: .3s;
    background: none;
    border: none;
}

.qty-box button:hover {
    background: #F2FBF5;
}

.qty-box button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-box input {
    width: 42px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    background: none;
}

.qty-box input:focus {
    outline: none;
}

.total-price {
    color: #202020;
    font-weight: 600;
}

.action-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content:end;
    margin-top: 10px;
}

.delete-btn {
     border: 1px solid #ececec;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    cursor: pointer;
    background: #fff4f4;
    padding:5px 10px;
}

.delete-btn:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.buy-now-btn {
    padding:5px 10px;
     font-weight: 600;
    color: var(--primary);
      cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background-color: rgb(22, 99, 63,.29);
    border: 1px solid rgb(22, 99, 63);
}

.buy-now-btn:hover {
    background: var(--primary);
     transform: translateY(-2px);
     color:white;
}

.cart-footer {
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ececec;
}

.continue-shopping {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: .3s;
}

.continue-shopping:hover {
    color: var(--primary-dark);
}

.clear-cart {
    height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: .35s;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: max-content;
    background: #fff;
}

.clear-cart:hover {
    background: var(--primary);
    color: #fff;
}

/* =================================
   Order Summary
================================= */
.summary-box {
    padding: 30px;
    position: sticky;
    top: 100px;
}

.summary-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #202020;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 15px;
    color: #555;
}

.summary-item span:last-child {
    font-weight: 600;
    color: #202020;
}

.summary-item .free {
    color: var(--primary);
    font-weight: 700;
}

.summary-box hr {
    border-color: #ececec;
    margin: 22px 0;
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.summary-total span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.summary-total .price {
    font-size: 26px;
    font-weight: 700;
    color: #202020;
}

/* =================================
   Secure Box
================================= */
.secure-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #F7FBF8;
    border: 1px solid #DCEFE4;
    border-radius: 10px;
    margin-bottom: 25px;
}

.secure-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #E8F8EE;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.secure-box h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #202020;
}

.secure-box p {
    margin: 0;
    color: #6f6f6f;
    font-size: 14px;
}

/* =================================
   Checkout Button
================================= */
.checkout-btn {
    width: 100%;
    height: 56px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .35s;
    cursor: pointer;
    border: none;
}

.checkout-btn:hover {
    background: var(--brand-green);
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* =================================
   Feature Boxes
================================= */
.feature-box {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .35s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #F2FBF5;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-box h6 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #202020;
}

.feature-box p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

/* =================================
   Mobile Labels
================================= */
.mobile-title {
    display: none;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    margin-bottom: 8px;
}

/* =================================
   Empty Cart
================================= */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 24px;
    font-weight: 700;
    color: #202020;
    margin-bottom: 10px;
}

.empty-cart p {
    color: #777;
    margin-bottom: 25px;
}

/* =================================
   Responsive
================================= */
@media (max-width: 1199px) {
    .cart-item {
        padding: 20px;
    }

    .summary-box {
        position: relative;
        top: auto;
    }

 
}

@media (max-width: 991px) {
    .cart-section {
        padding: 50px 0;
    }
     .cart-item-content{
        grid-template-columns:repeat(2, 1fr);
        gap:15px;
    }

    .cart-heading {
        display: none !important;
    }

    .cart-item {
        padding: 20px;
    }

    .mobile-title {
        display: block;
    }

 

    .product-image {
        width: 85px;
        height: 85px;
    }

    .product-details h5 {
        font-size: 20px;
    }

    .summary-box {
        margin-top: 20px;
    }

    .cart-item-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .product-wrapper,
    .price-wrapper,
    .quantity-wrapper,
    .total-wrapper,
    .action-wrapper {
        width: 100%;
        text-align: left;
    }

    .action-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .qty-box {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .cart-page-hero {
        margin-top: 100px;
    }
 .cart-item-content{
        grid-template-columns:1fr;
        gap:20px;
    }
    .hero-blob-1 {
        opacity: 0.3;
    }

  

    .cart-section {
        padding: 40px 0;
    }

    .cart-box,
    .summary-box,
    .feature-box,
    .address-box {
        border-radius: 10px;
    }

    .cart-item {
        padding: 20px;
    }

 
    .product-image {
        width: 100%;
        max-width: 180px;
        height: auto;
        margin: 0 auto;
    }

    .product-details {
        width: 100%;
    }

    .product-details p {
        max-width: 100%;
    }

    .qty-box {
        width: 120px;
    }

    .cart-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .continue-shopping {
        justify-content: center;
    }

    .clear-cart {
        justify-content: center;
        width: 100%;
    }

    .summary-box {
        padding: 22px;
    }

    .summary-box h4 {
        font-size: 22px;
    }

    .summary-total .price {
        font-size: 24px;
    }

    .feature-box {
        padding: 18px;
    }

    .address-content {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .cart-section {
        padding: 30px 0;
    }
 .cart-item-content{
        gap:15px;
    }
    .cart-item {
        padding: 16px;
    }

    .product-details h5 {
        font-size: 18px;
    }

    .price {
        font-size: 17px;
    }

    .qty-box {
        width: 110px;
    }

    .checkout-btn {
        height: 52px;
        font-size: 16px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-box h6 {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 13px;
    }

    .address-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .add-address-btn {
        width: 100%;
        justify-content: center;
    }

    .action-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .buy-now-btn {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
 
/* ═══════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════ */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 22;
	background:
		radial-gradient(circle at 80% 12%, rgba(189, 250, 4, 0.22), transparent 32%),
		linear-gradient(180deg, #fffdf6 0%, var(--bg-cream) 100%);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
	padding: 96px 28px 42px;
	transform: translateX(100%);
	transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
	transform: translateX(0);
}

.mobile-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
	padding: 15px 18px;
	border-radius: 16px;
	color: var(--primary);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(15, 61, 46, 0.08);
	box-shadow: 0 12px 30px rgba(15, 61, 46, 0.06);
}

.mobile-nav a:hover {
	background: rgba(189, 250, 4, 0.18);
	color: var(--primary);
	transform: translateY(-2px);
}

.mobile-nav a:not(.mobile-nav-action)::after {
	content: '\f105';
	font-weight: 900;
	color: rgba(15, 61, 46, 0.42);
}

.mobile-nav .mobile-nav-action {
	justify-content: center;
	gap: 10px;
}

.mobile-nav .mobile-nav-ghost {
	margin-top: 14px;
	border: 1.5px solid var(--primary);
	background: rgba(255, 255, 255, 0.72);
	color: var(--primary);
}

.mobile-nav .mobile-nav-primary {
	border-color: var(--accent);
	background: var(--primary);
	color: var(--white);
	box-shadow: 0 16px 34px rgba(15, 61, 46, 0.22);
}

.mobile-nav .mobile-nav-primary i {
	font-size: 13px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */


@media(max-width:1199px) {
	.how-connector {
		display: none;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media(max-width:991px) {
	.section-pad {
		padding: 80px 0;
	}

	.hero-section {
		padding-top: 100px;
		min-height: auto;
		padding-bottom: 60px !important;
	}

	.hero-main-img {
		height: 380px;
	}

	.hero-pill-1,
	.hero-pill-2,
	.hero-pill-3 {
		display: none;
	}

	.feat-img-wrap {
		height: 360px;
		margin-bottom: 40px;
	}

	.feat-img-grid {
		grid-template-columns: 1fr;
	}

	.testi-grid {
		grid-template-columns: 1fr;
	}

	.testi-card.featured {
		transform: none;
	}

	.testi-card.featured:hover {
		transform: translateY(-6px);
	}

	.testi-proof {
		grid-template-columns: 1fr;
	}

	.science-stats {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-ctas {
		flex-direction: column;
		align-items: flex-start;
	}

	.corp-stat-row {
		flex-direction: column;
		gap: 16px;
	}

	.final-cta-btns {
		flex-direction: column;
		align-items: center;
	}

	.nav-links-list,
	.nav-actions {
		display: none;
	}

	.nav-hamburger {
		display: flex;
	}

	.testi-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.science-visual {
		min-height: auto;
		margin-bottom: 20px;
	}

	.science-hero-card {
		min-height: 320px;
	}

	.about-card {
		grid-template-columns: 1fr;
		padding: 14px;
	}

	.about-image {
		min-height: 360px;
	}

	.corporate-section {
		padding: 80px 0;
	}

	.corporate-section::before {
		inset: 18px 14px;
		border-radius: 26px;
	}

	.corp-img-wrap {
		height: 380px;
	}

	.corp-stat-row {
		grid-template-columns: 1fr;
	}

	.corp-floating-card {
		display: none;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}
}

@media(max-width:768px) {
	.section-pad {
		padding: 60px 0;
	}

	.hero-section {
		min-height: auto;
	}

	.hero-title {
		font-size: 52px;
	}

	.hero-card-wrap {
		display: none;
	}

	.feature-headline {
		font-size: 42px;
	}

	.about-body {
		font-size: 16px;
	}

	.about-section {
		padding: 80px 0;
	}

	.about-card {
		border-radius: 22px;
		padding: 12px;
	}

	.about-quote-mark {
		font-size: 88px;
		top: 18px;
		right: 12px;
	}

	.about-tags {
		margin-top: 28px;
	}

	.about-tag {
		width: 100%;
	}

	.about-proof-grid {
		grid-template-columns: 1fr;
	}

	.about-proof-item {
		min-height: 100px;
	}

	.final-cta-title {
		font-size: 52px;
	}

	.science-title {
		font-size: 48px;
	}

	.container-xl {
		padding: 0 20px;
	}

	.cta-section {
		padding: 80px 0;
	}

	.cta-sub {
		font-size: 17px;
		margin-bottom: 34px;
	}

	.btn-main,
	.btn-secondary-new {
		width: 100%;
		max-width: 320px;
	}

	.science-section {
		padding: 80px 0;
	}

	.science-visual {
		grid-template-columns: 1fr;
		padding: 12px;
		border-radius: 22px;
	}

	.science-hero-card {
		min-height: 340px;
	}

	.science-mini-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.science-img-card {
		height: 190px;
		border-radius: 14px;
	}

	.science-hero-overlay {
		left: 18px;
		right: 18px;
		bottom: 18px;
	}

	.science-hero-overlay .science-img-card-label {
		font-size: 28px;
	}

	.science-img-card-label {
		font-size: 20px;
		left: 16px;
		bottom: 16px;
	}

	.corporate-section .feature-headline {
		font-size: 42px;
	}

	.corporate-section .feature-list li {
		font-size: 13px;
		padding: 12px 14px;
	}
}

@media(max-width:575px) {
	.science-mini-grid {
		grid-template-columns: 1fr;
	}

	.science-img-card {
		height: 180px;
	}

	.science-stats {
		gap: 12px;
	}

	.science-stat {
		padding: 20px 18px;
	}
}

/* ═══════════════════════════════════════
   MISC DETAILS
═══════════════════════════════════════ */
.divider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	display: inline-block;
	margin: 0 10px;
	vertical-align: middle;
}

.green-line {
	display: inline-block;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--primary));
	border-radius: 2px;
	margin-bottom: 4px;
	vertical-align: middle;
	margin-right: 12px;
}

@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.count-animated {
	animation: countUp .6s ease forwards;
}

/* Hover glow for primary buttons */
.about-hero-btn {
	display: inli2ne-flex;
	align-items: center;
	font-weight: 500;
	gap: 10px;
	font-size: calc(14px + 0.3vw);
	padding: 12px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.3s, box-shadow 0.3s;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.about-hero-btn:hover {

	background-color: var(--primary);
	border: 2px solid var(--primary);
	color: var(--white);
}

.btn-feature.lime {
	position: relative;
	overflow: hidden;
}


.btn-feature.lime::after {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.4), rgba(15, 61, 46, 0.4));
	border-radius: inherit;
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.about-hero-btn:hover::after,
.btn-feature.lime:hover::after {
	opacity: 1;
}

/* Feature sections — alternating padding  */
.feat-content-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
}


/* Responsive headings styled individually above */

/* Custom selection */
::selection {
	background: rgba(189, 250, 4, 0.3);
	color: var(--primary);
}

/* Product pages: keep nhance Go/Pro aligned with the index palette */
.main-section {
	background: var(--white);
}

.main-section .section-pad:not(.nhance-go-hero-section):not(.nhance-pro-hero-section):not(.bg-cream):not(.bg-cream-light),
.main-section .pro-journey-section,
.main-section .quality-section {
	background: var(--white);
}


.nhance-go-hero-section,
.nhance-pro-hero-section {
	background: linear-gradient(to bottom,
			rgba(19, 68, 51, 0.5) 0%,
			rgba(22, 75, 56, 0.2) 15%,
			rgba(23, 78, 59, 0.01) 30%,
			transparent 45%) !important;
	padding: 140px 0 0 0px;
	position: relative;
	overflow: hidden;
}

.main-section .title-type-1,
.main-section .hero-title-new {
	color: var(--primary);
}

.main-section .title-type-1 .hl,
.main-section .hero-title-new .accent-text {
	background: linear-gradient(135deg, #0f3d2e, #216a4f);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.main-section .hero-eyebrow-new2,
.main-section .section-label-badge,
.main-section .section-pad>.container-xl>.text-center>.badge-new,
.main-section .section-pad .row .badge-new {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	background: rgba(15, 61, 46, 0.07);
	border: 1px solid rgba(15, 61, 46, 0.12);
	border-radius: 100px;
	padding: 8px 18px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
	box-shadow: 0 10px 30px rgba(15, 61, 46, 0.05);
}

.main-section .cta-section .badge-new {
	display: inline-block;
	background: rgba(189, 250, 4, 0.12);
	border: 1px solid rgba(189, 250, 4, 0.25);
	color: var(--accent);
}

.main-section,
.main-section .btn-plan-select {
	border: 1px solid var(--accent);
	background: linear-gradient(135deg, var(--accent) 0%, #d9ff33 100%);
	color: var(--primary);
	box-shadow: 0 12px 28px rgba(189, 250, 4, 0.25);
}

.main-section .btn-main:hover,
.main-section .btn-plan-select:hover {
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(189, 250, 4, 0.34);
}

.main-section .btn-secondary-new {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.1);
	color: var(--white);
}

.main-section .btn-secondary-new:hover {
	border-color: var(--accent);
	background: rgba(189, 250, 4, 0.15);
	color: var(--white);
}
 
/* Main popup animation */
@keyframes cartConfirmIn {
	0% {
		transform: scale(0.6) rotate(-8deg);
		opacity: 0;
	}

	60% {
		transform: scale(1.12) rotate(3deg);
		opacity: 1;
	}

	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}


/* Closing animation */
@keyframes cartConfirmOut {
	0% {
		transform: scale(1);
		opacity: 1;
	}

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


/* Expanding wave effect */
@keyframes wavePulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}

	70% {
		transform: scale(1.8);
		opacity: 0;
	}

	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}


/* Check icon floating bounce */
@keyframes checkBounce {
	0% {
		transform: translateY(2px) scale(1);
	}

	100% {
		transform: translateY(-4px) scale(1.08);
	}
}

@media(max-width:576px) {

	.cart-popup {
		right: 0px;
		top: 100px;
		width: 100%;
		padding: 22px;
		height: 100%;
	}

	.cart-actions {
		flex-direction: column;
	}

}

/* --------------Related Items------------ */

.related-items-wrapper {
	background: #fff;
	border-radius: 24px;
	padding-left: 30px;
	padding-right: 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}


.mini-title {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary);
	margin-bottom: 8px;
}


.related-items {
	display: flex;
	flex-direction: column;
	/* gap: 20px; */
}

.related-card {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px;
	border-radius: 20px;
	background: #f8fafc;
	transition: 0.35s ease;
	width: auto;
}

.related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.related-img {
	width: 110px;
	height: 110px;
	border-radius: 18px;
	overflow: hidden;
	flex-shrink: 0;
}

.related-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.5s ease;
}

.related-card:hover img {
	transform: scale(1.08);
}

.related-content {
	flex: 1;
}

.related-content h5 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111;
}

.related-content span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 14px;
}

.related-btn {
	border: none;
	padding: 12px 22px;
	border-radius: 50px;
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	transition: 0.3s ease;
}

.related-btn:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

.related-add {
	padding: 5px 18px !important;
	width: max-content !important;
}

@media(max-width:767px) {

	.related-items-wrapper {
		padding: 22px;
	}

	.section-head h3 {
		font-size: 28px;
	}

	.related-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.related-img {
		width: 100%;
		height: 220px;
	}

}

/* ----------------Nutrition POpup------------------------- */
/* Popup Background */

.nutrition-popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .65);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: .35s;
	z-index: 99999;
	padding: 20px;
}

.nutrition-popup.active {
	opacity: 1;
	visibility: visible;
}

/* Popup */

.nutrition-popup-content {
	width: 100%;
	max-width: 700px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 18px;
	padding: 35px;
	position: relative;
	animation: popupScale .35s ease;
}

@keyframes popupScale {

	from {
		transform: scale(.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}

}

.popup-close {
	position: absolute;
	top: 15px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #f3f3f3;
	cursor: pointer;
	font-size: 28px;
	transition: .3s;
}

.popup-close:hover {
	background: #0F3D2E;
	color: #fff;
}

.nutrition-popup h2 {
	font-size: 30px;
	color: #0F3D2E;
	margin-bottom: 5px;
}

.popup-subtitle {
	color: #666;
	margin-bottom: 25px;
}

/* Form */

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary);
}

.form-group label span {
	color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	font-size: 15px;
	transition: .3s;
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #0F3D2E;
	box-shadow: 0 0 0 3px rgba(15, 61, 46, .1);
}

textarea {
	resize: vertical;
}

.payment-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #F4F8F4;
	border: 2px dashed #0F3D2E;
	padding: 18px 20px;
	border-radius: 12px;
	margin: 25px 0;
}

.payment-box strong {
	color: #0F3D2E;
	font-size: 26px;
}

.book-btn {
	width: 100%;
	border: none;
	padding: 16px;
	background: var(--white);
	color: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 12px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

.book-btn:hover {
	background: var(--primary);
	color: var(--white);
}

/* Responsive */

@media(max-width:768px) {

	.nutrition-popup-content {
		padding: 25px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.nutrition-popup h2 {
		font-size: 24px;
	}

	.payment-box strong {
		font-size: 22px;
	}

}

/* ==================Partner With Us Popup Modal========================== */
.partner-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .65);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 99999;
	padding: 20px;
}

.partner-modal.active {
	opacity: 1;
	visibility: visible;
}

.partner-modal-content {
	background: #fff;
	width: 100%;
	max-width: 750px;
	max-height: 90vh;
	overflow: auto;
	border-radius: 18px;
	padding: 35px;
	position: relative;
}

.partner-close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 28px;
}

.partner-desc {
	margin-bottom: 20px;
	color: #666;
}

.benefits {
	background: #f7faf7;
	padding: 18px;
	border-radius: 12px;
	margin-bottom: 25px;
}

.benefits ul {
	padding-left: 20px;
	margin-top: 10px;
	list-style: disc;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.form-grid input,
textarea {
	width: 100%;
	padding: 13px;
	border: 1px solid #ddd;
	border-radius: 8px;
}

textarea {
	margin-bottom: 20px;
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: #0F3D2E;
	color: #fff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
}

.thank-you {
	text-align: center;
	padding: 40px 20px;
}

.thank-you h2 {
	color: #0F3D2E;
	margin-bottom: 15px;
}

@media(max-width:768px) {

	.form-grid {
		grid-template-columns: 1fr;
	}

	.partner-modal-content {
		padding: 25px;
	}

}

/* ---------------Plan Modal----------------- */
.plan-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 99999;
	padding: 20px;
}

.plan-modal.active {
	opacity: 1;
	visibility: visible;
}

.plan-modal-box {
	width: 100%;
	max-width: 700px;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 18px;
	padding: 35px;
	position: relative;
}

.plan-close {
	position: absolute;
	top: 15px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 28px;
}

.plan-title {
	color: #0F3D2E;
	margin-bottom: 5px;
}

.plan-price {
	font-size: 32px;
	color: #0F3D2E;
	font-weight: 700;
	margin-bottom: 25px;
}

.plan-section {
	margin: 20px 0;
}

.plan-section h4 {
	margin-bottom: 10px;
	color: #0F3D2E;
}

.plan-section ul {
	padding-left: 20px;
}

.plan-section li {
	margin-bottom: 8px;
}

.plan-section li i {
	color: var(--primary);
}

.bullet-list {
	list-style: disc;
	padding-left: 25px;
	margin: 15px 0;
}

.bullet-list li {
	display: list-item;
	margin-bottom: 8px;
	margin-left: 30px;
}

.plan-book {
	width: 100%;
	margin-top: 25px;
	background: #0F3D2E;
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 17px;
}

@media(max-width:768px) {

	.plan-modal-box {
		padding: 25px;
	}

	.plan-price {
		font-size: 26px;
	}

}

/* ----------------------------------------- */
.gut-test-modal {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 22px;
	background: rgba(15, 61, 46, 0.58);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}



.gut-test-modal {
	z-index: 10060;
}


.gut-test-modal.open {
	opacity: 1;
	pointer-events: auto;
}

.gut-test-card {
	position: relative;
	width: min(468px, 100%);
	max-height: min(760px, 92vh);
	overflow: auto;
	border-radius: 28px;
	background: var(--white);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
	transform: translateY(18px) scale(0.98);
	transition: transform 0.3s ease;
}


.gut-test-modal.open .gut-test-card {
	transform: translateY(0) scale(1);
}

.offer-popup-card {
	padding: 48px 34px 32px;
	text-align: center;
}


.gut-test-close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #ffffff;
	color: #000000;
}

/* ===== ADDITIONAL CSS FOR NHANCE GO LIFESTYLE FLOW ===== */

/* Unit toggle */
.gut-test-unit-toggle {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
	justify-content: center;
}

.unit-btn {
	padding: 3px 20px;
	border: 2px solid var(--accent, #0F3D2E);
	background: transparent;
	color: var(--accent, #0F3D2E);
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}


.unit-btn.active {
	background: var(--accent, #0F3D2E);
	color: var(--primary);
}

.unit-btn:hover {
	transform: scale(1.05);
	/* Slightly enlarges the button */
}


/* Measurement inputs */
.gut-test-measurement {
	margin-bottom: 16px;
}

label,
.unit-label {
	color: var(--accent);
}

.gut-test-card-option,
.gut-test-toggle,
.upgrade-message {
	color: var(--primary);
}

.gut-test-measurement label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.measurement-input {
	display: flex;
	align-items: center;
	gap: 8px;
}

.measurement-input .gut-test-input {
	flex: 1;
}

.measurement-input .unit-label {
	font-weight: 600;
	min-width: 30px;
}

/* Card grid for options */
.gut-test-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.gut-test-card-option {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-weight: 500;
	background: #f8f9fa;
}

.gut-test-card-option:hover {
	border-color: var(--accent, #0F3D2E);
	background: #f0f7f4;
}

.gut-test-card-option.selected {
	border-color: var(--accent);
	background: var(--primary);
	color: #fff;
}

.gut-test-card-option input {
	display: none;
}

/* Toggle groups */
.toggle-lable {
	background-color: #fff;
	padding: 10px;
	border-radius: 5px;
}

.form-label {
	color: var(--primary);
}

.gut-test-toggle {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-weight: 500;
}

.gut-test-toggle input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--accent, #0F3D2E);
}

.gut-test-sub-options {
	margin-top: 12px;
	padding: 12px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
}

/* Slider groups */
.gut-test-slider-group {
	margin-bottom: 16px;
}

.gut-test-gender {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gut-test-gender label {
	position: relative;
	cursor: pointer;
	margin: 0;
}

.gut-test-gender input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.gut-test-gender span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 140px;
	padding: 12px 24px;
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	color: #374151;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gut-test-gender label:hover span {
	transform: translateY(-2px);
	border-color: #0f3d2e;
	box-shadow: 0 8px 20px rgba(15, 61, 46, 0.12);
}

.gut-test-gender input[type="radio"]:checked+span {
	background: linear-gradient(135deg, #0f3d2e, #1d6b52);
	color: #fff;
	border-color: var(--accent);
	box-shadow: 0 10px 25px rgba(108, 252, 116, 0.25);
}

.gut-test-gender input[type="radio"]:checked+span::before {
	content: "✓";
	margin-right: 8px;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 576px) {
	.gut-test-gender {
		flex-direction: column;
	}

	.gut-test-gender span {
		width: 100%;
	}
}

.gut-test-slider-group input[type="range"] {
	width: 100%;
	height: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: #e0e0e0;
	border-radius: 3px;
	outline: none;
}

.gut-test-slider-group input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--accent, #0F3D2E);
	cursor: pointer;
}

/* Star rating */
.gut-test-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 16px;
	padding: 8px 12px;
	background: #f8f9fa;
	border-radius: 12px;
}

.star-label {
	cursor: pointer;
	font-size: 24px;
	color: #d3d3d3;
	transition: color 0.3s ease;
}

.star-label.active {
	color: #f5a623;
}

.star-label input {
	display: none;
}

.star-label:hover {
	color: #f5a623;
}

.rating-text {
	margin-left: auto;
	font-weight: 500;
	color: var(--text-muted, #666);
}

/* Metrics display */
.gut-test-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.metric-card {
	padding: 12px;
	background: #f8f9fa;
	border-radius: 12px;
	text-align: center;
}

.metric-card .metric-label {
	display: block;
	font-size: 12px;
	color: var(--text-muted, #666);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.metric-card .metric-value {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-color, #333);
	margin-top: 4px;
}

.metric-card .metric-value.warning {
	color: #dc3545;
}

.metric-card .metric-value.healthy {
	color: #28a745;
}

/* Result metrics */
.result-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	margin: 20px 0;
	padding: 16px;
	background: #f8f9fa;
	border-radius: 12px;
}

.metric-item {
	text-align: center;
}

.metric-item span {
	display: block;
	font-size: 12px;
	color: var(--text-muted, #666);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.metric-item strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--text-color, #333);
}

.metric-item strong.warning {
	color: #dc3545;
}

.metric-item strong.healthy {
	color: #28a745;
}

/* Upgrade section */
.result-upgrade {
	margin: 20px 0;
	padding: 20px;
	background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
	border-radius: 12px;
	border-left: 4px solid var(--accent, #0F3D2E);
	text-align: center;
}

.upgrade-message {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 12px;
}

.upgrade-message i {
	color: var(--primary);
	margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
	.gut-test-card-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}

	.gut-test-metrics {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	}

	.result-metrics {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}

/* Form label style */

.offer-popup-card h2 {
	margin: 0 0 10px;
	color: var(--primary);
	font-size: clamp(30px, 5vw, 38px);
	line-height: 1.05;
}

.offer-popup-card p {
	margin: 0 0 26px;
	color: var(--primary);
	font-size: 18px;
	font-weight: 700;
}

.offer-popup-form {
	display: grid;
	gap: 10px;
}

.offer-popup-form input {
	width: 100%;
	height: 54px;
	border: 1px solid rgba(15, 61, 46, 0.18);
	border-radius: 12px;
	padding: 0 15px;
	outline: 0;
}

.offer-popup-form input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(189, 250, 4, 0.22);
}

.offer-phone-row {
	display: flex;
	gap: 10px;
}

.offer-country {
	min-width: 76px;
	border: 1px solid rgba(15, 61, 46, 0.18);
	border-radius: 12px;
	background: var(--white);
	color: var(--primary);
	font-weight: 800;
}

.offer-submit {
	height: 54px;
	border-radius: 12px;
	background: var(--primary);
	color: var(--white);
	font-weight: 800;
}

.offer-no-thanks {
	margin-top: 16px;
	background: transparent;
	color: var(--text-muted);
	font-weight: 700;
}

.gut-test-card {
	width: min(880px, 100%);
	min-height: min(680px, 92vh);
	background: var(--primary);
	color: var(--white);
}

.gut-test-card video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.18;
}

.gut-test-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 61, 46, 0.92), rgba(15, 61, 46, 0.76));
}

.gut-test-brand,
.gut-test-progress,
.gut-test-step {
	position: relative;
	z-index: 1;
}

.gut-test-brand {
	padding: 24px 30px 14px;
	color: var(--accent);
	font-weight: 900;
	letter-spacing: 1px;
}

.gut-test-progress {
	height: 5px;
	margin: 0 30px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.16);
	overflow: hidden;
}

.gut-test-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: var(--accent);
	transition: width 0.3s ease;
}

.gut-test-step {
	padding: 34px 30px 38px;
}

.gut-test-kicker {
	color: var(--accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.gut-test-title {
	margin: 12px 0 24px;
	color: var(--white);
	font-size: clamp(30px, 5vw, 46px);
	line-height: 1.08;
}

.gut-test-form {
	display: grid;
	gap: 14px;
}

.gut-test-input,
.gut-test-option {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.10);
	color: var(--white);
}

.gut-test-input {
	min-height: 54px;
	padding: 0 16px;
	outline: 0;
}

.gut-test-input::placeholder {
	color: rgba(131, 128, 128, 0.62);
}

.gut-test-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 16px;
	cursor: pointer;
}

.gut-test-option.selected {
	border-color: var(--accent);
	background: rgba(189, 250, 4, 0.16);
}

.gut-test-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 24px;
}

.gut-test-next,
.gut-test-back {
	min-height: 46px;
	border-radius: 10px;
	padding: 0 22px;
	font-weight: 900;
}

.gut-test-next {
	background: var(--accent);
	color: var(--primary);

}

.gut-test-next:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.gut-test-back {
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
}

body.gut-test-open {
	overflow: hidden;
}

@media (max-width: 575px) {

	.offer-popup,
	.gut-test-modal {
		padding: 14px;
	}

	.offer-popup-card {
		padding: 46px 20px 28px;
		border-radius: 22px;
	}

	.gut-test-step {
		padding: 28px 20px 32px;
	}
}

/*=========================================
=          GUT HEALTH TEST MODAL          =
=========================================*/

.gut-test-input::placeholder {
	color: #8a8a8a;
	opacity: 1;
}

.gut-test-input::-webkit-input-placeholder {
	color: #8a8a8a;
}

.gut-test-input:-ms-input-placeholder {
	color: #8a8a8a;
}

/* Gender Section */
.gut-test-gender {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.gut-test-gender label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

/* Loading */
.gut-test-loading {
	text-align: center;
	padding: 50px 0;
}

.gut-test-loading-spinner {
	color: var(--accent);
	width: 3rem;
	height: 3rem;
	margin-bottom: 15px;
}

/* Result Header */
.gut-test-score {
	background: var(--accent);
	color: var(--primary);
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 14px;
	display: inline-block;
}

/* Nutrition Comparison */
.nutrition-comparison {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.nutrition-card {
	flex: 1;
	min-width: 220px;
	background: rgba(15, 61, 46, 0.04);
	border-radius: 20px;
	padding: 18px 16px;
	transition: all 0.2s ease;
}

.nutrition-card.active {
	border: 2px solid var(--accent);
}

.nutrition-card.inactive {
	border: 2px solid rgba(230, 177, 126, 0.3);
}

.nutrition-icon {
	background: #0f3d2e10;
	width: 70px;
	height: 70px;
	border-radius: 60px;
	margin: 0 auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
}

.nutrition-card h5 {
	margin: 0;
	color: var(--accent);
	text-align: center;
}

.nutrition-card p {
	font-size: 12px;
	color: #eff3f0;
	margin: 5px 0 0;
	text-align: center;
}

.nutrition-card ul {
	font-size: 13px;
	padding-left: 20px;
	margin: 12px 0;
	color: #85e704;
	line-height: 1.5;
}

.recommended-badge {
	background: var(--accent);
	color: var(--primary);
	text-align: center;
	border-radius: 30px;
	padding: 5px;
	font-size: 12px;
	font-weight: 600;
	margin-top: 8px;
}

.empty-space {
	height: 28px;
}

/* Result Header Styling */
.result-header {
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.1) 0%, rgba(79, 172, 254, 0.05) 100%);
	border-radius: 16px;
	padding: 30px 24px;
	margin-bottom: 20px;
	border: 1px solid rgba(189, 250, 4, 0.2);
	animation: slideInDown 0.6s ease-out;
}

.result-header .gut-test-score {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	animation: scaleIn 0.5s ease-out 0.2s backwards;
}

.result-header h3 {
	font-size: clamp(28px, 5vw, 42px) !important;
	font-weight: 900 !important;
	color: var(--accent) !important;
	margin-bottom: 10px !important;
	text-shadow: none !important;
	animation: slideInUp 0.6s ease-out 0.1s backwards;
}

.result-header p {
	font-size: 16px !important;
	color: #e0e0e0 !important;
	margin: 0 !important;
	font-weight: 600;
	animation: slideInUp 0.6s ease-out 0.2s backwards;
}

/* Result Summary Styling */
.result-summary {
	background: rgba(189, 250, 4, 0.08);
	border-left: 4px solid var(--accent);
	padding: 16px 20px;
	border-radius: 8px;
	color: #d5d5d5 !important;
	font-size: 14px !important;
	line-height: 1.6;
	margin-bottom: 24px !important;
	animation: slideInUp 0.6s ease-out 0.3s backwards;
}

.nutrition-card {
	flex: 1;
	min-width: 220px;
	background: rgba(15, 61, 46, 0.04);
	border-radius: 20px;
	padding: 24px 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	animation: slideInUp 0.6s ease-out 0.4s backwards;
}

.nutrition-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.05) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.nutrition-card:hover::before {
	opacity: 1;
}

.nutrition-card.active {
	border: 2px solid var(--accent);
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(189, 250, 4, 0.2);
}

.nutrition-card.inactive {
	border: 2px solid rgba(230, 177, 126, 0.3);
	opacity: 0.7;
}

.nutrition-card.inactive:hover {
	opacity: 0.85;
	border-color: rgba(230, 177, 126, 0.5);
}

.nutrition-icon {
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.15) 0%, rgba(79, 172, 254, 0.08) 100%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: var(--accent);
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(189, 250, 4, 0.15);
}

.nutrition-card.active .nutrition-icon {
	transform: scale(1.1);
}

.nutrition-card h5 {
	margin: 16px 0 6px;
	color: var(--accent);
	text-align: center;
	font-size: 18px !important;
	font-weight: 700;
}

.nutrition-card p {
	font-size: 13px;
	color: #eff3f0;
	margin: 0 0 14px;
	text-align: center;
	font-weight: 500;
}

.nutrition-card ul {
	font-size: 13px;
	padding-left: 20px;
	margin: 14px 0;
	color: #d5d5d5;
	line-height: 1.6;
	list-style: none;
}

.nutrition-card li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 8px;
}

.nutrition-card li::before {
	content: '✓';
	position: absolute;
	left: -12px;
	color: var(--accent);
	font-weight: bold;
}

.recommended-badge {
	background: linear-gradient(135deg, var(--accent) 0%, #a8d500 100%);
	color: var(--primary);
	text-align: center;
	border-radius: 30px;
	padding: 10px 12px;
	font-size: 12px;
	font-weight: 700;
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	box-shadow: 0 4px 12px rgba(189, 250, 4, 0.3);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 4px 12px rgba(189, 250, 4, 0.3);
	}

	50% {
		box-shadow: 0 4px 20px rgba(189, 250, 4, 0.5);
	}
}

/* Recommendation Box */
.result-recommendation {
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.08) 0%, rgba(79, 172, 254, 0.05) 100%);
	border-radius: 16px;
	padding: 28px 24px;
	border: 1px solid rgba(189, 250, 4, 0.15);
	animation: slideInUp 0.6s ease-out 0.5s backwards;
}

.result-image {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.result-image img {
	max-height: 240px;
	max-width: 100%;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
	transition: transform 0.3s ease;
}

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

.result-content h5 {
	color: var(--accent);
	font-size: 20px !important;
	font-weight: 700 !important;
	margin-bottom: 12px !important;
}

.result-content p {
	color: #d5d5d5 !important;
	font-size: 14px !important;
	line-height: 1.6;
	margin-bottom: 16px !important;
}

.result-content ul {
	padding-left: 24px;
	margin: 12px 0 !important;
	list-style: none;
}

.result-content li {
	color: #d5d5d5 !important;
	font-size: 13px;
	margin-bottom: 10px;
	position: relative;
	padding-left: 8px;
}

.result-content li::before {
	content: '→';
	position: absolute;
	left: -16px;
	color: var(--accent);
	font-weight: bold;
}

/* Buttons */
.gut-test-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	animation: slideInUp 0.6s ease-out 0.6s backwards;
}

.gut-test-actions button {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gut-test-actions button i {
	transition: transform 0.3s ease;
}

.gut-test-actions button:hover i {
	transform: translateX(2px);
}

.gut-test-restart {
	padding: 12px 24px;
	cursor: pointer;
	background: transparent;
	border: 1.5px solid var(--accent);
	border-radius: 40px;
	color: var(--accent);
	font-weight: 600;
	font-size: 14px;
}

.gut-test-restart:hover {
	background: rgba(189, 250, 4, 0.1);
	box-shadow: 0 4px 12px rgba(189, 250, 4, 0.2);
}

.btn-buy-now {
	padding: 12px 28px;
	cursor: pointer;
	background: linear-gradient(135deg, var(--accent) 0%, #a8d500 100%);
	color: var(--primary);
	border: none;
	border-radius: 40px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(189, 250, 4, 0.3);
}

.btn-buy-now:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(189, 250, 4, 0.4);
}

.btn-accent {
	padding: 12px 28px;
	cursor: pointer;
	background: rgba(15, 61, 46, 0.8);
	color: var(--accent);
	border: 1.5px solid var(--accent);
	border-radius: 40px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.btn-accent:hover {
	background: var(--accent);
	color: var(--primary);
	box-shadow: 0 4px 12px rgba(189, 250, 4, 0.3);
}

/* Animations */
@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.result-header {
		padding: 20px 16px;
	}

	.result-header h3 {
		font-size: clamp(24px, 4vw, 32px) !important;
	}

	.gut-test-score {
		font-size: 12px !important;
		padding: 6px 12px !important;
	}

	.result-summary {
		font-size: 13px !important;
		padding: 12px 16px !important;
		margin-bottom: 16px !important;
	}

	.nutrition-comparison {
		flex-direction: column;
		gap: 16px;
	}

	.nutrition-card {
		padding: 20px 14px;
	}

	.nutrition-icon {
		width: 70px;
		height: 70px;
		font-size: 28px;
	}

	.nutrition-card h5 {
		font-size: 16px !important;
	}

	.nutrition-card ul {
		font-size: 12px;
		margin: 10px 0;
	}

	.result-recommendation {
		padding: 16px;
	}

	.result-image img {
		max-height: 180px;
	}

	.result-content h5 {
		font-size: 16px !important;
	}

	.result-content p {
		font-size: 13px !important;
	}

	.gut-test-actions {
		flex-direction: column;
		gap: 10px;
	}

	.gut-test-actions button {
		width: 100%;
		font-size: 13px;
		padding: 10px 16px;
	}

	.recommended-badge {
		font-size: 11px;
		padding: 8px 10px;
	}
}

@media (max-width: 480px) {
	.result-header {
		padding: 16px 12px;
		border-radius: 12px;
	}

	.result-header h3 {
		font-size: 22px !important;
		margin-bottom: 8px !important;
	}

	.result-header p {
		font-size: 14px !important;
	}

	.gut-test-score {
		font-size: 11px !important;
		padding: 5px 10px !important;
	}

	.result-summary {
		font-size: 12px !important;
		padding: 10px 12px !important;
		margin-bottom: 12px !important;
	}

	.nutrition-card {
		padding: 16px 12px;
		border-radius: 16px;
	}

	.nutrition-icon {
		width: 60px;
		height: 60px;
		font-size: 24px;
		margin-bottom: 12px;
	}

	.nutrition-card h5 {
		font-size: 15px !important;
		margin: 12px 0 4px;
	}

	.nutrition-card p {
		font-size: 12px;
	}

	.nutrition-card ul {
		font-size: 11px;
		margin: 8px 0;
		padding-left: 16px;
	}

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

	.result-recommendation {
		padding: 12px;
		border-radius: 12px;
	}

	.result-image {
		margin-bottom: 16px;
	}

	.result-image img {
		max-height: 150px;
	}

	.result-content h5 {
		font-size: 14px !important;
		margin-bottom: 8px !important;
	}

	.result-content p {
		font-size: 12px !important;
		margin-bottom: 8px !important;
	}

	.result-content ul {
		padding-left: 16px;
		margin: 8px 0 !important;
	}

	.result-content li {
		font-size: 11px;
		margin-bottom: 6px;
	}

	.gut-test-actions {
		gap: 8px;
	}

	.gut-test-actions button {
		font-size: 12px;
		padding: 9px 12px;
	}
}

/* ═══════════════════════════════════════
   EXPERT / CONTACT PAGE — Classic Modern Redesign
═══════════════════════════════════════ */
.expert-hero {
	min-height: 100vh;
	padding: 140px 24px 100px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;

	background: linear-gradient(to bottom,
			rgba(19, 68, 51, 0.5) 0%,
			rgba(22, 75, 56, 0.2) 15%,
			rgba(23, 78, 59, 0.01) 30%,
			transparent 45%);
}

@keyframes expertBlob1 {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
	}

	50% {
		transform: scale(1.08) translate(-20px, 15px);
	}
}

@keyframes expertBlob2 {

	0%,
	100% {
		transform: scale(1) translate(0, 0);
	}

	50% {
		transform: scale(1.06) translate(15px, -10px);
	}
}

/* Watermark text */
.expert-hero .watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: clamp(100px, 18vw, 260px);
	color: rgba(15, 61, 46, 0.5);
	font-family: serif;
	white-space: nowrap;
	pointer-events: none;
	letter-spacing: 6px;
	user-select: none;
}

/* ── Container ── */
.expert-container {
	width: 100%;
	max-width: 1280px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 64px;
	align-items: start;
	position: relative;
	z-index: 2;
}

/* ═══════════ LEFT — Info Panel ═══════════ */

/* Tag / eyebrow */
.expert-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 20px;
	background: rgba(15, 61, 46, 0.07);
	border: 1px solid rgba(15, 61, 46, 0.13);
	border-radius: 100px;
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 26px;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px rgba(15, 61, 46, 0.06);
	transition: var(--transition);
}

.expert-tag:hover {
	background: rgba(15, 61, 46, 0.12);
	box-shadow: 0 8px 24px rgba(15, 61, 46, 0.12);
}

.expert-tag i {
	color: var(--accent);
	font-size: 13px;
}

/* Title */
.expert-title {
	font-weight: 500;
	font-size: clamp(40px, 5.5vw, 66px);
	line-height: 1.06;
	color: var(--primary);
	margin-bottom: 22px;
	letter-spacing: 0.5px;
}

.expert-title span {
	background: linear-gradient(135deg, #5c9000 0%, #7dc200 50%, #BDFA04 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Description */
.expert-desc {
	max-width: 560px;
	color: var(--text-muted);
	font-size: 16px;
	line-height: 1.95;
	margin-bottom: 42px;
}

/* ── Contact Cards ── */
.contact-grid {
	display: grid;
	gap: 16px;
}

.contact-card {
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 26px 28px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 32px rgba(15, 61, 46, 0.07), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--accent), var(--primary));
	border-radius: 4px 0 0 4px;
	opacity: 0;
	transition: var(--transition);
}

.contact-card:hover {
	transform: translateY(-6px) translateX(4px);
	box-shadow: 0 20px 50px rgba(15, 61, 46, 0.13), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	border-color: rgba(189, 250, 4, 0.35);
}

.contact-card:hover::before {
	opacity: 1;
}

.contact-top {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.contact-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--primary) 0%, #1a5c42 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 19px;
	box-shadow: 0 10px 24px rgba(15, 61, 46, 0.20);
	flex-shrink: 0;
	transition: var(--transition);
}

.contact-card:hover .contact-icon {
	transform: rotate(-6deg) scale(1.05);
	box-shadow: 0 14px 30px rgba(15, 61, 46, 0.28);
}

.contact-card h4 {
	color: var(--primary);
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 1px;

	letter-spacing: 0.3px;
}

.contact-card .contact-top p {
	font-size: 12px;
	color: var(--text-muted);
	margin: 0;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.contact-card>p {
	color: var(--text-muted);
	font-size: 13.5px;
	line-height: 1.65;
	margin: 0;
	padding-left: 4px;
}

.contact-card a {
	color: var(--primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	padding-left: 4px;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.contact-card a::after {
	content: '→';
	opacity: 0;
	transform: translateX(-6px);
	transition: var(--transition);
	font-size: 13px;
}

.contact-card a:hover {
	color: #5c9000;
}

.contact-card a:hover::after {
	opacity: 1;
	transform: translateX(0);
}

/* ── Trust Badges ── */
.trust-badge {
	margin-top: 36px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.trust-badge span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(15, 61, 46, 0.10);
	padding: 10px 18px;
	border-radius: 100px;
	color: var(--primary);
	font-size: 13px;
	font-weight: 700;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 14px rgba(15, 61, 46, 0.06);
	transition: var(--transition);
	cursor: default;
}

.trust-badge span:hover {
	background: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(15, 61, 46, 0.22);
}

.trust-badge span:hover i {
	color: var(--accent);
}

.trust-badge i {
	color: #6aab00;
	font-size: 14px;
	transition: var(--transition);
}

/* ═══════════ RIGHT — Form Panel ═══════════ */
.expert-form-wrap {
	position: sticky;
	top: 100px;
}

.expert-form {
	background: linear-gradient(145deg, #0d3626 0%, #0F3D2E 40%, #10432f 70%, #0a2e22 100%);
	padding: 50px 46px;
	border-radius: 32px;
	box-shadow:
		0 40px 90px rgba(7, 28, 21, 0.32),
		0 0 0 1px rgba(189, 250, 4, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
	position: relative;
	overflow: hidden;
}

/* Form decorative elements */
.expert-form::before {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 250, 4, 0.12) 0%, transparent 70%);
	top: -120px;
	right: -100px;
	pointer-events: none;
}

.expert-form::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 250, 4, 0.07) 0%, transparent 70%);
	bottom: -60px;
	left: -60px;
	pointer-events: none;
}

/* Subtle grid pattern overlay */
.expert-form .form-pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.form-title {
	color: var(--white);
	text-align: center;
	font-weight: 500;
	font-size: clamp(32px, 4vw, 48px);
	margin-bottom: 8px;
	position: relative;
	z-index: 2;
	letter-spacing: 0.5px;
}

.form-title .accent-word {
	color: var(--accent);
}

.form-subtitle {
	color: rgba(255, 255, 255, 0.62);
	margin-bottom: 32px;
	font-size: 13px;
	letter-spacing: 0.5px;
	position: relative;
	z-index: 2;
}

/* Divider under subtitle */
.form-divider {
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), #8fc800);
	border-radius: 2px;
	margin: 0 auto 30px;
	position: relative;
	z-index: 2;
}

.form-group {
	margin-bottom: 16px;
	position: relative;
	z-index: 2;
}

/* Input icon — must sit above the input field */
.form-group .fi-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(189, 250, 4, 0.65);
	font-size: 14px;
	pointer-events: none;
	z-index: 5;
	transition: color 0.3s ease;
	line-height: 1;
}

/* Textarea icon sits at the top */
.form-group:has(textarea) .fi-icon {
	top: 18px;
	transform: none;
}

.expert-form input,
.expert-form select,
.expert-form textarea {
	width: 100%;
	border: none;
	outline: none;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 16px 20px 16px 46px;
	border-radius: 14px;
	font-size: 14px;
	transition: var(--transition);
	backdrop-filter: blur(8px);
	position: relative;
	z-index: 2;
}

.expert-form textarea {
	resize: none;
	height: 130px;
	padding-top: 16px;
	line-height: 1.6;
}

.expert-form input::placeholder,
.expert-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.42);
	font-size: 13.5px;
}

.expert-form select {
	color: rgba(255, 255, 255, 0.7);
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(189,250,4,0.7)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
}

.expert-form option {
	color: #1a2e14;
	background: #fff;
}

.expert-form input:focus,
.expert-form textarea:focus,
.expert-form select:focus {
	border-color: rgba(189, 250, 4, 0.50);
	background: rgba(255, 255, 255, 0.11);
	box-shadow: 0 0 0 3px rgba(189, 250, 4, 0.08);
}

.expert-form .form-group:focus-within .fi-icon {
	color: var(--accent);
}

/* Submit button */
.submit-btn {
	width: 100%;
	border: none;
	cursor: pointer;
	background: linear-gradient(135deg, #BDFA04 0%, #d4ff3a 50%, #c8f510 100%);
	color: #0d2800;
	padding: 17px 24px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: var(--transition);
	margin-top: 8px;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 12px 28px rgba(189, 250, 4, 0.22);
}

.submit-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(189, 250, 4, 0.36);
	background: linear-gradient(135deg, #d4ff3a 0%, #BDFA04 100%);
}

.submit-btn:active {
	transform: translateY(-1px);
}

.submit-btn i {
	font-size: 13px;
	transition: transform 0.3s ease;
}

.submit-btn:hover i {
	transform: translateX(4px);
}

/* Privacy note */
.privacy-text {
	text-align: center;
	margin-top: 18px;
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.42);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	position: relative;
	z-index: 2;
}

.privacy-text i {
	color: rgba(189, 250, 4, 0.55);
	font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
	.expert-container {
		gap: 44px;
	}

	.expert-form {
		padding: 42px 36px;
	}
}

@media (max-width: 991px) {
	.expert-hero {
		padding: 120px 20px 80px;
	}

	.expert-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.expert-form-wrap {
		position: static;
	}

	.expert-title {
		font-size: 46px;
	}

	.form-title {
		font-size: 38px;
	}

	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (max-width: 640px) {
	.expert-hero {
		padding: 110px 16px 70px;
	}

	.expert-form {
		padding: 34px 24px;
		border-radius: 24px;
	}

	.expert-title {
		font-size: 36px;
	}

	.form-title {
		font-size: 30px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-card {
		padding: 20px 22px;
	}

	.trust-badge span {
		font-size: 12px;
		padding: 9px 14px;
	}
}


/* --------------NHANCE GO And NHANCE PRO CSS--------------------- */

/* ----------------------------------------
       QUALITY SECTION (your provided CSS)
    ---------------------------------------- */
.quality-section {
	overflow: hidden;
	padding: 96px 0;
	background: var(--white);
}

.quality-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
	align-items: center;
	gap: clamp(48px, 7vw, 96px);
}

.quality-content h2 {
	margin: 0 0 24px;
	color: var(--primary);
	font-size: clamp(42px, 5vw, 58px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0;
}

.quality-desc {
	max-width: 690px;
	margin: 0 0 34px;
	color: var(--primary);
	font-size: 17px;
	line-height: 1.55;
}

.quality-checks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 46px;
	max-width: 760px;
	margin-bottom: 40px;
}

.quality-check {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 13px;
	align-items: start;
	color: var(--primary);
	font-size: 16px;
	line-height: 1.35;
}

.quality-check i {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border: 2px solid var(--secondary);
	border-radius: 50%;
	color: var(--secondary);
	font-size: 11px;
}

.quality-features {
	margin-bottom: 20px;
}

.quality-badge {
	display: grid;
	justify-content: center;
	align-items: center;
	justify-items: center;
	padding: 20px;
	border: 1px solid rgba(20, 85, 4, 0.3);
	border-radius: 12px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;

}

.quality-badge:hover {
	box-shadow: 0 12px 24px rgba(20, 85, 4, 0.3);
	transform: translateY(-4px);

}

.quality-badge span {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 2px solid var(--primary);
	border-radius: 50%;
	color: var(--primary);
	font-size: 22px;
}

.quality-badge strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	text-transform: uppercase;
}

.quality-image {
	overflow: hidden;
	min-height: 530px;
	border-radius: 24px;
	background: var(--bg-light);
	position: relative;
	padding: 20px;
}

.quality-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scaleX(-1) !important;

}


.quality-feature-card {
	background: white;
	padding: 20px;
	border-radius: 16px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(15, 61, 46, 0.08);
	height: 100%;
}

.quality-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(20, 85, 4, 0.3);
	border: 1px solid rgba(20, 85, 4, 0.3);

}

.quality-feature-card span {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: rgba(15, 61, 46, 0.08);
	border-radius: 12px;
	color: var(--primary);
	font-size: 24px;
}

.quality-feature-card h5 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--primary);
}

.quality-feature-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.quality-stats {
	display: flex;
	gap: 16px;
	margin-top: 24px;
	justify-content: center;
}

.quality-stat-box {
	background: white;
	padding: 16px 24px;
	border-radius: 16px;
	text-align: center;
	flex: 1;
	border: 1px solid rgba(15, 61, 46, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.quality-stat-box h3 {
	font-size: 24px;
	font-weight: 800;
	color: var(--primary);
	margin: 0 0 4px 0;
}

.quality-stat-box p {
	font-size: 12px;
	color: #666;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.quality-image-wrap {
	border-radius: 24px;
	overflow: hidden;
}

/* Responsive - Bootstrap overrides and extra */
@media (max-width: 991px) {
	.quality-section {
		padding: 72px 0;
	}

	.quality-image,
	.quality-image img {
		min-height: 420px;
	}

	.title-type-1 {
		font-size: 32px;
	}

	.quality-stats {
		margin-bottom: 24px;
	}
}

@media (max-width: 768px) {
	.quality-feature-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.quality-feature-card span {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.quality-stat-box h3 {
		font-size: 20px;
	}

	.quality-badges {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.quality-section {
		padding: 56px 0;
	}

	.quality-checks,
	.quality-badges {
		grid-template-columns: 1fr;
	}

	.quality-badges {
		gap: 20px;
	}

	.quality-badge {
		justify-items: start;
		grid-template-columns: 48px 1fr;
		align-items: center;
		text-align: left;
	}

	.quality-stats {
		flex-direction: column;
	}

	.title-type-1 {
		font-size: 28px;
	}

	.quality-desc {
		font-size: 15px;
	}
}

/* Animation classes */
.reveal-zoom {
	transition: all 0.6s ease;
}

.reveal-left {
	transition: all 0.6s ease;
}

.animate-float {
	animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

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

/* Fixed Floating Info */
.hero-floating-info {
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1000;
}

.info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--white);
	font-size: 21px;
	transition: all 0.3s ease;
}

.info-icon:hover {
	color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(189, 250, 4, 0.4);
}

/* Offer Gift Launcher */
.offer-gift-widget {
	position: fixed;
	left: 24px;
	top: 90%;
	z-index: 1005;
	transform: translateY(-50%);
}

.offer-gift-button {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 0;
	border-radius: 50%;
	background: var(--gradient-accent);
	color: var(--white);
	font-size: 24px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-gift-button:hover {
	transform: scale(1.08);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.offer-gift-close {
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 2px solid var(--white);
	border-radius: 50%;
	background: var(--dark);
	color: var(--white);
	font-size: 12px;
	cursor: pointer;
}

.offer-gift-widget.hide {
	display: none;
}

/* Offer Popup */
.offer-popup {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.68);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.offer-popup.open {
	opacity: 1;
	pointer-events: auto;
}

.offer-popup-card {
	position: relative;
	width: min(468px, 100%);
	border-radius: 28px;
	background: var(--white);
	padding: 54px 32px 36px;
	color: #080808;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	transform: translateY(18px) scale(0.97);
	transition: transform 0.3s ease;
}

.offer-popup.open .offer-popup-card {
	transform: translateY(0) scale(1);
}

.offer-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	color: #222;
	font-size: 22px;
	cursor: pointer;
}

.offer-popup-card h2 {
	margin: 0 0 10px;
	font-size: clamp(30px, 5vw, 38px);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: 0;
}

.offer-popup-card p {
	margin: 0 0 26px;
	color: var(--primary);
	font-size: 20px;
	font-weight: 800;
	text-align: center;
}

.offer-popup-form {
	display: grid;
	gap: 10px;
}

.offer-popup-form input {
	width: 100%;
	height: 56px;
	border: 1px solid #a8a8a8;
	border-radius: 24px;
	background: var(--white);
	color: #222;
	font-size: 16px;
	outline: none;
	padding: 0 16px;
}

.offer-popup-form input:focus {
	border-color: #20d49b;
	box-shadow: 0 0 0 1px #20d49b;
}

.offer-phone-row {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 8px;
}

.offer-country {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 56px;
	border: 1px solid #a8a8a8;
	border-radius: 24px;
	background: var(--white);
	color: #222;
	cursor: pointer;
}

.offer-country span {
	font-size: 20px;
	line-height: 1;
}

.offer-submit {
	height: 52px;
	border: 0;
	border-radius: 24px;
	background: var(--gradient-accent);
	color: var(--white);
	font-size: 21px;
	font-weight: 800;
	cursor: pointer;
}

.offer-no-thanks {
	display: block;
	margin: 20px auto 0;
	border: 0;
	background: transparent;
	color: #444;
	font-size: 16px;
	cursor: pointer;
}

@media (max-width: 480px) {
	.offer-popup {
		padding: 16px;
	}

	.offer-popup-card {
		border-radius: 22px;
		padding: 48px 20px 30px;
	}

	.offer-popup-card p {
		font-size: 17px;
	}
}

/* Gut Health Test Modal */
/* ------------------------------------Quiz Section (modal core)----------------------------------- */
body.gut-test-open {
	overflow: hidden;
}

.gut-test-modal {
	position: fixed;
	inset: 0;
	z-index: 10060;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(51, 87, 75, 0.68);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	overflow-y: auto;
	backdrop-filter: blur(5px);
}

.gut-test-modal.open {
	opacity: 1;
	pointer-events: auto;
}

.gut-test-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid var(--glass-border);
	background: var(--gradient-card);
	box-shadow: var(--shadow-main);
	color: var(--text-main);
	width: min(720px, 92vw);
	max-height: 90vh;
	display: flex;
	flex-direction: column;

}

/* VIDEO background */
.gut-test-card video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -3;
	opacity: 0.3 !important;
	backface-visibility: visible !important;
}

/* Dark overlay with subtle lime glow */
.gut-test-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(5, 133, 11, 0.4));
	z-index: -2;
}

/* Close Button */
.gut-test-close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 10;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--border-light);
	border-radius: 50%;
	background: var(--brand-green);
	color: var(--white);
	backdrop-filter: blur(10px);
	cursor: pointer;
	transition: var(--transition);
}

.gut-test-close:hover {
	background: var(--accent);
	color: var(--primary);
	transform: rotate(90deg) scale(1.08);
	box-shadow: 0 0 12px rgba(189, 250, 4, 0.7);
}

/* Brand */
.gut-test-brand {
	padding: 26px 64px 14px;
	text-align: center;
	color: var(--accent);
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Progress Bar */
.gut-test-progress {
	height: 6px;
	margin: 0 34px;
	overflow: hidden;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
}

.gut-test-progress span {
	display: block;
	width: 0%;
	height: 100%;
	border-radius: inherit;
	background: var(--gradient-accent);
	box-shadow: 0 0 20px rgba(189, 250, 4, 0.8);
	transition: width 0.35s ease;
}

.gut-test-step {
	overflow-y: auto;
	padding: 24px 34px 34px;
	flex: 1;
	scrollbar-width: thin;
}

/* custom scroll */
.gut-test-step::-webkit-scrollbar {
	width: 5px;
}

.gut-test-step::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}

.gut-test-step::-webkit-scrollbar-thumb {
	background: var(--accent);
	border-radius: 10px;
}

.gut-test-kicker {
	margin-bottom: 10px;
	color: #f3e1a0;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.3);
	display: inline-block;
	padding: 0 8px;
	border-radius: 20px;
}

.gut-test-title {
	margin: 0 0 22px;
	color: #FFFFFF;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -0.2px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.gut-test-form {
	display: grid;
	gap: 12px;
}

.gut-test-input,
.gut-test-option {
	width: 100%;
	min-height: 56px;
	border: 1px solid rgba(15, 61, 46, 0.2);
	border-radius: var(--radius-sm);
	background: var(--white);
	color: #050505;
	font-size: 16px;
	transition: all 0.2s;
}

.gut-test-input {
	outline: none;
	padding: 0 18px;
}

.gut-test-input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(189, 250, 4, 0.3);
}

.gut-test-input.is-invalid,
.gut-test-input.is-invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.16);
}

.gut-test-card-grid.is-invalid {
	padding: 8px;
	border: 1px solid #dc3545;
	border-radius: 10px;
	background: rgba(220, 53, 69, 0.08);
}

.gut-field-error {
	display: block;
	width: 100%;
	margin: 0;
	padding: 9px 12px;
	border: 1px solid #f1aeb5;
	border-left: 4px solid #dc3545;
	border-radius: 8px;
	background: #f8d7da;
	color: #842029 !important;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
}

.gut-test-measurement .gut-field-error,
.gut-test-gender+.gut-field-error {
	margin-top: 6px;
}

.gut-test-option {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
	background: rgba(255, 255, 240, 0.95);
	backdrop-filter: blur(2px);
}

.gut-test-option:hover,
.gut-test-option.selected {
	border-color: var(--accent);
	background: #fffbe8;
	transform: translateY(-1px);
	box-shadow: 0 6px 12px -8px rgba(0, 0, 0, 0.2);
}

.gut-test-option input {
	flex: 0 0 auto;
	accent-color: #765718;
	width: 20px;
	height: 20px;
}

.gut-test-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 28px;
}

.gut-test-back,
.gut-test-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border-radius: 100px;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gut-test-back {
	border: 1px solid rgba(189, 250, 4, 0.6);
	background: transparent;
	color: var(--accent);
	padding: 0 22px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(4px);
}

.gut-test-back:hover {
	background: rgba(189, 250, 4, 0.2);
	border-color: var(--accent);
	color: #fff;
}

.gut-test-next {
	flex: 1;
	border: 0;
	background: var(--gradient-accent);
	color: var(--primary);
	font-weight: 800;
	padding: 0 28px;
	box-shadow: -1px 0px 7px var(--accent);
}

.gut-test-next:hover:not(:disabled) {
	transform: scale(0.98);
	filter: brightness(1.02);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gut-test-next:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.gut-test-segment {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	border-radius: 8px;
}

.gut-test-segment button {
	min-height: 48px;
	border: 0;
	background: transparent;
	color: #2c3e2b;
	font-weight: 700;
	cursor: pointer;
	transition: 0.1s;
}

.gut-test-segment button.active {
	background: #fffbe8;
	color: #765718;
	box-shadow: inset 0 0 0 2px #765718;
}

/* result styling */
.gut-test-result {
	display: grid;
	gap: 18px;
}

.gut-test-score {
	display: inline-flex;
	width: fit-content;
	border-radius: 100px;
	background: var(--accent);
	color: var(--primary);
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 900;
}

.gut-test-result h3 {
	margin: 0;
	color: #ffffff !important;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 900;
	line-height: 1.2;
	text-shadow: 0 1px 2px black;
}

.gut-test-result p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.gut-test-nutrition {
	display: grid;
	gap: 12px;
	padding: 20px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(6px);
	border: 1px solid var(--accent);
}

.gut-test-nutrition strong {
	color: var(--primary);
	font-size: 18px;
}

.gut-test-nutrition ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0 0 0 20px;
}

.gut-test-nutrition li {
	display: flex;
	gap: 10px;
	color: #1e3a2f;
	font-size: 14px;
	line-height: 1.45;
	list-style: none;
}

.gut-test-nutrition li::before {
	content: '\f00c';
	color: var(--secondary);
	font-weight: 900;
	margin-right: 8px;
}

.gut-test-note {
	color: #cfcfcf !important;
	font-size: 12px !important;
}

@media (max-width: 640px) {
	.gut-test-card {
		max-height: 85vh;
	}

	.gut-test-brand {
		padding: 20px 52px 10px;
		font-size: 22px;
	}

	.gut-test-progress {
		margin: 0 18px;
	}

	.gut-test-step {
		padding: 20px 18px 24px;
	}

	.gut-test-actions {
		flex-direction: column-reverse;
	}

	.gut-test-back,
	.gut-test-next {
		width: 100%;
	}
}

/* Animations */
/* -------------------------------------
          NHANCE GO PAGE CSS START
---------------------------------------- */
/* ---------------------------------- */
.nhance-go-hero {
	position: relative;
	min-height: 700px;
	display: flex;
	align-items: center;
	overflow: hidden;

	background-image:
		linear-gradient(90deg, rgba(8, 28, 21, 0.82) 0%, rgba(8, 28, 21, 0.58) 45%, rgba(8, 28, 21, 0.25) 100%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-blend-mode: multiply;
}

.nhance-go-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.08),
			rgba(0, 0, 0, 0.25));
	pointer-events: none;
}

.nhance-go-hero .container {
	position: relative;
	z-index: 2;
}

.nhance-go-hero-content {
	max-width: 620px;
	padding: 40px;
	border-radius: 24px;

}

.nhance-go-hero .section-eyebrow {
	display: inline-block;
	margin-bottom: 18px;
	padding: 8px 18px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}


.nhance-go-hero .hero-subtitle {
	color: #e9f8ef;
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 18px;
}

.nhance-go-hero p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 32px;
	max-width: 560px;
}

.nhance-go-hero .btn-main {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nhance-go-hero .btn-main:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 992px) {
	.nhance-go-hero {
		min-height: 600px;
		background-position: center;
	}

	.nhance-go-hero-content {
		max-width: 100%;
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.nhance-go-hero {
		min-height: auto;
		padding: 80px 0;
	}

	.nhance-go-hero-content {
		padding: 24px;
		border-radius: 18px;
	}

	.nhance-go-hero h1 {
		font-size: 2.2rem;
	}

	.nhance-go-hero .hero-subtitle {
		font-size: 1.1rem;
	}

	.nhance-go-hero p {
		font-size: 1rem;
	}
}

/* ---------------------------------------------------------------------
        NHANCE PRO PAge CSS
        --------------------------------------------------------- */
.pro-journey-section {
	background-color: var(--white);
}

.left-pro-journey {
	/* Column should not be sticky, the inner content should be */
}

.pro-product-shot {
	position: sticky;
	top: 120px;
	z-index: 10;
}

.pro-journey-content {
	padding-left: 30px;
}

@media (max-width: 991px) {
	.pro-product-shot {
		position: relative;
		top: 0;
		margin-bottom: 30px;
	}

	.pro-journey-content {
		padding-left: 0;
	}
}

.pro-journey-title {
	font-size: 2.8rem;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 30px;
}

.journey-package-box {
	background: #fff;
	border: 1px solid rgba(15, 61, 46, 0.08);
	border-radius: 24px;
	padding: 25px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	margin-bottom: 40px;
}

.package-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px 0;
}

.package-item:not(:last-child) {
	border-bottom: 1px dashed rgba(15, 61, 46, 0.1);
}

.package-img {
	width: 70px;
	height: 70px;
	background: var(--bg-cream);
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.package-img img {
	width: 80%;
	height: auto;
}

.package-plus-icon {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 24px;
	background: var(--accent);
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	border: 2px solid #fff;
	z-index: 2;
}

.package-info h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 5px;
}

.package-info p {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.4;
}

.inclusion-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.inclusion-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 18px 0;
	border-bottom: 1px solid rgba(15, 61, 46, 0.05);
}

.inclusion-label {
	flex: 1;
}

.inclusion-label h5 {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 4px;
}

.inclusion-label p {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
}

.inclusion-value {
	font-weight: 700;
	color: var(--secondary);
	font-size: 0.95rem;
	text-align: right;
}

.inclusion-value.price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.btn-plan-select {
	width: 100%;
	background: var(--gradient-accent);
	/* Reference image orange */
	color: white;
	border: none;
	padding: 20px;
	border-radius: 16px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(255, 122, 61, 0.2);
}

.btn-plan-select:hover {
	background: var(--gradient-accent2);
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(255, 122, 61, 0.3);
	color: white;
}

@media (max-width: 991px) {
	.pro-journey-content {
		padding-left: 0;
		margin-top: 50px;
	}

	.pro-journey-title {
		font-size: 2.2rem;
	}
}

/* ==================About Us Page ==================== */

.about-section-container {
	position: relative;
	overflow: hidden;
	padding: 115px 0 0 !important;
	background-repeat: no-repeat;
	background-size: cover;

}

.about-tag {
	display: inline-block;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	width: fit-content;

}

/*=========================================
FEATURES
==========================================*/
.feature-row .feature-box{
display: block;
}

.feature-box {
	text-align: center;
	transition: .35s;
	border-right: 1px solid #c3bebe;
	height: 100%;
 }
 
 

.feature-box:hover {
	transform: translateY(-6px);
}

.feature-icon {

	width: 70px;
	height: 70px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon i {
	color: var(--primary);
	font-size: 20px;
}

.feature-box h6 {

	margin-top: 14px;
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.4;
	font-family: "Rokkitt", serif;
}
/*=========================================
RESPONSIVE
==========================================*/
@media(max-width:1400px) {
	.about-title {
		font-size: 56px;
	}
	.about-text {
		font-size: 19px;
	}
}
@media(max-width:1399px){

	.about-section-container{
      background-size:cover;
	}
 .about-image{
	display: none;
 }
 
	 .feature-row{
		display: none;
	 }
}
@media(max-width:1199px) {
	 
	
	.about-title {
		font-size: 48px;
	}
	.about-text {
		font-size: 18px;
		line-height: 1.8;
	}
	
}

@media(max-width:991px) {
	.about-section-container{
	position: relative; 
	}

	.about-section-container::before{
			content: "";
		position: absolute;
		width: 550px;
		height: 550px;
		background: radial-gradient(circle,
				rgba(189, 250, 4, .18) 0%,
				rgba(189, 250, 4, 0) 70%);
		left: -220px;
		top: -180px;
		pointer-events: none;
	}
	.feature-row {
		display: flex ;
	}
	.about-section {
		padding: 70px 0;
	}
	.about-title {
	font-size: 42px;
	}
	.about-image {
		margin-top: 45px;
	}

	.image-overlay {
		display: none;
	}
	.feature-box {
		 border: none;
	}

}

@media(max-width:767px) {

	.about-title {font-size: 34px;}
	.about-tag {font-size: 16px;}
	.about-text {font-size: 16px;line-height: 1.8;}
 
                             
} 
@media(max-width:575px) {

	.about-section {padding: 60px 0;}
	.about-title {font-size: 30px;line-height: 1.2;}
	.about-text {font-size: 15px;}
 

}

.problem-card,
.impact-card {
	padding: 28px 61px;
    background-position: center;
	border-radius: 20px;

}

.svg {
	height: 60px;
	width: 60px;
}

.problem-card {
	background-color: #eddbe6;
}

 
/* =============Problrm imapact card================= */
 
.section-heading h3 {
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: #0a1f44;
}

.section-heading .svg {
  width: 48px;
  height: 48px;
  margin-right: 12px;
}

/* lists */
.problem-list li,
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #2b3448;
  margin-bottom: 10px;
}

.problem-list li i {
  color: #e63946;
  margin-top: 4px;
}

.impact-list li i {
  color: #0a7b38;
  margin-top: 4px;
}

.problem-list li span,
.impact-list li span {
  display: inline-block;
}

/* impact note highlight */
.impact-note {
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(10, 123, 56, 0.06);
  border: 1px solid rgba(10, 123, 56, 0.12);
  font-size: 15px;
  color: #0a1f44;
}
@media (max-width: 1291px) {
	.problem-card{background-position: 10% 100% !important;}
	.impact-card{background-position: 60% 100% !important;}
}
@media (max-width: 991px) {
  .problem-card,
  .impact-card {
    padding: 24px 22px;
    border-radius: 20px;
	
  }
  	.section-heading h3 {font-size: 20px;}
	.list-unstyled {padding-left: 58px;list-style: none;}
}

@media (max-width: 576px) {
  .problem-impact-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .problem-card,
  .impact-card {
    padding: 22px 18px;
  }

  .section-heading {
    flex-direction: row;
    gap: 10px;
  }

  .section-heading h3 {
    font-size: 18px;
  }

  .problem-list li,
  .impact-list li {
    font-size: 15px;
	color: #000000;
	font-weight: 600;
  }
}
/* === = =Mission & Vission  ====== */
.mission-vision-section {
	background: #fff;
	padding: 70px 0;
}

.mission-vision-wrapper {
	background: #faf9f5;
	border-radius: 24px;
	padding: 45px 40px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 3px 15px rgba(0, 0, 0, .05);
}

/* Soft center glow */
.mission-vision-wrapper::before {
	content: "";
	position: absolute;
	width: 650px;
	height: 650px;
	background: radial-gradient(circle,
			rgba(168, 209, 167, .22) 0%,
			rgba(255, 255, 255, 0) 70%);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.content-box {
	position: relative;
	z-index: 2;
	max-width: 420px;
	margin: auto;
}

.icon-circle {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-box h3 {
	color: #11743b;
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.content-box p {
	font-size: 24px;
	line-height: 1.75;
	color: #2d3653;
	margin: 0;
	font-weight: 500;
}

.center-divider {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 320px;
	z-index: 2;
}

.center-divider .line {
	width: 2px;
	flex: 1;
	background: #d7ddd5;
}

.leaf-circle {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #d8e6d6;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

@media(min-width:992px) {
	.content-box {text-align: left !important;}
	.icon-circle {margin-left: 0;}
}

/* Tablet */
@media(max-width:991px) {
	.center-divider {min-height: 220px;margin: 35px 0;}
	.content-box {text-align: center !important;}
	.icon-circle {margin: 0 auto 18px;}
	.content-box h3 {font-size: 28px;}
	.content-box p {font-size: 18px;}
}

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

	.mission-vision-wrapper {padding: 30px 20px;}
	.leaf-circle {
		width: 95px;
		height: 95px;
	}
	.leaf-circle img {width: 45px;}
	.icon-circle {width: 62px;height: 62px;}
	.icon-circle img {width: 34px;}
	.content-box h3 {font-size: 24px;}
	.content-box p {font-size: 16px;line-height: 1.7;}
}

/* ==========Team Section======== */
.team-section {
	background: #fff;
}

.team-wrapper {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .04);
}

.section-heading {
	margin-bottom: 30px;
	display: flex;
	align-items: end;
	gap: 20px;
	justify-content: space-between;
}

.section-heading h2 {
	font-size: 28px;
	font-weight: 600;
	color: #222;
	margin: 0;
}

.team-slider {
	display: flex;
	justify-content: center;
	align-items: center !important;
	align-content: center;
	gap: 10px;
}


/* Slider wrapper and track */
.team-slider-wrapper {
	overflow: hidden;
	width: 100%;
	padding: 20px 0 10px 0;
}

.team-slider-track {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

/* Each item width is controlled via flex-basis */
.team-item {
	flex: 0 0 calc(100% / 6);
	/* 6 items visible on desktop */
	padding: 0 8px;
	box-sizing: border-box;
}

/* Team card styles */
.team-card {
	background: #fff;
	border: 1px solid #e9e9e9;
	border-radius: 18px;
	overflow: hidden;
	text-align: center;
	transition: .35s;
	height: 100%;
	box-shadow: 0 3px 8px rgba(0, 0, 0, .4);
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 3px 5px rgba(0, 0, 0, .04);
}

.team-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top;
	background: #f7f7f7;
}

.team-content {
	padding: 18px 15px 22px;
}

.team-content h4 {
	color: #13803d;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px;
}

.team-content h6 {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 8px;
}

.team-content p {
	color: #555;
	font-size: 15px;
	margin-bottom: 10px;
}

.team-content span {
	font-size: 14px;
	color: #444;
	font-weight: 600;
}

/* Responsiveness */
@media(max-width: 1290px) {
.team-item {
	flex: 0 0 calc(100% / 5);
 	padding: 0 8px;
 }
}

@media(max-width: 991px) {
	.section-heading h2 {
		font-size: 22px;
	}

	.team-card img {
		height: 200px;
	}

	.team-item {
		flex: 0 0 calc(100% / 3);
		/* 3 visible */
	}
}

@media(max-width: 767px) {
	.team-wrapper {
		padding: 20px;
	}

	.team-card img {
		height: 250px;
	}

	.section-heading {
		text-align: center;
		flex-direction: column;
		align-items: center;
	}

	.team-item {
		flex: 0 0 calc(100% / 2);
		/* 2 visible on small screens */
	}
}

@media(max-width: 480px) {
	.team-item {
		flex: 0 0 100%;
		/* 1 visible on very small screens */
	}
}

/* ======Founding Team====== */
.founding-team-section {
	background: #fff;
}

.founding-heading h2 {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.founding-heading span {
	color: #0a7b38;
	font-size: 34px;
	font-weight: 800;
	text-transform: uppercase;
}

.founding-heading small {
	color: #555;
	font-size: 22px;
	font-weight: 500;
}

/* Founder card base */
.founder-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 22px;
	display: flex;
	align-items: center;
	overflow: hidden;
	height: 100%;
	transition: .35s;
	box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
}

.founder-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}


.founder-img {
	width: 170px;
	flex-shrink: 0;
	height: 100%;
}

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


/* Text content */
.founder-content {
	padding: 20px;
	flex: 1;
	/* take remaining width */
}

.founder-content h4 {
	font-size: 28px;
	color: #0b7d39;
	font-weight: 700;
	margin-bottom: 8px;
}

.founder-content h6 {
	font-size: 20px;
	font-weight: 600;
	color: #24324b;
	margin-bottom: 16px;
}

.founder-content p {
	font-size: 19px;
	line-height: 1.8;
	color: #3f3f3f;
	margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
	.founding-heading span {
		font-size: 28px;
	}

	.founding-heading small {
		font-size: 18px;
	}

	.founder-content h4 {
		font-size: 22px;
	}

	.founder-content h6 {
		font-size: 18px;
	}

	.founder-content p {
		font-size: 16px;
	}

	.founder-img {
		width: 150px;
	}

	.founder-item {
		flex: 0 0 calc((100% - 25px)/2);
	}
}

/* Mobile */
@media (max-width: 776px) {
	.founder-item {
		flex: 0 0 100%;
	}

	.founder-card {
		flex-direction: column;
		text-align: center;
	}

	.founder-img {
		width: 100%;
		height: 260px;
	}

	.founder-img img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.founder-content {
		padding: 20px;
	}

	.founder-content h4 {
		font-size: 22px;
	}

	.founder-content h6 {
		font-size: 17px;
	}

	.founder-content p {
		font-size: 15px;
	}
}

@media(max-width:576px) {

	.founding-team-section {
		padding: 50px 0;
	}

	.founding-heading span {
		font-size: 26px;
	}

	.founding-heading small {
		font-size: 16px;
		display: block;
	}

	.slider-btn {
		width: 42px;
		height: 42px;
	}

}

/* Founding slider wrapper */
.founding-slider-wrapper {
	overflow: hidden;
	width: 100%;
}

/* Row behaves like horizontal strip */
#foundingRow {
	display: flex;
	flex-wrap: nowrap;
	transition: transform 0.4s ease;
	will-change: transform;
}

/* Each founder-item: base for desktop */
.founder-item {
	flex: 0 0 calc(100% / 4);
	/* 6 visible on large desktop if you want */
	box-sizing: border-box;
	max-width: 460px;
}
@media (max-width: 1291px) {
	.founder-item {
	flex: 0 0 calc(100% / 3);
	/* 6 visible on large desktop if you want */
	box-sizing: border-box;
	max-width: 460px;
}
}
/* Tablet, 3 visible */
@media (max-width: 991px) {
	.founder-item {
		flex: 0 0 calc(100% / 3);
	}
}

/* Mobile, 2 visible */
@media (max-width: 576px) {
	.founder-item {
		flex: 0 0 calc(100% / 2);
	}
}

/* Very small, 1 visible */
@media (max-width: 400px) {
	.founder-item {
		flex: 0 0 100%;
	}
}

/* About CTA */
.about-health-banner {
	padding: 70px 0;
}

.health-banner {

	background: url("../img/side-img/cta-bg-img-1.png") center center/cover no-repeat;

	min-height: 180px;

	border-radius: 22px;

	padding: 25px 40px;

	overflow: hidden;

	position: relative;

}

.health-banner::before {

	content: "";

	position: absolute;

	inset: 0;

	background: linear-gradient(90deg,
			rgba(0, 35, 18, .82) 0%,
			rgba(0, 35, 18, .55) 35%,
			rgba(0, 0, 0, .10) 65%,
			rgba(0, 0, 0, .08) 100%);

}

.health-banner>.row {

	position: relative;

	z-index: 2;

}

.banner-content {

	display: flex;

	align-items: center;

	gap: 35px;

}

.banner-content h3 {

	color: #fff;

	line-height: 1.15;

	font-weight: 600;

	margin: 0;
 
}

.banner-content h3 span {

	color: #A8F133;

}

.banner-divider {

	width: 2px;

	height: 150px;

	background: rgba(255, 255, 255, .35);

}

.banner-text {

	color: #fff;

}

.banner-text p {

	margin: 0 0 10px;

	font-size: 24px;

	font-weight: 500;

	line-height: 1.5;

}

.banner-list {

	display: flex;

	flex-wrap: wrap;

	gap: 22px;

	list-style: none;

	margin: 25px 0 0;

	padding: 0;

}

.banner-list li {

	color: #fff;

	font-size: 18px;

	display: flex;

	align-items: center;

	gap: 8px;

}

.banner-list i {

	color: #9be22f;

	font-size: 20px;

}

.health-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-radius: 16px;
	background: #4CA71E;
	color: #fff;
	text-decoration: none;
	font-size: 28px;
	font-weight: 700;
	transition: .35s;
	padding: 10px 15px;
}

.health-btn:hover {

	background: #3d9316;

	color: #fff;

}

.health-btn i {

	font-size: 20px;

}

/******** Tablet ********/

@media(max-width:991px) {

	.health-banner {

		padding: 35px 25px;

	}

	.banner-content {

		flex-direction: column;

		align-items: flex-start;

		gap: 20px;

	}

	.banner-divider {

		display: none;

	}

	.banner-content h2 {

		min-width: auto;

		font-size: 42px;

	}

	.banner-text p {

		font-size: 20px;

	}

	.banner-list {

		gap: 14px;

	}

	.health-btn {

		width: 100%;

		min-width: 100%;

		margin-top: 30px;

		font-size: 22px;

	}

}

/******** Mobile ********/

@media(max-width:576px) {

	.health-banner {

		padding: 25px 20px;

		border-radius: 18px;

	}

	.banner-content h2 {

		font-size: 32px;

	}

	.banner-text p {

		font-size: 16px;

	}

	.banner-list {

		flex-direction: column;

		gap: 12px;

	}

	.banner-list li {

		font-size: 15px;

	}

	.health-btn {

		height: 60px;

		font-size: 18px;

	}

}
/* =================Shop Page ====================== */
       
        .shop-section{
            position:relative;
            padding:90px 0 0px 0px;
            overflow:hidden;
            background:#fff;
            background-image:url("../img/bg-image/shop-hero-banner.png");
            background-repeat:no-repeat;
            background-size:cover;
            background-position:center;
          }
 

        .shop-section .container-fluid{
            position:relative;
            z-index:2;
			min-height: 650px;
			display: flex;
			align-items: center;
         }

        .shop-content h2{
            font-size:58px;
            line-height:1.08;
            font-weight:700;
            color:#182443;
            margin-bottom:25px;
            letter-spacing:-1px;
        }

        .shop-content h2 span{
            display:block;
            color:#0c6b49;
        }

        .shop-content p{
            font-size:22px;
            line-height:1.8;
            color:#424242;
            max-width:520px;
        }

 
        /* Responsive */

        @media(max-width:1199px){

            .shop-content h2{
                font-size:48px;
            }

            .shop-content p{
                font-size:19px;
            }

        }

        @media(max-width:991px){

            .shop-section{
                padding:70px 0;
                text-align:center;
            }

            .shop-section .container-fluid{
                min-height: 450px;
            }

            .shop-content{
                margin-bottom:50px;
            }

            .shop-content p{
                margin:auto;
            }

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

            .shop-image img{
                width:100%;
                max-width:650px;
            }

        }

        @media(max-width:767px){

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

            .shop-content h2{
                font-size:36px;
            }

            .shop-content p{
                font-size:16px;
                line-height:1.7;
            }

        }

        @media(max-width:575px){

            .shop-content h2{
                font-size:30px;
            }

        }
		/* -------Vetting Section---------- */
		.vetting-process{
			padding:0 0 80px 0;
			background:#fff;
		}

		.vetting-box{
			position:relative;
			overflow:hidden;
			border-radius:18px;
			padding:35px 40px;
			background:#fff;
			background-image:url("../img/bg-image/shop-feature-bg-img.png");
			background-size:cover;
			background-position:center;
			box-shadow:0 8px 30px rgba(0,0,0,.08);
		}

		.vetting-box::before{
			content:"";
			position:absolute;
			left:-180px;
			top:-140px;
			width:500px;
			height:500px;
			background:radial-gradient(circle,
			rgba(247,240,230,.9) 0%,
			rgba(255,255,255,0) 75%);
		}

		.vetting-box::after{
			content:"";
			position:absolute;
			right:-150px;
			top:-80px;
			width:450px;
			height:450px;
			background:radial-gradient(circle,
			rgba(231,242,237,.9) 0%,
			rgba(255,255,255,0) 75%);
		}

		.vetting-box .row{
			position:relative;
			z-index:2;
		}

		.vetting-heading-section h2{
			font-size:34px;
			font-weight:700;
			color:#0d6847;
			margin-bottom:8px;
		}

		.vetting-heading-section p{
			color:#3f3f3f;
			font-size:17px;
			margin-bottom:35px;
		}

		.process-wrapper{
			display:flex;
			align-items:flex-start;
			justify-content:space-between;
			gap:8px;
			flex-wrap:wrap;
		}

		.process-item{
			text-align:center;
			width:fit-content;
			flex-shrink:0;
		}

		.icon-box{
			width:56px;
			height:56px;
			margin:auto;
			display:flex;
			align-items:center;
			justify-content:center;
			overflow: hidden;
		}

		.icon-box img{
			width:50px;
		}

		.process-item h6{
			margin-top:14px;
			font-size:14px;
			line-height:1.45;
			font-weight:600;
			color:#23313d;
		}

		.arrow{
			margin-top:18px;
			color:#0d6847;
			font-size:18px;
			flex-shrink:0;
		}

		.lab-image{
			text-align:right;
		}

		.lab-image img{
			max-width:100%;
			width:240px;
		}

		/* Responsive */

		@media(max-width:991px){

			.vetting-box{
				padding:35px 25px;
			}

			.lab-image{
				text-align:center;
				margin-top:35px;
			}

			.process-wrapper{
				overflow-x:auto;
				padding-bottom:10px;
			}

			.process-wrapper::-webkit-scrollbar{
				height:5px;
			}

			.process-wrapper::-webkit-scrollbar-thumb{
				background:#0d6847;
				border-radius:20px;
			}

		}

		@media(max-width:767px){

			.vetting-heading-section h2{
				font-size:24px;
			}

			.vetting-heading-section p{
				font-size:15px;
			}

			.process-wrapper {
				flex-direction: column;
				align-items: center;
				gap: 15px;
			}

			.arrow {
				transform: rotate(90deg);
				margin-top: 0;
			}

			.process-item{
				width:100%;
			}

			.process-item h6{
				font-size:16px;
			}

			.icon-box img{
				width:45px;
			}

			.lab-image img{
				width:170px;
			}

		}

		/* ------------------ */
		.why-shop-section{
			padding:70px 0;
			background:#fff;
		}

		
		.why-shop-section .container-fluid{
			position:relative;
			z-index:2;
		}

		.why-section-title{
			display:flex;
			align-items:center;
			justify-content:center;
			gap:28px;
			margin-bottom:55px;
		}

		.why-section-title span{
			width:60px;
			height:3px;
			background:#0b6d4d;
			border-radius:50px;
		}

		.why-section-title h3{
			margin:0;
			font-size:38px;
			font-weight:600;
			color:#172544;
		}

		.why-card{
			display:flex;
			align-items:flex-start;
			gap:18px;
		}

		.icon{
			width:78px;
			height:78px;
			border:1px solid #d8ddd8;
			border-radius:50%;
			background:#fff;
			display:flex;
			align-items:center;
			justify-content:center;
			flex-shrink:0;
		}

		.icon img{
			width:38px;
		}

		.content h5{
			font-size:17px;
			font-weight:700;
			color:var(--primary);
			margin-bottom:12px;
		}

		.content p{
			margin:0;
			color:#4a4a4a;
			font-size:19px;
			line-height:1.7;
		}
	@media (min-width:1200px) and (max-width:1440.98px){
    .icon{
        width:61px;
        height:61px;
    }
}

		/* Desktop */
		@media(min-width:1200px){

			.why-shop-section .row>.col-lg{
				flex:0 0 20%;
				max-width:20%;
			}

		}

		/* Tablet */

		@media(max-width:991px){

			.why-section-title h3{
				font-size:34px;
			}

			.why-section-title span{
				width:45px;
			}

			.why-card{
				padding:15px;
			}

		}

		/* Mobile */

		@media(max-width:767px){

			.why-shop-section{
				padding:50px 0;
			}

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

			.why-section-title h3{
				font-size:28px;
				text-align:center;
			}

			.why-section-title span{
				width:30px;
			}

			.why-card{
				align-items:center;
			}

			.icon{
				width:62px;
				height:62px;
			}

			.icon img{
				width:30px;
			}

			.content h5{
				font-size:20px;
			}

			.content p{
				font-size:16px;
			}

		}


.comming-soon-section{
    padding:70px 15px;
    background:#fff;
}

.curated-marketplace{
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:430px;
    padding:70px 30px;
    border-radius:22px;
    background:#fff;
 
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}
 .curated-marketplace-content{
    position:relative;
    z-index:2;
}

/* Left DNA Image */

.curated-marketplace::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:250px;
    height:100%;

    background-image:url("../img/bg-image/curated-2.png");
    background-repeat:no-repeat;
    background-position:left center;
    background-size:cover;

    opacity:.5;
    z-index:1;
}
/* Right Molecule Image */

.curated-marketplace::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:300px;
    height:100%;
    background-image:url("../img/bg-image/curated-1.png");
    background-repeat:no-repeat;
    background-position:right center;
    background-size:contain;

    opacity:.5;
    z-index:1;
}

.curated-marketplace-content{
    position:relative;
    z-index:2;
    max-width:900px;
    text-align:center;
}

.curated-marketplace-content h3{
    font-size:38px;
    line-height:1.1;
    font-weight:700;
    color:#075b3c;
    margin-bottom:18px;
}

.curated-marketplace-content h4{
    font-size:36px;
    font-weight:600;
    color:#242424;
    margin-bottom:18px;
}

.curated-marketplace-content p{
    max-width:850px;
    margin:0 auto 35px;
    font-size:24px;
    line-height:1.7;
    color:#474747;
}

.notify-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    background:#065e3d;
    color:#fff;
    text-decoration:none;
    padding:18px 45px;
    border-radius:12px;
    font-size:28px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 8px 20px rgba(6,94,61,.25);
}

.notify-btn:hover{
    background:#044d32;
    color:#fff;
    transform:translateY(-3px);
}

.notify-btn i{
    font-size:28px;
}

.bottom-text{
    display:block;
    margin-top:22px;
    color:#555;
    font-size:20px;
}

/* Responsive */

@media(max-width:1200px){

    .curated-marketplace-content h3{
        font-size:34px;
    }

    .curated-marketplace-content h4{
        font-size:30px;
    }

    .curated-marketplace-content p{
        font-size:20px;
    }

    .notify-btn{
        font-size:22px;
        padding:16px 35px;
    }

}

@media(max-width:991px){

    .curated-marketplace{
        min-height:auto;
        padding:60px 25px;
    }

    .curated-marketplace::before,
    .curated-marketplace::after{
        width:180px;
        opacity:.08;
    }

    .curated-marketplace-content h3{
        font-size:32px;
    }

    .curated-marketplace-content h4{
        font-size:24px;
    }

    .curated-marketplace-content p{
        font-size:18px;
    }

}

@media(max-width:767px){

    .comming-soon-section{
        padding:40px 10px;
    }

    .curated-marketplace{
        padding:45px 20px;
    }

    .curated-marketplace::before,
    .curated-marketplace::after{
        display:none;
    }

    .curated-marketplace-content h3{
        font-size:26px;
    }

    .curated-marketplace-content h4{
        font-size:20px;
    }

    .curated-marketplace-content p{
        font-size:16px;
        line-height:1.8;
    }

    .notify-btn{
        width:100%;
        padding:15px 20px;
        font-size:18px;
    }

    .notify-btn i{
        font-size:20px;
    }

    .bottom-text{
        font-size:16px;
    }

}

.selection-promise{
    background:#fff;
}

.selection-box{
    background:#fff;
    border:1px solid #e7ece8;
    border-radius:22px;
    padding:35px 30px;
    box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.selection-title{
    text-align:center;
    color:#0d6b42;
    font-size:46px;
    font-weight:700;
    margin-bottom:35px;
}

.selection-flow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    /* gap:18px; */
}

.step-item{
    width:180px;
    text-align:center;
}

.step-icon{
    width:92px;
    height:92px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    margin-bottom:18px;
 }

.step-icon img{
    width:100%;
	object-fit: cover;
}

.step-item h4{
    color:#0b6c43;
    font-size:26px;
    font-weight:700;
    margin-bottom:10px;
}

.step-item p{
    color:#444;
    font-size:15px !important;
    line-height:1.6;
}

.flow-arrow{
    color:#0b6c43;
    font-size:34px;
    margin-top:-55px;
}

.final-card{
    width:250px;
    border:1px solid #dce7e0;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
	background: #fafaf8;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.final-icon{
    width:92px;
    height:92px;
    margin:auto auto 20px;
}

.final-icon img{
    width:100%;
}

.final-card h3{
    color:#0d4f35;
    font-size:20px;
    line-height:1.35;
    font-weight:700;
}
@media(max-width:1280px){
.selection-title{
	font-size: 32px;
}
.flow-arrow{
    display:none;
}
.step-icon {
	height: 80px;
	width: 80px;
}
.why-card {
	height: auto;
	display: block;
	justify-content: center;
	align-items: center;
	text-align: center;
 }
 .icon{
	align-self: center;
	justify-self: center;
 }
 .content h5{
  font-size: 17px;
 }
 .final-card h3{
	font-size: 16px;
 }

 .final-icon ,.step-icon{
	height: 65px;
	width: 65px;	
 }
 .final-card{
	width: 190px;
	padding: 20px;
 }	
 .step-item{width: 160px;}
}
@media(max-width:1200px){

.selection-flow{
    flex-wrap:wrap;
    justify-content:center;
}

.flow-arrow{
    display:none;
}

.step-item{
    width:230px;
}

.final-card{
    width:280px;
}

}

@media(max-width:768px){

.selection-box{
    padding:25px 15px;
}

.selection-title{
    font-size:30px;
}

.step-item{
    width:100%;
}

.step-item h4{
    font-size:22px;
}

.step-item p{
    font-size:16px;
}

.final-card h3{
    font-size:24px;
}

}

/* ------------ */
.service-features{
    background:#fff;
}

.service-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    background:#fcfcfb;
    border:1px solid #e8ece8;
    border-radius:18px;
    padding:26px 35px;
    box-shadow:0 5px 18px rgba(0,0,0,.04);
}

.service-item{
    flex:1;
    display:flex;
    align-items:center;
    gap:18px;
}

.service-icon{
    width:56px;
    min-width:56px;
    height:56px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.service-icon img{
    width:100%;
}

.service-content h4{
    margin:0 0 6px;
    font-size:22px;
    font-weight:700;
    color:#1f1f1f;
    line-height:1.2;
}

.service-content p{
    margin:0;
    color:#555;
    font-size:17px;
    line-height:1.6;
}

.divider{
    width:1px;
    align-self:stretch;
    background:#dfe6df;
}

@media (max-width:1199px){

.service-wrapper{
    flex-wrap:wrap;
}

.service-item{
    flex:0 0 calc(50% - 20px);
}

.divider{
    display:none;
}

}

@media (max-width:767px){

.service-wrapper{
    padding:20px;
    gap:20px;
}

.service-item{
    flex:0 0 100%;
}

.service-icon{
    width:48px;
    min-width:48px;
    height:48px;
}

.service-icon img{
    width:40px;
}

.service-content h4{
    font-size:18px;
}

.service-content p{
    font-size:15px;
}

}
/* ------------------- */
.marketplace-banner{
    background:#fff;
}

.marketplace-box{
    display:flex;
    align-items:center;
    background:linear-gradient(90deg,#062f2d 0%,#083731 100%);
    border-radius:22px;
    overflow:hidden;
    min-height:180px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.marketplace-lab{
    position: relative;
    overflow: hidden;
}

.marketplace-lab::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 55, 49, 1) 0%,
        rgba(8, 55, 49, 0.9) 10%,
        rgba(8, 55, 49, 0.5) 25%,
        rgba(8, 55, 49, 0) 100%
    );
    z-index: 1;
}

.marketplace-lab img{
    position: relative;
    z-index: 2;
	height: 180px;
}
.cta-marketplace-content{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
}

.cta-content-box{
    flex:1;
    padding:0 38px;
	height: 100%;
	border-right: 1px solid #fff;
}

.cta-content-box h2{
    margin:0;
    font-size:20px;
    font-weight:700;
    line-height:1.35;
    color:#fff;
}

.cta-content-box p{
    margin:0;
    font-size:18px;
    line-height:2 !important;
    color:rgba(255,255,255,.9);
}
 
.brand-box{
    width:430px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
}

.brand-box h5{
    font-size:22px;
    margin-bottom:8px;
    color:#fff;
    font-weight:700;
}

.brand-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:12px;
    background:#fff;
    color:#0d5d43;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.brand-btn:hover{
    background:#f4f4f4;
    color:#0d5d43;
}

.brand-icon{
    width:110px;
    height:110px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.03);
}

.brand-icon img{
    width:90px;
    filter:brightness(0) invert(1);
}
@media(max-width:1280px){
.cta-content-box p {
    line-height: 1 !important;
}	
.cta-content-box{
	padding: 0 14px;
	
}
.cta-content-box h2 {
	font-size: 16px;
}
.cta-content-box p {
    font-size: 14px !important;
}
}
@media(max-width:1200px){

.marketplace-box{
    flex-direction:column;
}

.cta-marketplace-content{
    flex-direction:column;
    width:100%;
}

.cta-content-box p {
	line-height: 1 !important;
}
.cta-content-box,
.brand-box{
    width:100%;
    text-align:center;
    padding:25px;
    border: none;
}

.brand-box{
    flex-direction:column;
    gap:25px;
}

}

@media(max-width:768px){

.marketplace-lab{
    width:100%;
    height:140px;
}

.marketplace-lab img{
    width:100%;
	height: auto;
}

.cta-content-box h2{
    font-size:17px;
}

.cta-content-box p,
.brand-box p{
    font-size:15px;
}

.brand-box h5{
    font-size:22px;
}

.brand-btn{
    padding:12px 22px;
}

}
/* ================================================
           LIFECARE  SECTION 
================================================== */

.hero-lifecare {
	position: relative;
	padding: 30px;
	min-height: 700px;
	height: 700px;

	background-image: url("../img/side-img/lifecare-bg-img.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;

}

.hero-lifecare::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 28, 21, .82) 0%, rgba(8, 28, 21, .58) 45%, rgba(8, 28, 21, .25) 100%);
	z-index: 1;
	pointer-events: none;
}

.hero-lifecare>* {
	position: relative;
	z-index: 2;
}

.hero-wrapper {
	border-radius: 28px;
	display: flex;
	align-items: center;
	padding: 80px 70px 100px 0;
}

.lifecare-eyebrow {
	color: var(--accent);
}

.hero-content p {
	color: var(--bg-light);
}

.hero-buttons {
	display: flex !important;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.section-eyebrow{
    display: inline-flex;
      padding: 8px 18px;
    border-radius: 50px;
    background: rgba(189, 250, 4, 0.12);
    color: #0F3D2E;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
	box-shadow: 0 0 10px #448014;
	margin-bottom: 10px;
 }

.hero-bottom-card {
	margin-top: -60px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {

	.hero-wrapper {
		padding: 40px 30px;
		min-height: auto;
	}


	.hero-content p {
		font-size: 18px;
	}

	.hero-bottom-card {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

}

@media (max-width: 576px) {


	.hero-buttons {
		flex-direction: column;
	}

	.hero-bottom-card {
		grid-template-columns: 1fr;
	}
}

/* Pain Points */
.about-lifecare {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(15, 61, 46, 0.06) 0 25%, transparent 25% 100%),
		linear-gradient(180deg, #fffdf8 0%, #f5f0e8 54%, #ffffff 100%);
	padding-top: 200px;
}

.about-lifecare::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(15, 61, 46, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 61, 46, 0.05) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
	pointer-events: none;
}

.about-lifecare .container-xl {
	position: relative;
	z-index: 1;
}

.about-lifecare .text-center {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
}


.about-lifecare .title-type-1 {
	margin-bottom: 16px;
}

.about-lifecare-lead {
	max-width: 760px;
	margin: 0 auto;
	color: rgba(31, 29, 29, 0.68);
	font-size: 17px;
	line-height: 1.75 !important;
}

.about-lifecare .row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
}

.about-lifecare .row>[class*="col-"] {
	width: auto;
	max-width: none;
	padding: 0;
}

.about-lifecare .pain-point-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(15, 61, 46, 0.11);
	border-radius: 8px;
	padding: 34px 30px 28px;
	box-shadow: 0 22px 48px rgba(15, 61, 46, 0.08);
	transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
	height: 100%;
}

.about-lifecare .pain-point-card::before {
	position: absolute;
	top: 24px;
	right: 24px;
	content: "01";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--primary);
	color: var(--accent);
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0;
}

.about-lifecare .pain-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	margin-bottom: 26px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(189, 250, 4, 0.24), rgba(15, 61, 46, 0.08));
	color: var(--primary);
	font-size: 26px;
	box-shadow: inset 0 0 0 1px rgba(15, 61, 46, 0.1);
	transition: background 0.32s ease, color 0.32s ease, transform 0.32s ease;
}

.about-lifecare .pain-point-card:hover .pain-icon {
	background: var(--primary);
	color: var(--accent);
	transform: translateY(-3px);
}

.about-lifecare .row>div:nth-child(2) .pain-point-card::before {
	content: "02";
	background: #f2f6e9;
	color: var(--primary);
	border: 1px solid rgba(15, 61, 46, 0.12);
}

.about-lifecare .row>div:nth-child(3) .pain-point-card::before {
	content: "03";
	background: #1f1d1d;
	color: var(--white);
}

.about-lifecare .pain-point-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 5px;
	background: linear-gradient(90deg, var(--accent), #7fb548, var(--primary));
	transform: scaleX(0.26);
	transform-origin: left;
	transition: transform 0.32s ease;
}

.about-lifecare .pain-point-card:hover {
	transform: translateY(-7px);
	border-color: rgba(15, 61, 46, 0.22);
	box-shadow: 0 30px 60px rgba(15, 61, 46, 0.14);
}

.about-lifecare .pain-point-card:hover::after {
	transform: scaleX(1);
}

.about-lifecare .pain-point-card h4 {
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 600;
	line-height: 1.22;
	color: var(--primary);
	margin-bottom: 14px;
	letter-spacing: 0;
}

.about-lifecare .pain-point-card p {
	color: rgba(31, 29, 29, 0.66);
	font-size: 15px;
	line-height: 1.7 !important;
	margin-bottom: 22px;
}

.about-lifecare .pain-point-card .stat {
	display: block;
	margin-top: auto;
	padding: 15px 16px;
	border-radius: 8px;
	background: #f6f8f1;
	border: 1px solid rgba(15, 61, 46, 0.08);
	color: var(--primary);
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45 !important;
}

/* Use Cases */
.lifecare-usecases {
	position: relative;
	overflow: hidden;
	padding-top: 60px;
}

.checkbox-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.lifecare-usecases::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;


}

.lifecare-usecases .container-xl {
	position: relative;
	z-index: 1;
}

.lifecare-usecases .text-center {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.lifecare-usecases .badge-new {
	background: #102f23;
	color: var(--white);
	border-radius: 8px;
	padding: 9px 18px;
	letter-spacing: 1.2px;
	box-shadow: 0 16px 34px rgba(15, 61, 46, 0.14);
}

.lifecare-usecases .title-type-1 {
	position: relative;
	display: inline-block;
	margin-bottom: 6px;
}

.lifecare-usecases .title-type-1::after {
	content: "";
	display: block;
	width: 68px;
	height: 3px;
	margin: 16px auto 0;
	background: var(--accent);
}

.lifecare-usecases .row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
}

.lifecare-usecases .row>[class*="col-"] {
	width: auto;
	max-width: none;
	padding: 0;
}

.lifecare-usecases .usecase-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(15, 61, 46, 0.1);
	border-radius: 8px;
	padding: 30px 24px 28px;
	box-shadow: 0 20px 48px rgba(15, 61, 46, 0.08);
	transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
	height: 100%;
}

.lifecare-usecases .usecase-card::before {
	content: "01";
	position: absolute;
	top: 18px;
	right: 18px;
	color: rgba(15, 61, 46, 0.13);
	font-family: "Inter", sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.lifecare-usecases .row>div:nth-child(2) .usecase-card::before {
	content: "02";
}

.lifecare-usecases .row>div:nth-child(3) .usecase-card::before {
	content: "03";
}

.lifecare-usecases .row>div:nth-child(4) .usecase-card::before {
	content: "04";
}

.lifecare-usecases .usecase-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 5px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0.18);
	transform-origin: left;
	transition: transform 0.32s ease;
}

.lifecare-usecases .usecase-card:hover {
	transform: translateY(-8px);
	border-color: rgba(15, 61, 46, 0.24);
	box-shadow: 0 32px 70px rgba(15, 61, 46, 0.15);
}

.lifecare-usecases .usecase-card:hover::after {
	transform: scaleX(1);
}

.lifecare-usecases .usecase-card .uc-icon {
	width: 62px;
	height: 62px;
	margin-bottom: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #eef4e5;
	color: var(--primary);
	font-size: 26px;
	box-shadow: inset 0 0 0 1px rgba(15, 61, 46, 0.1);
	transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.lifecare-usecases .usecase-card:hover .uc-icon {
	background: var(--primary);
	color: var(--accent);
	transform: translateY(-3px);
}

.lifecare-usecases .usecase-card h4 {
	min-height: 58px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.22;
	color: var(--primary);
	margin-bottom: 14px;
	letter-spacing: 0;
}

.lifecare-usecases .usecase-card p {
	color: rgba(31, 29, 29, 0.66);
	font-size: 14px;
	line-height: 1.65 !important;
	margin: 0;
}

.lifecare-usecases .usecase-card strong {
	color: #102f23;
	font-weight: 800;
}

/* What's Included — Pillar Grid */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.pillar-item {
	background: var(--white);
	border-radius: 20px;
	padding: 24px 20px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: 0.3s ease;
	border: 1px solid rgba(15, 61, 46, 0.04);
}

.pillar-item:hover {
	transform: translateY(-4px);
}

.pillar-item .pi-icon {
	font-size: 2.2rem;
	margin-bottom: 8px;
}

.pillar-item h5 {
	font-weight: 600;
	color: var(--primary);
	font-size: 1rem;
	margin-bottom: 4px;
}

.pillar-item p {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
}

/* Lifecare Supplement Scene */
.lifecare-supplement-scene {
	position: relative;
	min-height: 650px;
	display: flex;
	align-items: center;
	background-image:
		linear-gradient(90deg, rgba(242, 235, 223, 0.98) 0%, rgba(242, 235, 223, 0.9) 28%, rgba(242, 235, 223, 0.2) 52%, rgba(242, 235, 223, 0) 72%),
		url("../img/side-img/lifecare-bg-img.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
	padding: 74px 0;
}

.lifecare-supplement-scene .container-xl {
	width: 100%;
	position: relative;
	z-index: 1;
}

.lifecare-supplement-scene .row {
	min-height: 500px;
	align-items: center !important;
}


.lifecare-supplement-scene .col-lg-6:last-child {
	display: none;
}


.lifecare-supplement-scene .title-type-1 {
	color: #102f23 !important;
	font-size: clamp(34px, 4vw, 50px);
	line-height: 1.04;
	letter-spacing: 0;
	margin: 0 0 22px;
}

.lifecare-supplement-scene .title-type-1 .hl {
	background: none;
	-webkit-text-fill-color: currentColor;
	color: #102f23;
}

.lifecare-supplement-scene .title-type-1::after {
	content: "";
	display: block;
	width: 54px;
	height: 2px;
	margin-top: 22px;
	background: #9f7d2d;
}

.lifecare-supplement-scene .col-lg-6:first-child>p {
	max-width: 470px !important;
	color: #262a22 !important;
	font-size: 15px !important;
	line-height: 1.55 !important;
}




.lifecare-supplement-scene .supplement-benefits>div:last-child {
	border-bottom: none;
}

.lifecare-supplement-scene .supplement-benefits>div>span {
	display: none;
}



.lifecare-supplement-scene .supplement-benefits strong {
	display: inline;
	color: #151a13;
	font-size: 15px;
	font-weight: 800;
}

.lifecare-supplement-scene .btn-main {
	display: none !important;
	background: #102f23 !important;
	color: #fff !important;
	box-shadow: none !important;
	border-radius: 8px;
	padding: 14px 20px;
}

.lifecare-supplement-scene .btn-main span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
}

.lifecare-supplement-scene .btn-main:hover {
	background: #1d4c38 !important;
}

/* ═══════════════════════════════════════════════════════
   LIFECARE — SUPPLEMENT SCENE (Section 5)
═══════════════════════════════════════════════════════ */

.lifecare-supplement-scene {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.lifecare-supplement-scene::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(15, 61, 46, 0.06), transparent 70%);
	pointer-events: none;
}

/* ── Benefit List ── */
.supplement-benefits {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 32px 0 40px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 18px 22px !important;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(15, 61, 46, 0.10);
	border-radius: 16px;
	backdrop-filter: blur(6px);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.benefit-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(15, 61, 46, 0.10);
}

/* Icon circle */
.benefit-icon-wrap {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary, #0f3d2e) 0%, #216a4f 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	border-radius: 5px;
	font-size: 18px;
	box-shadow: 0 6px 18px rgba(15, 61, 46, 0.22);
	transition: transform 0.25s ease;
}

.benefit-item:hover .benefit-icon-wrap {
	transform: scale(1.12) rotate(-6deg);
}

/* Text block */
.benefit-text {
	flex: 1;
}

.benefit-text strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary, #0f3d2e);
	margin-bottom: 4px;
}

.benefit-text p {
	margin: 0;
	font-size: 0.92rem;
	color: #4a6358;
	line-height: 1.6;
}

/* ── Sachet / Formula Card ── */
.sachet-card {
	background: linear-gradient(145deg, #0f3d2e 0%, #174f3a 60%, #1c6048 100%);
	border-radius: 28px;
	padding: 48px 40px;
	color: white;
	box-shadow: 0 30px 80px rgba(15, 61, 46, 0.35);
	position: relative;
	overflow: hidden;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sachet-card::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(189, 250, 4, 0.08);
	pointer-events: none;
}

.sachet-card::after {
	content: '';
	position: absolute;
	bottom: -40px;
	left: -40px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(189, 250, 4, 0.05);
	pointer-events: none;
}

.sachet-label {
	position: relative;
	z-index: 1;
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	line-height: 2;
	color: rgba(255, 255, 255, 0.88);
	background: rgba(0, 0, 0, 0.18);
	border: 1px solid rgba(189, 250, 4, 0.2);
	border-radius: 16px;
	padding: 28px 32px;
	width: 100%;
	letter-spacing: 0.3px;
}

.sachet-label strong {
	color: #bdfa04;
	font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
	.lifecare-supplement-scene {
		padding: 72px 0;
	}
}

@media (max-width: 767px) {
	.lifecare-supplement-scene {
		padding: 56px 0;
	}

	.benefit-item {
		gap: 14px;
		padding: 16px 18px;
	}

	.benefit-icon-wrap {
		width: 42px;
		height: 42px;
		font-size: 16px;
	}

	.sachet-card {
		padding: 36px 28px;
		min-height: auto;
	}

	.sachet-label {
		font-size: 0.82rem;
		padding: 22px 20px;
	}
}

@media (max-width: 991px) {
	.lifecare-supplement-scene {
		min-height: auto;
		background-image:
			linear-gradient(90deg, rgba(242, 235, 223, 0.98) 0%, rgba(242, 235, 223, 0.9) 100%),
			url("../img/side-img/lifecare-bg-img.png");
		background-position: 64% center;
		padding: 82px 0;
	}

	.lifecare-supplement-scene .row {
		min-height: auto;
	}


}

@media (max-width: 576px) {
	.lifecare-supplement-scene {
		padding: 68px 0;
	}

	.lifecare-supplement-scene .title-type-1 {
		font-size: 34px;
	}

	.lifecare-supplement-scene .supplement-benefits>div {
		grid-template-columns: 48px 1fr;
		gap: 12px !important;
	}

	.lifecare-supplement-scene .supplement-benefits>div::before {
		width: 42px;
		height: 42px;
		font-size: 17px;
	}

	.lifecare-supplement-scene .btn-main {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

/* Supplementation Sachet */
.sachet-card {
	background: var(--white);
	border-radius: 24px;
	padding: 36px 32px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(15, 61, 46, 0.06);
	max-width: 500px;
	margin: 0 auto;
}

.sachet-card .sachet-label {
	background: var(--bg-cream);
	border-radius: 16px;
	padding: 24px 20px;
	font-family: monospace;
	font-size: 0.9rem;
	line-height: 1.8;
	border: 1px dashed var(--primary);
	color: var(--primary);
}

.sachet-card .sachet-label strong {
	color: var(--primary);
}

.cta-lifecare {
	background: var(--primary);
	padding: 100px 0;
	text-align: center;
	color: white;
}

.cta-lifecare .btn-main {
	background: var(--accent);
	color: var(--primary);
}

.cta-lifecare .btn-main:hover {
	background: #d0ff3a;
}

.cta-lifecare .btn-secondary-new {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--white);
	padding: 16px 40px;
	border-radius: 60px;
	font-weight: 700;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: 0.3s ease;
}

.cta-lifecare .btn-secondary-new:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-3px);
}

@media (max-width: 991px) {
	.about-lifecare .row {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.about-lifecare .text-center {
		text-align: left !important;
		margin-bottom: 34px !important;
	}

	.about-lifecare-lead {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (max-width: 768px) {
	.hero-lifecare {
		min-height: auto;
		padding: 60px 0;
	}

	.about-lifecare {
		padding: 78px 0;
	}

	.about-lifecare .title-type-1 {
		font-size: 34px;
	}

	.about-lifecare-lead {
		font-size: 15px;
	}

	.about-lifecare .pain-point-card,
	.usecase-card {
		padding: 24px 20px;
	}

	.about-lifecare .pain-point-card::before {
		top: 20px;
		right: 20px;
		width: 40px;
		height: 40px;
	}

	.about-lifecare .pain-icon {
		width: 54px;
		height: 54px;
		margin-bottom: 22px;
		font-size: 22px;
	}

	.pillar-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.pillar-grid {
		grid-template-columns: 1fr;
	}
}

h2,
.h2 {
	font-size: clamp(26px, 4vw, 42px);
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────────────
   2. ANIMATION KEYFRAMES
───────────────────────────────────────────────────────────────── */
@keyframes hSlideUp {
	from {
		opacity: 0;
		transform: translateY(48px);
		filter: blur(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@keyframes hSlideLeft {
	from {
		opacity: 0;
		transform: translateX(-52px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes hSlideRight {
	from {
		opacity: 0;
		transform: translateX(52px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes hScaleIn {
	from {
		opacity: 0;
		transform: scale(0.86);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes hFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes gradientPan {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes underlineGrow {
	from {
		width: 0;
		opacity: 0;
	}

	to {
		width: 100%;
		opacity: 1;
	}
}

@keyframes accentLineDrop {
	from {
		transform: scaleY(0);
		opacity: 0;
	}

	to {
		transform: scaleY(1);
		opacity: 1;
	}
}

/* ─────────────────────────────────────────────────────────────────
   3. SCROLL-TRIGGERED HEADING ANIMATIONS
   JS adds [data-h-anim] to every h1–h6, then adds .h-visible
   when the element enters the viewport.
───────────────────────────────────────────────────────────────── */

/* Initial hidden state (set by JS before paint) */
h1[data-h-anim],
h2[data-h-anim],
h3[data-h-anim],
h4[data-h-anim],
h5[data-h-anim],
h6[data-h-anim] {
	opacity: 0;
	transform: translateY(44px);
	filter: blur(4px);
	will-change: opacity, transform, filter;
	transition:
		opacity 0.80s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.80s cubic-bezier(0.16, 1, 0.3, 1),
		filter 0.60s ease;
}

/* Visible state */
h1[data-h-anim].h-visible,
h2[data-h-anim].h-visible,
h3[data-h-anim].h-visible,
h4[data-h-anim].h-visible,
h5[data-h-anim].h-visible,
h6[data-h-anim].h-visible {
	opacity: 1;
	transform: none;
	filter: blur(0);
}

/* Variant: slide from left */
[data-h-anim="left"] {
	transform: translateX(-52px) !important;
	filter: blur(0) !important;
}

[data-h-anim="left"].h-visible {
	transform: translateX(0) !important;
}

/* Variant: slide from right */
[data-h-anim="right"] {
	transform: translateX(52px) !important;
	filter: blur(0) !important;
}

[data-h-anim="right"].h-visible {
	transform: translateX(0) !important;
}

/* Variant: scale in */
[data-h-anim="scale"] {
	transform: scale(0.86) !important;
	filter: blur(0) !important;
}

[data-h-anim="scale"].h-visible {
	transform: scale(1) !important;
}

/* Variant: fade only */
[data-h-anim="fade"] {
	transform: none !important;
}

[data-h-anim="fade"].h-visible {
	transform: none !important;
}

/* Natural stagger — each heading level animates slightly later */
h1[data-h-anim] {
	transition-delay: 0.00s;
}

h2[data-h-anim] {
	transition-delay: 0.07s;
}

h3[data-h-anim] {
	transition-delay: 0.12s;
}

h4[data-h-anim] {
	transition-delay: 0.16s;
}

h5[data-h-anim] {
	transition-delay: 0.20s;
}

h6[data-h-anim] {
	transition-delay: 0.23s;
}

/* Hero headings — skip blur (already in active slide animation) */
.hero-carousel h1[data-h-anim],
.hero-carousel h2[data-h-anim] {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
	transition: none !important;
}

/* On dark backgrounds keep the shimmer bright */
.science-section .heading-gradient,
.cta-lifecare .heading-gradient {
	background: linear-gradient(270deg, var(--accent) 0%, #ffffff 45%, var(--accent) 100%);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientPan 5s ease infinite;
}

/* ─────────────────────────────────────────────────────────────────
   5. ANIMATED UNDERLINE ACCENT  — add class .heading-underline
───────────────────────────────────────────────────────────────── */
.heading-underline {
	position: relative;
	display: inline-block;
}

.heading-underline::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	height: 3px;
	width: 0;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--accent), var(--primary));
	transition: width 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.heading-underline.h-visible::after,
.h-visible .heading-underline::after {
	width: 100%;
}

/* ─────────────────────────────────────────────────────────────────
   6. LEFT ACCENT BAR  — add class .heading-accent-bar
───────────────────────────────────────────────────────────────── */
.heading-accent-bar {
	position: relative;
	padding-left: 20px;
}

.heading-accent-bar::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10%;
	height: 80%;
	width: 4px;
	border-radius: 4px;
	background: linear-gradient(180deg, var(--accent), var(--primary));
	transform: scaleY(0);
	transform-origin: top center;
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.heading-accent-bar.h-visible::before,
.h-visible .heading-accent-bar::before {
	transform: scaleY(1);
}

/* ─────────────────────────────────────────────────────────────────
   7. WORD-BY-WORD REVEAL  — add class .heading-words  (JS splits)
───────────────────────────────────────────────────────────────── */
.heading-words .hw {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	margin-right: 0.28em;
}

.heading-words .hw-inner {
	display: inline-block;
	transform: translateY(110%);
	transition: transform 0.70s cubic-bezier(0.16, 1, 0.3, 1);
}

.heading-words.h-visible .hw-inner {
	transform: translateY(0);
}

/* Stagger each word */
.heading-words .hw:nth-child(1) .hw-inner {
	transition-delay: 0.00s;
}

.heading-words .hw:nth-child(2) .hw-inner {
	transition-delay: 0.07s;
}

.heading-words .hw:nth-child(3) .hw-inner {
	transition-delay: 0.14s;
}

.heading-words .hw:nth-child(4) .hw-inner {
	transition-delay: 0.21s;
}

.heading-words .hw:nth-child(5) .hw-inner {
	transition-delay: 0.28s;
}

.heading-words .hw:nth-child(6) .hw-inner {
	transition-delay: 0.35s;
}

.heading-words .hw:nth-child(7) .hw-inner {
	transition-delay: 0.42s;
}

.heading-words .hw:nth-child(8) .hw-inner {
	transition-delay: 0.49s;
}

.heading-words .hw:nth-child(9) .hw-inner {
	transition-delay: 0.56s;
}

.heading-words .hw:nth-child(10) .hw-inner {
	transition-delay: 0.63s;
}

/* ─────────────────────────────────────────────────────────────────
   8. SECTION-CONTEXT COLOR RULES
───────────────────────────────────────────────────────────────── */
/* Light / cream sections */
.programs-section h1,
.programs-section h2,
.programs-section h3 {
	color: var(--primary);
}

.programs-section h4,
.programs-section h5,
.programs-section h6 {
	color: var(--dark);
}

/* Testi / neutral */
.testi-section h2,
.testi-section h3 {
	color: var(--primary);
}

/* Dark green (science) */
.science-section h1,
.science-section h2,
.science-section h3 {
	color: var(--white);
}

.science-section h4,
.science-section h5,
.science-section h6 {
	color: rgba(255, 255, 255, 0.85);
}

/* CTA dark */
.cta-lifecare h1,
.cta-lifecare h2,
.cta-lifecare h3 {
	color: var(--white);
}

.cta-lifecare h4,
.cta-lifecare h5,
.cta-lifecare h6 {
	color: rgba(255, 255, 255, 0.85);
}

/* Corporate */
.corporate-section h2,
.corporate-section h3 {
	color: var(--primary);
}

/* ─────────────────────────────────────────────────────────────────
   9.  RESPONSIVE BREAKPOINTS
───────────────────────────────────────────────────────────────── */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {

	h1,
	.h1 {
		font-size: clamp(28px, 5.5vw, 48px);
	}

	h2,
	.h2 {
		font-size: clamp(24px, 4.2vw, 40px);
	}

	h3,
	.h3 {
		font-size: clamp(20px, 3.2vw, 32px);
	}

	h4,
	.h4 {
		font-size: clamp(17px, 2.6vw, 26px);
	}

	h5,
	.h5 {
		font-size: clamp(14px, 2.0vw, 20px);
	}

	h6,
	.h6 {
		font-size: clamp(13px, 1.6vw, 16px);
	}

	.title-type-1 {
		font-size: clamp(24px, 5vw, 44px) !important;
	}

	.title-type-2 {
		font-size: clamp(24px, 5vw, 48px) !important;
	}

	.science-title {
		font-size: clamp(22px, 4.5vw, 40px) !important;
	}

	.hero-title-new {
		font-size: clamp(26px, 5.5vw, 48px) !important;
	}

	.feature-headline {
		font-size: clamp(22px, 4vw, 40px) !important;
	}
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {

	h1,
	.h1 {
		font-size: clamp(26px, 7.5vw, 38px);
		line-height: 1.12;
	}

	h2,
	.h2 {
		font-size: clamp(22px, 6.5vw, 32px);
		line-height: 1.15;
	}

	h3,
	.h3 {
		font-size: clamp(18px, 5.5vw, 26px);
		line-height: 1.22;
	}

	h4,
	.h4 {
		font-size: clamp(16px, 4.8vw, 22px);
	}

	h5,
	.h5 {
		font-size: clamp(14px, 4.2vw, 18px);
	}

	h6,
	.h6 {
		font-size: 13px;
	}

	.title-type-1 {
		font-size: clamp(22px, 7vw, 34px) !important;
		line-height: 1.14 !important;
	}

	.title-type-2 {
		font-size: clamp(22px, 7vw, 36px) !important;
		line-height: 1.12 !important;
	}


	.science-title {
		font-size: clamp(20px, 6.5vw, 32px) !important;
	}

	.hero-title-new {
		font-size: clamp(24px, 7vw, 36px) !important;
	}

	.feature-headline {
		font-size: clamp(20px, 6vw, 32px) !important;
	}

	/* Reduce blur-based animation for performance */
	h1[data-h-anim],
	h2[data-h-anim],
	h3[data-h-anim] {
		filter: none;
	}

	h1[data-h-anim].h-visible,
	h2[data-h-anim].h-visible,
	h3[data-h-anim].h-visible {
		filter: none;
	}
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {

	h1,
	.h1 {
		font-size: clamp(24px, 8.5vw, 34px);
	}

	h2,
	.h2 {
		font-size: clamp(20px, 7.5vw, 28px);
	}

	h3,
	.h3 {
		font-size: clamp(17px, 6.5vw, 24px);
	}

	h4,
	.h4 {
		font-size: clamp(15px, 5.5vw, 20px);
	}

	h5,
	.h5 {
		font-size: clamp(13px, 5vw, 17px);
	}

	h6,
	.h6 {
		font-size: 12px;
	}

	.title-type-1 {
		font-size: clamp(20px, 8vw, 30px) !important;
	}

	.title-type-2 {
		font-size: clamp(20px, 8vw, 30px) !important;
	}


	.science-title {
		font-size: clamp(18px, 7.5vw, 28px) !important;
	}

	.hero-title-new {
		font-size: clamp(22px, 8vw, 32px) !important;
	}

	.feature-headline {
		font-size: clamp(18px, 7vw, 26px) !important;
	}
}

/* ─────────────────────────────────────────────────────────────────
   10. REDUCED MOTION SUPPORT  (accessibility)
───────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

	h1[data-h-anim],
	h2[data-h-anim],
	h3[data-h-anim],
	h4[data-h-anim],
	h5[data-h-anim],
	h6[data-h-anim] {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
		transition: none !important;
	}

	.heading-gradient,
	.hl,
	.title-type-1 .hl,
	.hero-title-new .accent-text {
		animation: none !important;
		background-position: 0% 50% !important;
	}

	.heading-words .hw-inner {
		transform: none !important;
		transition: none !important;
	}
}

/* --------------complete system---------------------------- */
.complete-system {
	position: relative;
	padding: 90px 0;
	overflow: hidden;
}

.complete-system::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../img/side-img/lifecare-bg-img.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scaleX(-1);
	/* Flip horizontally */
	z-index: -1;
}

.complete-system-box {
	background: rgb(81 93 25 / 15%);
	backdrop-filter: blur(36px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	padding: 40px;
}

.system-header,
.system-row {
	display: grid;
	grid-template-columns: 50px 110px 240px 1fr;
	align-items: center;
	column-gap: 18px;
}

.system-header {
	padding: 0 10px 18px;
	border-bottom: 1px solid #d8d8d8;
	color: #0f3d2e;
	font-weight: 700;
	font-size: 1.4rem;
}

.system-row {
	padding: 18px 10px;
	border-bottom: 1px solid #e4e4e4;
}


.system-btn-light {
	background: #0f3d2e;
	color: #fff;
	padding: 15px;
	border-radius: 5px;
}

.system-btn-dark {
	/* background:; */
	color: #0f3d2e;
	border: 2px solid #0f3d2e;
	padding: 13px;
	border-radius: 5px;
	/* margin-left: 10px; */
}

.system-btn-light:hover,
.system-btn-dark:hover {
	transform: translateY(-4px);
}

.system-layout .system-icon,
.system-number {
	color: var(--primary);
	font-size: 20px;
}

@media(max-width:991px) {

	.system-layout {
		grid-template-columns: 1fr;
	}

	.system-header {
		display: none;
	}

	.system-row {
		grid-template-columns: 50px 70px 1fr;
	}

	.system-desc {
		grid-column: 2 / -1;
		margin-top: 10px;
	}

	.system-buttons {
		grid-template-columns: 1fr;
	}
}

/* ---------------------FAQ Section ------------------*/
.faq-section {
	padding: 90px 0;
	background: #fff;
}

.faq-node {
	background: #fff;
	border: 1px solid #e8ece8;
	border-radius: 18px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-node:hover {
	border-color: rgba(189, 250, 4, 0.5);
}

.faq-node.active {
	border-color: var(--accent);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-node-header {
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	gap: 20px;
}

.faq-node-header h3 {
	margin: 0;
	font-size: clamp(16px, 1.2vw, 20px);
	font-weight: 600;
	color: var(--primary);
	line-height: 1.4;
}

.faq-node-header i {
	flex-shrink: 0;
	font-size: 14px;
	transition: transform 0.35s ease;
}

.faq-node.active .faq-node-header i {
	transform: rotate(180deg);
}

.faq-node-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-node-content {
	padding: 0 28px 24px;
	line-height: 1.8;
	font-size: 15px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.faq-node-header {
		padding: 18px 20px;
	}

	.faq-node-content {
		padding: 0 20px 20px;
	}

	.faq-node-header h3 {
		font-size: 16px;
	}
}

/* =======================privacy POLICY======================= */

.privacy-policy-container,
.privacy-container {
    width: min(1280px, calc(100% - 64px));
    margin-inline: auto;
}

.privacy-hero {
    position: relative;
    padding: 2px 0 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.privacy-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
 }

.privacy-banner {
    position: relative;
    isolation: isolate;
     display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(40px, 7vw, 100px);
    border-radius: var(--privacy-radius-lg);
         
     box-shadow: var(--privacy-shadow);
}

.privacy-banner::before {
    position: absolute;
    right: -100px;
    bottom: -160px;
    z-index: -1;
    width: 470px;
    height: 470px;
    content: "";
    border: 1px solid rgba(189, 250, 4, 0.28);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(189, 250, 4, 0.04),
        0 0 0 75px rgba(189, 250, 4, 0.025);
}

.privacy-banner::after {
    position: absolute;
    top: 45px;
    right: 80px;
    width: 100px;
    height: 100px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.privacy-hero .privacy-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.privacy-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
 
    color: var(--privacy-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(14px);
    font-size: 12px;
    letter-spacing: 0.03em;
}

.privacy-meta svg {
    width: 17px;
    height: 17px;
    color: var(--privacy-accent);
}

.privacy-hero h1 {
    font-family: "Inter", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.08;
    font-weight: 800;
    color: #081a3d;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.privacy-hero h1 span {
    color: var(--brand-green);
    font-style: italic;
}

.privacy-hero .privacy-content > p {
    max-width: 600px;
    margin: 0;
     font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.8;
}

.privacy-breadcrumb {
    margin-top: 34px;
}

.privacy-breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.86rem;
}

.privacy-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-breadcrumb a {
    color:var(--primary);
	font-weight: 600;
}

.privacy-breadcrumb a:hover {
    color: var(--privacy-accent);
}

.privacy-breadcrumb .active {
    color: var(--privacy-accent);
}

/* =========================================================
   CONTENT LAYOUT
========================================================= */

.privacy-policy-section {
    position: relative;
	padding: 50px 0;
 }

.privacy-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: clamp(35px, 6vw, 90px);
    align-items: start;
}

.privacy-sidebar {
    position: sticky;
    top: 60px;
}

.privacy-sidebar-label {
    display: block;
    margin-bottom: 14px;
    color: var(--privacy-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.privacy-nav {
    padding: 18px 10px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--privacy-border);
    border-radius: var(--privacy-radius-md);
    box-shadow: 0 14px 40px rgba(15, 61, 46, 0.06);
    backdrop-filter: blur(10px);
}

.privacy-nav a {
    position: relative;
    display: block;
    padding: 8px 0 8px 16px;
    color: var(--privacy-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.privacy-nav a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--privacy-accent);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.privacy-nav a:hover,
.privacy-nav a:first-child {
    color: var(--privacy-primary);
    font-weight: 700;
}

.privacy-nav a:hover::before,
.privacy-nav a:first-child::before {
    opacity: 1;
}

/* =========================================================
   INTRODUCTION
========================================================= */

.privacy-intro {
    position: relative;
    margin-bottom: 34px;
    padding: 18px 0 28px;
}

.privacy-intro::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 4px;
    content: "";
    background: var(--privacy-accent);
    border-radius: 999px;
}

.privacy-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--privacy-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.privacy-intro h2 {
    max-width: 700px;
    margin: 0 0 12px;
    color: var(--privacy-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.privacy-intro p {
    max-width: 720px;
    margin: 0;
    color: var(--privacy-text);
    font-size: 1rem;
}

/* =========================================================
   POLICY CARDS
========================================================= */

.privacy-card {
    position: relative;
    scroll-margin-top: 30px;
    margin-bottom: 18px;
    padding: 30px 32px 30px 38px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--privacy-border);
    border-radius: var(--privacy-radius-md);
    box-shadow: 0 10px 35px rgba(15, 61, 46, 0.04);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.privacy-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    content: "";
    background: linear-gradient(
        180deg,
        var(--privacy-accent),
        var(--privacy-primary)
    );
}

.privacy-card:hover {
    border-color: rgba(22, 99, 63, 0.25);
    box-shadow: 0 20px 45px rgba(15, 61, 46, 0.1);
    transform: translateY(-4px);
}

.privacy-card h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 12px;
    color: var(--privacy-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.privacy-card h3 span {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--privacy-primary);
    background: rgba(189, 250, 4, 0.4);
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.privacy-card p {
    margin: 0;
    color: var(--privacy-text);
    font-size: 0.94rem;
    line-height: 1.85;
}

/* =========================================================
   CONTACT CARD
========================================================= */

.privacy-contact-card {
    position: relative;
    scroll-margin-top: 30px;
    margin-top: 38px;
    padding: 36px;
    overflow: hidden;
    color: var(--privacy-white);
    background:
        linear-gradient(
            135deg,
            rgba(15, 61, 46, 0.98),
            rgba(22, 99, 63, 0.92)
        );
    border-radius: var(--privacy-radius-md);
    box-shadow: var(--privacy-shadow);
}

.privacy-contact-card::after {
    position: absolute;
    right: -65px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    content: "";
    border: 1px solid rgba(189, 250, 4, 0.35);
    border-radius: 50%;
    box-shadow: 0 0 0 25px rgba(189, 250, 4, 0.05);
}

.privacy-contact-card h3,
.privacy-contact-card p,
.privacy-contact-details {
    position: relative;
    z-index: 1;
}

.privacy-contact-card h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
	color: var(--accent);
}

.privacy-contact-card p {
    max-width: 550px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.75);
}

.privacy-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.privacy-contact-details a {
    padding: 11px 16px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
}

.privacy-contact-details a:hover {
    color: var(--bg-light);
    background: var(--privacy-accent);
    border-color: var(--bg-cream);
}

/* =========================================================
   CONSENT AND LEGAL NOTE
========================================================= */

.privacy-consent {
    margin-top: 20px;
    padding: 18px 20px;
    color: var(--privacy-primary);
    background: rgba(189, 250, 4, 0.22);
    border: 1px solid rgba(22, 99, 63, 0.15);
    border-radius: 14px;
    font-size: 0.88rem;
}

.privacy-consent strong {
    color: var(--privacy-dark);
}

.privacy-legal-note {
    margin: 14px 0 0;
    color: var(--privacy-muted);
    font-size: 0.78rem;
    font-style: italic;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {
    .privacy-policy-container,
    .privacy-container {
        width: min(100% - 40px, 760px);
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .privacy-sidebar {
        position: static;
    }

    .privacy-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px 22px;
    }
}

@media (max-width: 600px) {
    .privacy-policy-container,
    .privacy-container {
        width: min(100% - 28px, 1280px);
    }

    .privacy-hero {
        padding: 14px 0 50px;
    }

    .privacy-banner {
        min-height: 540px;
        align-items: flex-end;
        padding: 30px 24px;
        border-radius: 24px;
        background:
            linear-gradient(
                180deg,
                rgba(5, 43, 32, 0.15) 0%,
                rgba(5, 43, 32, 0.96) 76%
            ),
            url("../img/bg-image/privacy-policy-banner.png") center / cover
                no-repeat;
    }

    .privacy-banner::before {
        right: -180px;
        bottom: -140px;
        width: 360px;
        height: 360px;
    }

    .privacy-banner::after {
        display: none;
    }

    .privacy-meta {
        margin-bottom: 18px;
        font-size: 0.72rem;
    }

    .privacy-hero h1 {
        font-size: clamp(3rem, 16vw, 4.5rem);
    }

    .privacy-hero .privacy-content > p {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .privacy-nav {
        display: block;
        max-height: 220px;
        overflow-y: auto;
    }

    .privacy-card {
        padding: 25px 20px 25px 27px;
        border-radius: 16px;
    }

    .privacy-card h3 {
        align-items: flex-start;
        font-size: 1.08rem;
    }

    .privacy-card h3 span {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
    }

    .privacy-card p {
        font-size: 0.88rem;
    }

    .privacy-contact-card {
        padding: 28px 20px;
    }

    .privacy-contact-details {
        flex-direction: column;
    }

    .privacy-contact-details a {
        display: block;
        text-align: center;
    }
}