:root {
	--primary-color: #4361ee;
	--secondary-color: #3bc14a;
	--accent-color: #f72585;
	--dark-color: #14213d;
	--light-color: #f8f9fa;
	--gradient-primary: linear-gradient(135deg, #4361ee, #3a0ca3);
	--gradient-secondary: linear-gradient(135deg, #3bc14a, #4cc9f0);
	--gradient-accent: linear-gradient(135deg, #f72585, #f94144);
	--text-color: #2b2d42;
	--text-light: #6c757d;
	--box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: #f8f9fa;
	color: var(--text-color);
	overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
	padding: 15px 0;
	background-color: rgba(255, 255, 255, 0.95) !important;
	box-shadow: var(--box-shadow);
}

.navbar-brand {
	font-weight: 700;
	color: var(--primary-color);
}

/* Hero Section */
.hero-section {
	background: var(--gradient-primary);
	color: white;
	padding: 8rem 0 6rem;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,64L48,80C96,96,192,128,288,138.7C384,149,480,139,576,117.3C672,96,768,64,864,64C960,64,1056,96,1152,96C1248,96,1344,64,1392,48L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
	background-size: cover;
	background-position: bottom;
}

.hero-section::after {
	content: "";
	position: absolute;
	width: 200px;
	height: 200px;
	top: 50px;
	right: -50px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
}

.hero-section .btn {
	position: relative;
	z-index: 1;
}

.hero-chips {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 0;
}

.chip {
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	animation: float 7s infinite ease-in-out;
}

.chip:nth-child(1) {
	width: 100px;
	height: 100px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.chip:nth-child(2) {
	width: 150px;
	height: 150px;
	top: 60%;
	left: 20%;
	animation-delay: 1s;
}

.chip:nth-child(3) {
	width: 80px;
	height: 80px;
	top: 30%;
	right: 30%;
	animation-delay: 2s;
}

.chip:nth-child(4) {
	width: 120px;
	height: 120px;
	top: 70%;
	right: 10%;
	animation-delay: 3s;
}

@keyframes float {
	0% {
		transform: translateY(0) rotate(0deg);
	}

	50% {
		transform: translateY(-20px) rotate(10deg);
	}

	100% {
		transform: translateY(0) rotate(0deg);
	}
}

/* Cards */
.card {
	border: none;
	border-radius: 12px;
	box-shadow: var(--box-shadow);
	transition: transform 0.4s, box-shadow 0.4s;
	overflow: hidden;
	height: 100%;
	background: #fff;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
	font-size: 2.2rem;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 auto 20px;
	color: white;
	position: relative;
	z-index: 1;
}

.card-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: inherit;
	border-radius: 50%;
	z-index: -1;
	opacity: 0.3;
	transform: scale(1.3);
	transition: transform 0.3s;
}

.card:hover .card-icon::after {
	transform: scale(1.5);
}

.bg-primary {
	background: var(--gradient-primary) !important;
}

.bg-success {
	background: var(--gradient-secondary) !important;
}

.bg-warning {
	background: var(--gradient-accent) !important;
}

/* Buttons */
.btn-custom-primary {
	background: var(--gradient-primary);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 12px 28px;
	font-weight: 600;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-custom-primary:hover {
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

.btn-custom-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
	transition: all 0.5s;
	z-index: -1;
	transform: translateX(-100%);
}

.btn-custom-primary:hover::before {
	transform: translateX(0);
}

.btn-custom-secondary {
	background: var(--gradient-secondary);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 12px 28px;
	font-weight: 600;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.btn-custom-secondary:hover {
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(59, 193, 74, 0.4);
}

.btn-outline-light {
	border-width: 2px;
	font-weight: 600;
}

/* Testimonials */
.testimonial {
	background-color: white;
	border-radius: 12px;
	padding: 30px;
	position: relative;
	transition: all 0.3s;
	border-left: 5px solid var(--accent-color);
	box-shadow: var(--box-shadow);
}

.testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
	content: "\f10d";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: 15px;
	right: 20px;
	color: rgba(0, 0, 0, 0.05);
	font-size: 3rem;
}

.testimonial-avatar {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
	background-color: var(--light-color);
	position: relative;
	overflow: hidden;
}

.faq-section::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(67, 97, 238, 0) 70%);
	top: -100px;
	right: -100px;
}

.faq-section::after {
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(59, 193, 74, 0.05) 0%, rgba(59, 193, 74, 0) 70%);
	bottom: -50px;
	left: -100px;
}

.accordion-item {
	border: none;
	border-radius: 10px !important;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 15px;
	background-color: white;
	overflow: hidden;
}

.accordion-button {
	padding: 20px 25px;
	font-weight: 600;
	color: var(--dark-color);
	background-color: white;
}

.accordion-button:not(.collapsed) {
	color: var(--primary-color);
	background-color: rgba(67, 97, 238, 0.05);
}

.accordion-button:focus {
	box-shadow: none;
	border-color: rgba(67, 97, 238, 0.1);
}

/* Counter Boxes */
.counter-box {
	text-align: center;
	padding: 35px 20px;
	background: white;
	border-radius: 12px;
	box-shadow: var(--box-shadow);
	transition: all 0.3s;
	border-bottom: 3px solid transparent;
}

.counter-box:hover {
	transform: translateY(-5px);
	border-bottom: 3px solid var(--primary-color);
}

.counter-number {
	font-size: 2.8rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.2;
	margin-bottom: 10px;
}

/* Steps */
.step-number {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1.5rem;
	margin-right: 20px;
	position: relative;
	box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.step-number::before {
	content: '';
	position: absolute;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	border: 2px dashed var(--primary-color);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: spin 10s linear infinite;
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Modals */
.modal-content {
	border-radius: 15px;
	border: none;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.modal-header {
	border-bottom: none;
	padding: 25px 30px 15px;
	background: rgba(67, 97, 238, 0.03);
}

.modal-body {
	padding: 30px;
}

.modal-footer {
	border-top: none;
	padding: 15px 30px 25px;
	background: rgba(67, 97, 238, 0.03);
}

.form-control {
	height: 50px;
	border-radius: 8px;
	border: 1px solid #e9ecef;
	padding: 10px 15px;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-control:focus {
	box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
	border-color: var(--primary-color);
}

.form-label {
	font-weight: 500;
	color: var(--text-color);
}

/* Feature Cards */
.feature-card {
	border-radius: 12px;
	background-color: white;
	padding: 35px 25px;
	box-shadow: var(--box-shadow);
	transition: transform 0.4s, box-shadow 0.4s;
	height: 100%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: -10px;
	right: -10px;
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(67, 97, 238, 0) 70%);
	border-radius: 50%;
	z-index: -1;
	transition: all 0.4s;
}

.feature-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
	transform: scale(2);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

/* Section Titles */
.section-title {
	position: relative;
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 3px;
}

/* CTA Section */
.cta-section {
	background: var(--gradient-primary);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,154.7C384,128,480,96,576,106.7C672,117,768,171,864,197.3C960,224,1056,224,1152,197.3C1248,171,1344,117,1392,90.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
	background-size: cover;
	background-position: center;
}

.cta-section .container {
	position: relative;
	z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
	.hero-section {
		padding: 5rem 0 3rem;
	}

	.section-padding {
		padding: 4rem 0;
	}
}

@media (max-width: 767px) {
	.counter-box {
		margin-bottom: 1rem;
	}

	.testimonial {
		margin-bottom: 2rem;
	}

	.hero-section h1 {
		font-size: 2.5rem;
	}
}

/* Animation */
.scale-in-center {
	animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes scale-in-center {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Benefits Section */
.benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}

.benefit-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: var(--gradient-primary);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	color: white;
	font-size: 1.4rem;
}

/* Commission Chart */
.commission-chart {
	position: relative;
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: var(--box-shadow);
	margin-top: 2rem;
	overflow: hidden;
}

.commission-chart::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: rgba(67, 97, 238, 0.05);
	border-radius: 50%;
}

.chart-bar {
	height: 40px;
	background: #e9ecef;
	border-radius: 20px;
	margin-bottom: 1.5rem;
	position: relative;
	overflow: hidden;
}

.chart-bar-fill {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 0 20px;
	color: white;
	font-weight: 600;
}

.chart-label {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.fill-primary {
	background: var(--gradient-primary);
	width: 80%;
}

.fill-secondary {
	background: var(--gradient-secondary);
	width: 60%;
}

.fill-accent {
	background: var(--gradient-accent);
	width: 40%;
}

/* How it works section */
.how-it-works {
	position: relative;
}

.how-it-works::before {
	content: '';
	position: absolute;
	left: 25px;
	top: 30px;
	height: calc(100% - 60px);
	width: 2px;
	background: rgba(67, 97, 238, 0.2);
	z-index: 0;
}

.how-it-works .feature-card {
	position: relative;
	z-index: 1;
}

@media (max-width: 991px) {
	.how-it-works::before {
		display: none;
	}
}