﻿/*================ HERO =================*/

.hero-wrapper {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.hero-content {
	height: 520px;
	padding: 35px 50px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	opacity: 0;
	transform: translateX(-70px);
	transition: all .9s cubic-bezier(.22,1,.36,1);
}

	.hero-content.show {
		opacity: 1;
		transform: translateX(0);
	}

/*================ HEADING =================*/

.hero-title {
	margin: 0;
	font-size: 44px;
	font-weight: 800;
	line-height: 1.15;
	color: #222;
}

	.hero-title span {
		display: block;
		margin-top: 8px;
		font-size: 30px;
		color: #e53935;
		font-weight: 700;
	}

/*================ SUB TITLE =================*/

.hero-subtitle {
	margin-top: 18px;
	margin-bottom: 10px;
	color: #2E7D32;
	font-size: 23px;
	font-weight: 700;
}

.hero-line {
	width: 90px;
	height: 5px;
	background: #FFC107;
	border-radius: 50px;
	margin-bottom: 22px;
}

/*================ DESCRIPTION =================*/

.hero-desc {
	color: #666;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 10px;
}

/*================ BUTTONS =================*/

.hero-buttons {
	display: flex;
	gap: 15px;
	margin-top: 18px;
	flex-wrap: wrap;
}

	.hero-buttons .btn {
		padding: 12px 28px;
		border-radius: 50px;
		font-size: 15px;
		font-weight: 600;
		transition: .35s;
	}

		.hero-buttons .btn i {
			margin-right: 8px;
		}

.hero-btn-primary {
	color: #fff;
	border: none;
	background: linear-gradient(135deg,#5b21b6,#7c3aed);
	box-shadow: 0 12px 30px rgba(124,58,237,.25);
}

	.hero-btn-primary:hover {
		color: #fff;
		transform: translateY(-4px);
	}

.hero-btn-outline {
	background: #fff;
	color: #333;
	border: 2px solid #ddd;
}

	.hero-btn-outline:hover {
		color: #5b21b6;
		border-color: #7c3aed;
		transform: translateY(-4px);
	}

/*================ IMAGE =================*/

.hero-image {
	
	height: 520px;
	overflow: hidden;
	opacity: 0;
	transform: translateX(70px);
	transition: all .9s cubic-bezier(.22,1,.36,1);
}

	.hero-image.show {
		opacity: 1;
		transform: translateX(0);
	}

	.hero-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	/* Divider */

	.hero-image::before {
		content: "";
		position: absolute;
		left: 0;
		top: 8%;
		width: 3px;
		height: 84%;
		background: #8B5CF6;
		border-radius: 30px;
	}

.modal-account-option-card {
	background: #ffffff;
	border: 1px solid var(--purple-light);
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	text-align: center;
	color: var(--text-dark) !important;
	display: block;
	transition: all 0.2s ease;
	font-weight: 700;
}

	.modal-account-option-card:hover {
		border-color: var(--brand-purple);
		background: var(--purple-light);
		text-decoration: none;
	}

/*================ CTA =================*/

.cta-section {
	background: #fff;
}

.cta-wrapper {
	background: #30df1cfa;
	border-radius: 18px;
	padding: 20px 35px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.cta-img {
	max-height: 90px;
}

.cta-wrapper h3 {
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 8px;
}

.cta-wrapper p {
	color: rgba(255,255,255,.85);
	margin: 0;
	font-size: 17px;
}

/* Buttons */

.cta-buttons {
	display: flex;
	justify-content: end;
	gap: 15px;
	flex-wrap: wrap;
}

	.cta-buttons .btn {
		padding: 14px 28px;
		border-radius: 10px;
		font-weight: 700;
		transition: .35s;
	}

.btn-demo {
	background: #ff8a00;
	color: #fff;
}

	.btn-demo:hover {
		background: #ff9f2d;
		color: #fff;
		transform: translateY(-3px);
	}

.btn-register {
	background: #fff;
	color: #ff8a00;
}

	.btn-register:hover {
		background: #fff7ef;
		color: #ff8a00;
		transform: translateY(-3px);
	}

/* Responsive */

@media(max-width:991px) {

	.cta-wrapper {
		text-align: center;
		padding: 30px 20px;
	}

	.cta-img {
		margin-bottom: 20px;
	}

	.cta-buttons {
		justify-content: center;
		margin-top: 25px;
	}

	.cta-wrapper h3 {
		font-size: 28px;
	}
}
/*================ FLOATING VALUES =================*/

.value-box {
	position: absolute;
	left: 18px;
	width: 185px;
	padding: 10px 18px;
	background: #fff;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 600;
	box-shadow: 0 15px 35px rgba(0,0,0,.15);
	opacity: 0;
	transform: translateX(-40px);
	transition: all .6s ease;
}

.hero-image.show .value-box {
	opacity: 1;
	transform: translateX(0);
}

.hero-image.show .value1 {
	transition-delay: .2s;
}

.hero-image.show .value2 {
	transition-delay: .35s;
}

.hero-image.show .value3 {
	transition-delay: .5s;
}

.hero-image.show .value4 {
	transition-delay: .65s;
}

.hero-image.show .value5 {
	transition-delay: .8s;
}

	.value-box:hover {
		transform: translateX(8px);
	}

	.value-box i {
		width: 42px;
		height: 42px;
		border-radius: 50%;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}

/* Icon Colors */

.value1 i {
	background: #6366F1;
}

.value2 i {
	background: #EC4899;
}

.value3 i {
	background: #14B8A6;
}

.value4 i {
	background: #F59E0B;
}

.value5 i {
	background: #EF4444;
}

/* Position */

.value1 {
	top: 30px;
}

.value2 {
	top: 105px;
}

.value3 {
	top: 180px;
}

.value4 {
	top: 255px;
}

.value5 {
	top: 330px;
}

/*================ ANIMATION =================*/

@keyframes float {

	0%,100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes left {

	from {
		opacity: 0;
		transform: translateX(-50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes right {

	from {
		opacity: 0;
		transform: translateX(50px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/*================ RESPONSIVE =================*/

@media(max-width:991px) {

	.hero-content {
		height: auto;
		padding: 35px 25px;
	}

	.hero-title {
		font-size: 34px;
	}

		.hero-title span {
			font-size: 24px;
		}

	.hero-subtitle {
		font-size: 20px;
	}

	.hero-image {
		height: 420px;
	}

	.hero-buttons {
		flex-direction: column;
	}

		.hero-buttons .btn {
			width: 100%;
		}

	.value-box {
		display: none;
	}
}
/*================ WHY SECTION =================*/

.why-section {
	background: #fff;
}

.section-title h2 {
	font-size: 40px;
	font-weight: 800;
	color: #1b2452;
}

/*================ CARD =================*/

.why-card {
	background: #fff;
	border-radius: 22px;
	border: 1px solid #ececec;
	padding: 30px 20px;
	text-align: center;
	height: 100%;
	box-shadow: 0 8px 20px rgba(0,0,0,.05);
	/* Initial State */
	opacity: 0;
	transform: translateY(70px);
	transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}

	/* Scroll Animation */

	.why-card.show {
		opacity: 1;
		transform: translateY(0);
	}

	/* Hover */

	.why-card:hover {
		transform: translateY(-12px);
		box-shadow: 0 25px 45px rgba(0,0,0,.12);
		border-color: #7c3aed;
	}

/*================ ICON =================*/

.why-icon {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	transition: transform .35s ease;
}

/* Icon animation on scroll */

.why-card.show .why-icon {
	animation: pop .6s ease;
}

/* Hover */

.why-card:hover .why-icon {
	transform: rotate(10deg) scale(1.15);
}

/*================ ICON COLORS =================*/

.green {
	background: #e8f9db;
	color: #67b91d;
}

.blue {
	background: #e3f2ff;
	color: #2a8cff;
}

.purple {
	background: #f3e8ff;
	color: #8b5cf6;
}

.orange {
	background: #fff2e5;
	color: #f97316;
}

.pink {
	background: #ffe5f1;
	color: #ec4899;
}

.cyan {
	background: #dffcf9;
	color: #14b8a6;
}

/*================ TEXT =================*/

.why-card h5 {
	font-size: 22px;
	font-weight: 700;
	color: #1d2554;
	margin-bottom: 12px;
	min-height: 58px;
}

.why-card p {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 0;
}

/*================ POP EFFECT =================*/

@keyframes pop {

	0% {
		transform: scale(.5);
		opacity: 0;
	}

	70% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/*================ MOBILE =================*/

@media(max-width:991px) {

	.section-title h2 {
		font-size: 32px;
	}

	.why-card {
		padding: 25px 18px;
	}

		.why-card h5 {
			font-size: 18px;
			min-height: auto;
		}

	.why-icon {
		width: 70px;
		height: 70px;
		font-size: 28px;
	}
}


/*================ HOW IT WORKS =================*/

.how-section {
	background: #fff;
}

.how-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 14px;
	flex-wrap: wrap;
}

.how-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	opacity: 0;
	transform: translateY(60px);
	transition: .8s cubic-bezier(.22,1,.36,1);
}

	.how-step.show {
		opacity: 1;
		transform: translateY(0);
	}

/* Circle */

.step-circle {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 10px 25px rgba(0,0,0,.18);
	transition: .35s;
}

.how-step:hover .step-circle {
	transform: scale(1.1) rotate(10deg);
}

/* Colors */

.green {
	background: #7BC600;
}

.blue {
	background: #1696F5;
}

.purple {
	background: #8B36C9;
}

.orange {
	background: #F57C00;
}

/* Text */

.step-content h5 {
	margin: 0;
	color: #1d2554;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.step-content p {
	margin-top: 8px;
	color: #555;
	font-size: 15px;
	line-height: 1.6;
}

/* Arrow */

.step-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 18px;
	color: #222;
	font-size: 24px;
	opacity: 0;
	transform: translateX(-20px);
	transition: .6s;
}

	.step-arrow.show {
		opacity: 1;
		transform: translateX(0);
	}

	.step-arrow i {
		transition: .35s;
	}

	.step-arrow:hover i {
		transform: translateX(6px);
	}

/* Responsive */

@media(max-width:991px) {

	.how-wrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 25px;
	}

	.step-arrow {
		display: none;
	}

	.step-content h5 {
		font-size: 18px;
	}

	.step-content p {
		font-size: 14px;
	}
}

/*================ PROGRAM SECTION =================*/

.program-section {
	background: #f8fafc;
}

.program-card {
	background: #fff;
	border-radius: 22px;
	padding: 28px 22px;
	text-align: center;
	height: 100%;
	border: 1px solid #ececec;
	box-shadow: 0 10px 25px rgba(0,0,0,.05);
	opacity: 0;
	transform: translateY(60px);
	transition: .7s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
}

	.program-card.show {
		opacity: 1;
		transform: translateY(0);
	}

	.program-card:hover {
		transform: translateY(-12px);
		border-color: #7c3aed;
		box-shadow: 0 25px 45px rgba(0,0,0,.12);
	}

/*================ IMAGE =================*/

.program-img {
	width: 95px;
	height: 95px;
	margin: auto auto 20px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	box-shadow: 0 8px 18px rgba(0,0,0,.08);
	transition: .4s;
}

	.program-img img {
		width: 72px;
		height: 72px;
		object-fit: contain;
	}

.program-card:hover .program-img {
	transform: scale(1.08) rotate(6deg);
}

/*================ TITLE =================*/

.program-card h5 {
	font-size: 21px;
	font-weight: 800;
	margin-bottom: 14px;
	line-height: 1.25;
}

.program-card p {
	color: #666;
	line-height: 1.7;
	font-size: 15px;
	margin-bottom: 0;
}

/*================ COLORS =================*/

.purple {
	color: #6D28D9;
}

.pink {
	color: #E91E63;
}

.orange {
	color: #F59E0B;
}

.green {
	color: #22C55E;
}

.blue {
	color: #2563EB;
}

.gold {
	color: #C58B00;
}

/*================ MOBILE =================*/

@media(max-width:991px) {

	.program-card {
		padding: 22px 18px;
	}

		.program-card h5 {
			font-size: 18px;
		}

	.program-img {
		width: 80px;
		height: 80px;
	}

		.program-img img {
			width: 60px;
			height: 60px;
		}
}

/*================ VIDEO SECTION =================*/

.video-section {
	background: #fff;
}

.video-wrapper {
	background: #fff;
	border-radius: 22px;
	padding: 18px;
	box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

/* Left */

.video-thumb {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
}

	.video-thumb img {
		width: 100%;
		height: 260px;
		object-fit: cover;
		transition: .5s;
	}

	.video-thumb:hover img {
		transform: scale(1.05);
	}

/* Play Button */

.play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 82px;
	height: 82px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #1d2454;
	font-size: 30px;
	text-decoration: none;
	box-shadow: 0 15px 35px rgba(0,0,0,.25);
	transition: .35s;
}

	.play-btn:hover {
		color: #5b21b6;
		transform: translate(-50%,-50%) scale(1.12);
	}

	/* Ripple */

	.play-btn::before {
		content: "";
		position: absolute;
		inset: -10px;
		border-radius: 50%;
		border: 2px solid rgba(255,255,255,.8);
		animation: ripple 2s infinite;
	}

@keyframes ripple {

	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Right */

.video-content {
	padding: 15px 35px;
}

	.video-content h2 {
		font-size: 40px;
		font-weight: 800;
		color: #1d2454;
		margin-bottom: 15px;
	}

	.video-content p {
		color: #666;
		line-height: 1.8;
		font-size: 17px;
		margin-bottom: 28px;
	}

/* Button */

.watch-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #1b2454;
	color: #fff;
	padding: 14px 26px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: .35s;
}

	.watch-btn i {
		font-size: 20px;
	}

	.watch-btn:hover {
		color: #fff;
		background: #5b21b6;
		transform: translateY(-4px);
		box-shadow: 0 15px 30px rgba(91,33,182,.35);
	}

/* Responsive */

@media(max-width:991px) {

	.video-content {
		padding: 30px 10px 10px;
		text-align: center;
	}

		.video-content h2 {
			font-size: 30px;
		}

	.video-thumb img {
		height: 220px;
	}
}

.testimonial-section {
	background: #f8fafc;
}

#testimonialCarousel {
	max-width: 900px;
	margin: auto;
}

	#testimonialCarousel img {
		border-radius: 20px;
		padding: 12px;
		background: #fff;
		box-shadow: 0 15px 40px rgba(0,0,0,.1);
		transition: .4s;
	}

		#testimonialCarousel img:hover {
			transform: scale(1.02);
		}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: #5b21b6;
	border-radius: 50%;
	padding: 18px;
}
/*================ IMPACT =================*/

.impact-section {
	background: #fff;
}

.impact-wrapper {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(0,0,0,.06);
	overflow: hidden;
}

.impact-title {
	padding: 30px;
}

	.impact-title h3 {
		font-size: 30px;
		font-weight: 800;
		color: #2f855a;
		margin-bottom: 6px;
	}

	.impact-title p {
		margin: 0;
		font-size: 18px;
		font-weight: 600;
		color: #333;
	}

.impact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 28px;
	border-left: 1px solid #ececec;
	transition: .35s;
	height: 100%;
}

	.impact-item:hover {
		background: #fafafa;
		transform: translateY(-4px);
	}

	.impact-item i {
		font-size: 42px;
	}

	.impact-item h4 {
		font-size: 34px;
		font-weight: 800;
		margin: 0;
		color: #111827;
	}

	.impact-item span {
		font-size: 15px;
		color: #555;
		line-height: 1.5;
		font-weight: 600;
	}

.text-purple {
	color: #9333ea;
}

/* Responsive */

@media(max-width:991px) {

	.impact-title {
		text-align: center;
		padding: 25px;
	}

	.impact-item {
		border-left: none;
		border-top: 1px solid #ececec;
		justify-content: flex-start;
	}

		.impact-item h4 {
			font-size: 28px;
		}
}