:root {
	--primary-color: #3fd3ff;
	--primary-dark: #2bb8d9;
	--bg-dark: #0a0a0a;
	--bg-secondary: #1a1a1a;
	--bg-card: #2a2a2a;
	--text-light: #ffffff;
	--text-muted: #b0b0b0;
	--gradient-primary: linear-gradient(135deg, #3fd2ff95 0%, #2bb9d995 100%);
	--gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
}

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px;
}

html {
	scroll-behavior: smooth;
}

.custom-navbar {
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	padding: 1rem 0;
}

.navbar-brand {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-light) !important;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.navbar-brand .logo {
	height: 40px;
	width: auto;
	max-width: 50px;
	object-fit: contain;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.navbar-brand:hover .logo {
	transform: scale(1.1);
}

.navbar-brand .brand-text {
	font-family: "Science Gothic", sans-serif;
	display: inline-block;
	font-size: 0.7rem;
	color: white !important;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nav-link {
	color: var(--text-muted) !important;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: var(--primary-color) !important;
}

.nav-link::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 50%;
	background: var(--gradient-primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.nav-link:hover::after {
	width: 100%;
}

.btn-primary {
	background: var(--gradient-primary);
	border: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 30px;
	border-radius: 50px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(63, 211, 255, 0.3);
}

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

.cta-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
	z-index: -1;
}

.cta-btn:hover::before {
	left: 100%;
}

.pulse-btn {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(63, 211, 255, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(63, 211, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(63, 211, 255, 0);
	}
}

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 80px;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(63, 211, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.hero-title {
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 2rem;
}

.glow-text {
	text-shadow: 0 0 20px rgba(63, 211, 255, 0.5);
}

.intro-img {
	width: 350px;
	height: 350px;
	border-radius: 10px;
	overflow: hidden;
	border: 3px solid var(--primary-color);
	position: relative;
}

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

.image-placeholder {
	background: var(--bg-card);
	border-radius: 15px;
	aspect-ratio: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(63, 211, 255, 0.2);
	transition: all 0.3s ease;
}

.image-placeholder:hover {
	border-color: var(--primary-color);
	transform: scale(1.05);
}

.about-section {
	padding: 6rem 0;
}

.section-title {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 2rem;
}

.highlight-text {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
	font-size: 1.1rem;
}

.transformation-showcase {
	padding: 1rem;
}

.transformation-card {
	flex: 1;
	position: relative;
	max-width: 82%;
	margin: 0 auto;
	box-sizing: border-box;
	background: var(--bg-card);
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(63, 211, 255, 0.1);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.testimonial-card {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	box-sizing: border-box;
	background: var(--bg-card);
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(63, 211, 255, 0.1);
	height: 100%;
}

.cert-img, .cert-img-modal {
	width: auto;
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	border: 3px solid var(--primary-color);
	position: relative;
}

.cert-img-modal {
	height: 85vh;
}

.results-section {
	background: var(--bg-dark);
	padding: 6rem 0;
}

.testimonial-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-color);
	box-shadow: 0 20px 40px rgba(63, 211, 255, 0.1);
}

.client-name {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.client-age {
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.testimonial-text {
	font-style: italic;
	font-size: x-small;
	font-family: "Science Gothic", sans-serif;
}

.stats-section {
	padding: 4rem 0;
	background: rgba(23, 23, 23, 0.8);
	backdrop-filter: blur(10px);
}

.stat-card {
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease;
}

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

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.method-section {
	background: var(--bg-secondary);
	padding: 6rem 0;
}

.method-card {
	background: var(--bg-card);
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(63, 211, 255, 0.1);
	height: 100%;
}

.method-card:hover {
	transform: translateY(-10px);
	border-color: var(--primary-color);
	box-shadow: 0 20px 40px rgba(63, 211, 255, 0.1);
}

.method-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.method-icon i {
	font-size: 2rem;
	color: white;
}

.method-card h4 {
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.method-features {
	list-style: none;
	text-align: left;
	margin-top: 1.5rem;
}

.method-features li {
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
}

.method-features i {
	margin-right: 0.5rem;
}

.apply-section {
	background: var(--gradient-dark);
	padding: 6rem 0;
	position: relative;
}

.apply-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(63, 211, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

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

.footer {
	background: var(--bg-dark);
	border-top: 1px solid rgba(63, 211, 255, 0.2);
}

.body-txt {
	font-family: "Science Gothic", sans-serif !important;
}

.headers-txt {
	font-family: "Oswald", sans-serif;
}

.accordion-dark {
	--bs-accordion-bg: #212529;
	--bs-accordion-color: #f8f9fa;
	--bs-accordion-border-color: #495057;
	--bs-accordion-btn-bg: #212529;
	--bs-accordion-btn-color: #f8f9fa;
	--bs-accordion-active-bg: #343a40;
	--bs-accordion-active-color: #ffffff;
}

.accordion-dark .accordion-button::after {
	filter: invert(1);
}

.videoTestim {
	min-height: 60vh;
	width: 65vw;
}

body.modal-open {
	overflow: auto !important;
	padding-right: 0 !important;
}

.modal-backdrop {
	display: none !important;
	pointer-events: none !important;
}

.social-links {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.social-link {
	width: 40px;
	height: 40px;
	background: var(--bg-card);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary-color);
	color: white;
	transform: translateY(-3px);
}

.animate-fade-in {
	animation: fadeIn 1s ease-out;
}

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

@media (max-width: 320px) {
	.hero-title {
		font-size: 1.4rem;
		line-height: 1.1;
	}

	.cta-btn {
		font-size: 0.8rem;
		padding: 8px 18px;
		margin: 0 auto !important;
		display: block !important;
		width: fit-content;
	}

	.navbar-brand {
		font-size: 0.8rem;
		gap: 0.1rem;
	}

	.navbar-brand .logo {
		height: 20px;
	}

	.brand-text {
		font-size: 0.48rem !important;
		max-width: 85px;
		display: inline-block !important;
	}
}

@media (max-width: 360px) {
	.hero-content {
		padding: 0 0.2rem;
	}

	.hero-title {
		font-size: 1.5rem;
	}

	.cta-btn {
		font-size: 0.85rem;
		padding: 10px 20px;
		margin: 0 auto !important;
		display: block !important;
		width: fit-content;
	}

	.navbar-brand {
		font-size: 0.85rem;
		gap: 0.15rem;
		justify-content: flex-start;
	}

	.navbar-brand .logo {
		height: 22px;
	}

	.brand-text {
		font-size: 0.5rem !important;
		max-width: 90px;
		display: inline-block !important;
	}
}

@media (max-width: 375px) {
	.navbar-brand {
		font-size: 0.9rem;
		gap: 0.2rem;
	}

	.navbar-brand .logo {
		height: 24px;
	}

	.brand-text {
		font-size: 0.52rem !important;
		max-width: 95px;
		display: inline-block !important;
	}
}

@media (max-width: 390px) {
	.navbar-brand {
		font-size: 0.95rem;
		gap: 0.2rem;
	}

	.navbar-brand .logo {
		height: 26px;
	}

	.brand-text {
		font-size: 0.55rem !important;
		max-width: 100px;
		display: inline-block !important;
	}
}

@media (max-width: 400px) {
	.hero-content {
		padding: 0 0.3rem;
	}

	.hero-title {
		font-size: 1.6rem;
		text-align: center;
		line-height: 1.1;
	}

	.cta-btn {
		font-size: 0.9rem;
		padding: 10px 22px;
		margin: 0 auto !important;
		display: block !important;
		width: fit-content;
		white-space: nowrap;
	}

	.stat-number {
		font-size: 1.8rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.method-features li {
		font-size: 0.9rem;
	}

	.btn-lg {
		padding: 8px 16px;
		font-size: 0.85rem;
	}

	.testimonial-card {
		padding: 1.5rem 1rem;
	}
}

@media (max-width: 410px) {
	.brand-text {
		font-size: 0.58rem !important;
		max-width: 105px;
		display: inline-block !important;
	}
}

@media (max-width: 428px) {
	.navbar-brand {
		font-size: 1rem;
		gap: 0.25rem;
	}

	.navbar-brand .logo {
		height: 28px;
	}

	.brand-text {
		font-size: 0.6rem !important;
		max-width: 110px;
		display: inline-block !important;
	}
}

@media (max-width: 480px) {
	.hero-content {
		padding: 0 0.5rem;
	}

	.hero-title {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}

	.cta-btn {
		font-size: 0.95rem;
		padding: 12px 24px;
		margin: 0 auto !important;
		display: block !important;
		width: fit-content;
	}
}

@media (max-width: 500px) {
	.method-card,
	.testimonial-card {
		padding: 1.5rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.transformation-card {
		max-width: 90%;
	}

	.brand-text {
		font-size: 0.65rem !important;
		max-width: 120px;
		display: inline-block !important;
	}
}

@media (max-width: 540px) {
	.brand-text {
		font-size: 0.7rem !important;
		max-width: 130px;
		display: inline-block !important;
	}
}

@media (max-width: 576px) {
	.hero-content {
		padding: 0 1rem;
		text-align: center;
	}

	.hero-title {
		font-size: 2rem;
		text-align: center;
		line-height: 1.2;
	}

	.cta-btn {
		font-size: 1rem;
		padding: 12px 24px;
		margin: 0 auto !important;
		display: block !important;
		width: fit-content;
		text-align: center;
	}

	.method-card,
	.testimonial-card {
		padding: 1.5rem;
	}

	.btn-lg {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.navbar-brand {
		font-size: 1.1rem;
	}

	.navbar-brand .logo {
		height: 30px;
	}

	.brand-text {
		font-size: 0.75rem !important;
		max-width: 140px;
		display: inline-block !important;
	}

	.transformation-card {
		max-width: 90%;
	}

	.testimonial-card {
		padding: 1.8rem 1.3rem;
	}
}

@media (max-width: 599px) {
	.cert-img {
		height: 280px;
	}

	.brand-text {
		font-size: 0.8rem !important;
		max-width: 160px;
		display: inline-block !important;
	}
}

@media (max-width: 768px) {
	.hero-content {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.hero-title {
		font-size: 2.5rem;
		text-align: center;
		margin-bottom: 1.5rem;
	}

	.hero-content .cta-btn {
		align-self: center;
		margin: 0 auto;
		display: block;
		width: fit-content;
	}

	.hero-section .row {
		justify-content: center;
		text-align: center;
	}

	.hero-section .col-lg-6:first-child {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.section-title {
		font-size: 2rem;
	}

	.transformation-card {
		max-width: 80%;
		flex-direction: column;
	}

	.stats-section {
		padding: 2rem 0;
	}

	.stat-number {
		font-size: 2rem;
	}

	.social-links {
		justify-content: center;
		margin-top: 1rem;
	}

	.navbar-brand {
		font-size: 1.3rem;
	}

	.navbar-brand .logo {
		height: 35px;
	}

	.brand-text {
		font-size: 0.85rem !important;
		max-width: 180px;
		display: inline-block !important;
	}

	.videoTestim {
		min-height: 30vh;
		width: 80vw;
	}

	.testimonial-card {
		padding: 2rem 1.5rem;
		min-height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.client-name {
		margin-top: 1rem;
		margin-bottom: 0.5rem;
	}

	.client-age {
		margin-bottom: 1rem;
	}

	.testimonial-text {
		margin-top: 0;
		flex-grow: 1;
	}

	.image-placeholder img {
		width: 100%;
		height: auto;
		object-fit: cover;
		transition: transform 0.3s ease;
		display: block;
	}
}

@media (max-width: 912px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-section {
		padding-top: 90px;
	}
}

@media (max-width: 991px) {
	.hero-content {
		text-align: center;
	}

	.hero-content .btn {
		display: inline-block;
		margin: 0 auto;
	}

	.results-section .text-center {
		margin-bottom: 3rem;
	}

	.testimonial-card {
		margin-bottom: 2rem;
	}

	.testimonial-text {
		line-height: 1.7;
		margin-top: 1rem;
	}
}

@media (max-width: 992px) {
	.hero-title {
		font-size: 2.2rem;
	}

	.method-card {
		padding: 2rem;
	}

	.btn-lg {
		padding: 10px 24px;
		font-size: 0.95rem;
	}
}

@media (min-width: 412px) and (max-width: 499px) {
	.hero-title {
		font-size: 1.6rem;
	}

	.btn-lg {
		font-size: 0.85rem;
		padding: 8px 18px;
	}

	.nav-link {
		font-size: 0.9rem;
	}
}

@media (min-width: 500px) and (max-width: 991px) {
	.results-section .row {
		gap: 1.5rem;
		justify-content: center;
	}

	.testimonial-text {
		text-align: left;
		padding: 0 0.5rem;
		margin-top: 1rem;
	}

	.client-name {
		margin-bottom: 0.3rem;
		margin-top: 1rem;
	}

	.client-age {
		margin-bottom: 1rem;
	}

	.cert-img-modal {
		height: 70vh;
	}
}

@media (min-width: 520px) and (max-width: 560px) {
	.testimonial-card {
		padding: 2rem 1.8rem;
		max-width: 400px;
		margin: 0 auto;
	}

	.testimonial-text {
		line-height: 1.6;
		text-align: left;
		padding: 0 0.5rem;
	}

	.client-name {
		font-size: 1.1rem;
	}

	.client-age {
		font-size: 0.95rem;
	}

	.results-section .col-lg-4 {
		flex: 0 0 auto;
		width: 100%;
		margin-bottom: 2.5rem;
	}
}

@media (min-width: 540px) and (max-width: 599px) {
	.hero-title {
		font-size: 1.8rem;
	}

	.transformation-card {
		max-width: 85%;
	}

	.cta-btn {
		font-size: 0.9rem;
		padding: 10px 22px;
	}
}

@media (min-width: 700px) and (max-width: 799px) {
	.section-title {
		font-size: 2.2rem;
	}

	.hero-title {
		font-size: 2.3rem;
	}

	.transformation-card {
		max-width: 75%;
	}

	.method-card,
	.testimonial-card {
		padding: 2rem;
	}
}

@media (min-width: 750px) and (max-width: 780px) {
	.testimonial-card {
		padding: 2rem 1.5rem;
		max-width: 300px;
		margin: 0 auto;
	}

	.testimonial-text {
		line-height: 1.5;
	}

	.client-name {
		font-size: 1rem;
	}

	.client-age {
		font-size: 0.9rem;
	}

	.results-section .col-lg-4 {
		flex: 0 0 auto;
		width: 100%;
		max-width: 320px;
		margin: 0 auto 2rem auto;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.results-section .container {
		max-width: 720px;
	}

	.testimonial-card {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.testimonial-text {
		flex-grow: 1;
		display: flex;
		align-items: center;
		text-align: center;
	}
}

@media (min-width: 780px) and (max-width: 820px) {
	.testimonial-card {
		padding: 2.2rem 1.8rem;
		max-width: 320px;
		margin: 0 auto;
	}

	.testimonial-text {
		line-height: 1.6;
	}

	.client-name {
		font-size: 1.1rem;
	}

	.client-age {
		font-size: 0.95rem;
	}

	.results-section .row {
		justify-content: center;
	}

	.results-section .col-lg-4 {
		flex: 0 0 auto;
		width: 100%;
		max-width: 350px;
		margin-bottom: 2rem;
	}
}

@media (min-width: 812px) and (max-width: 899px) {
	.section-title {
		font-size: 2.5rem;
	}

	.hero-title {
		font-size: 2.6rem;
	}

	.btn-lg {
		font-size: 1rem;
		padding: 12px 28px;
	}
}

@media (min-width: 900px) and (max-width: 950px) {
	.testimonial-card {
		padding: 2.5rem 2rem;
		max-width: 350px;
		margin: 0 auto;
	}

	.testimonial-text {
		line-height: 1.7;
	}

	.client-name {
		font-size: 1.2rem;
	}

	.client-age {
		font-size: 1rem;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.results-section .col-lg-4 {
		flex: 0 0 auto;
		width: 31%;
		margin: 0 1% 2rem 1%;
	}

	.testimonial-card {
		padding: 2rem 1.5rem;
	}

	.testimonial-text {
		font-size: x-small;
		line-height: 1.6;
	}
}

@media (min-width: 300px) and (max-width: 650px) {
	.cert-img-modal {
		height: 40vh;
	}

	.cert-img {
		height: 250px;
	}
}