:root {
	--main-color: #0086e1;
	--text-color: #000000;
	--secondary-text-color: #5d5d5d;
	--symbol-color-first: #94ff00;
	--symbol-color-second: #09a5f8;
	--main-font: 'Inter', sans-serif;
	--header-font: 'Poppins', sans-serif;
}

/* Scroll reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

a {
	text-decoration: none;
	color: initial;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--main-font);
	line-height: 1.6;
	background-color: black;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
	transition: padding 0.3s ease-in-out;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	height: 80px;
	display: flex;
	align-items: center;
	z-index: 1000;
	transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	border-bottom: 1px solid transparent;
	margin: 0 auto;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled {
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	height: 70px;
	top: 20px;
	width: 95%;
	right: 0;
	border-radius: 20px;
	animation: dripDrop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dripDrop {
	0% {
		top: 0;
		transform: scaleX(1);
		border-radius: 0;
		width: 100%;
		height: 80px;
		left: 0;
	}
	100% {
		top: 15px;
		transform: scaleX(1);
		border-radius: 20px;
		width: calc(100% - 60px);
		left: 0; /* ← Keep it anchored */
	}
}

header.scrolled .container {
	padding: 15px 25px;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	height: 60px;
	width: 200px;
	height: auto;
	display: flex;
	align-items: center;
	transition: transform 0.3s ease-in-out;
	cursor: pointer;
	gap: 0.5rem;
}

.nav-logo-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
}

.nav-logo-image img {
	width: 100%;
}

.logo-text {
	display: flex;
	flex-direction: column;
	gap: 0rem;
	font-family: var(--header-font);
	font-size: 10px;
	color: var(--text-color);
	transition: color 0.3s ease-in-out;
}

.logo-text h1 {
	font-size: 1.8em;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.logo-text p {
	font-size: 1.4em;
	font-weight: 500;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.logo a img {
	width: 100%;
	height: 40px;
	object-fit: contain;
	transition: transform 0.3s ease-in-out;
}

/* Burger Menu Styles */
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1000;
}

.burger-menu span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--main-color);
	transition: all 0.3s ease;
}

.navbar ul {
	width: 100%;
	display: flex;
	gap: 0;
	font-size: 10px;
	align-items: center;
}

.navbar ul li {
	position: relative;
	flex: 1;
	display: flex;
	justify-content: center;
}

.navbar ul li a {
	position: relative;
	font-size: 1.8em;
	font-family: var(--main-font);
	color: var(--text-color);
	font-weight: 500;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	padding: 12px 20px;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	text-align: center;
	border-radius: 8px;
	min-width: 120px;
}

.download_btn {
	background-color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: white;
	font-weight: 600;
	border-radius: 8px;
	padding: 12px 20px;
	font-size: 1rem;
	text-transform: uppercase;
	max-width: 200px;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s linear;
}

.download_btn:hover {
	background-color: white;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	scale: 1.05;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Animated underline effect */
.navbar ul li a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 8px;
	left: 50%;
	background: linear-gradient(
		90deg,
		var(--main-color),
		var(--symbol-color-second)
	);
	transform: translateX(-50%);
	transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	border-radius: 1px;
}

/* Hover background effect */
.navbar ul li a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	border-radius: 8px;
	z-index: -1;
}

.navbar ul li a:hover::before {
	width: 80%;
}

.navbar ul li a:hover::after {
	opacity: 1;
}

.navbar ul li a:hover {
	color: var(--main-color);
	font-weight: 600;
	transform: translateY(-2px);
}

/* Active link style */
.navbar ul li a.active::before {
	width: 80%;
	background: var(--main-color);
}

.navbar ul li a.active::after {
	opacity: 0.7;
}

.navbar ul li a.active {
	color: var(--main-color);
	font-weight: 600;
}

/*Main Section*/

main {
	margin-top: 20px;
	background-color: white;
	overflow: hidden;
}

.home_items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 3rem 0;
	position: relative;
}

.home_text {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	gap: 1.5rem;
	max-width: 50%;
	width: 100%;
	padding: 6rem 0 0 0;
	font-size: 10px;
	height: auto;
}

.home_text h1 {
	font-weight: 600;
	font-size: 5em;
	color: var(--text-color);
	font-family: var(--header-font);
	z-index: 20;
}

.home_text p {
	font-size: 1.8em;
	color: var(--secondary-text-color);
	font-family: var(--main-font);
	z-index: 20;
}

.home_buttons {
	display: flex;
	align-items: center;
	gap: 2rem;
	width: 100%;
	font-size: 10px;
	padding: 2rem 0;
	z-index: 20;
}

.button-container {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	gap: 1rem;
	background-color: var(--main-color);
	border-radius: 8px;
	padding: 10px 20px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease;
	transform-origin: center;
	will-change: transform;
	max-width: 200px;
	width: 100%;
	box-sizing: border-box;
	height: 3rem;
}

.button-container p {
	color: #fff;
	font-weight: 500;
	font-size: 1.8em;
}

.button-container i {
	font-size: 3em;
	color: #fff;
}

.button-container:hover {
	border: 2px solid var(--main-color);
	background-color: #fff;
	transform: scale(1.05);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-container:hover p {
	color: var(--main-color);
}

.button-container:hover i {
	color: var(--main-color);
}

.home_image {
	position: relative;
	max-width: 50%;
	width: 100%;
	height: 500px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.image-container {
	position: absolute;
	max-width: 500px;
	width: 100%;
	height: auto;
}
.image-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.image-1 {
	z-index: 20;
	transform: translate(10%, 10%);
}
.image-2 {
	z-index: 10;
	transform: translate(20%, 15%);
}

.image-3 {
	z-index: 5;
	transform: translate(30%, 20%);
}

.star-wrapper {
	position: absolute;
	top: 10%;
	left: 20%;
	max-width: 60px;
	max-height: 60px;
	width: 100%;
	height: 100%;
	transform: rotate(0deg);
}

.star-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ellipse-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.ellipse-1 {
	position: absolute;
	max-width: 290px;
	width: 100%;
	height: 153px;
	background: #00a6ff;
	filter: blur(50px);
	top: 20%;
	left: 28%;
	z-index: 15;
	border-radius: 50%;
}

.ellipse-2 {
	position: absolute;
	max-width: 290px;
	height: 153px;
	width: 100%;
	background: #94ff00;
	filter: blur(50px);
	top: 28%;
	left: 23%;
	z-index: 10;
}

/*Ellipses**/

.ellipse-wrapper {
	position: absolute;
	max-width: 725px;
	height: 725px;
	width: 100%;
	left: 15%;
	top: -25%;
}

.ellipse-3 {
	position: absolute;
	max-width: 380px;
	max-height: 500px;
	width: 100%;
	height: 100%;
	top: 30%;
	left: 18%;
	border: 1px solid #000000;
	transform: rotate(-45deg);
	border-radius: 48%;
}

.ellipse-4 {
	position: absolute;
	max-width: 380px;
	max-height: 500px;
	width: 100%;
	height: 100%;
	top: 25%;
	left: 22%;
	border: 1px solid #000000;
	transform: rotate(-45deg);
	border-radius: 48%;
}

.ellipse-5 {
	position: absolute;
	max-width: 380px;
	max-height: 500px;
	width: 100%;
	height: 100%;
	top: 20%;
	left: 26%;
	border: 1px solid #000000;
	transform: rotate(-45deg);
	border-radius: 48%;
}

.ellipse-6 {
	position: absolute;
	max-width: 400px;
	width: 100%;
	height: 200px;
	background: #09a5f8;
	filter: blur(50px);
	top: 60%;
	left: 15%;
	border-radius: 50%;
	z-index: 1;
}

/*About Section*/

.about {
	width: 100%;
}

.about-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4rem 0;
	position: relative;
}

.about-text {
	position: relative;
	max-width: 50%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	font-size: 10px;
	padding: 5rem 0 2rem 0;
}

.about-text p {
	font-size: 1.8em;
	color: var(--main-color);
	font-family: var(--main-font);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.about-text h1 {
	font-weight: 600;
	font-size: 5em;
	color: var(--text-color);
	font-family: var(--header-font);
	padding-bottom: 2rem;
}

.about-text-items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	z-index: 20;
}

.about-text-item {
	display: flex;
	align-items: start;
	gap: 1rem;
	flex-direction: column;
	font-size: 10px;
}

.about-text-item h3 {
	font-size: 2em;
	font-weight: 600;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--header-font);
}

.about-text-item h3 i {
	font-size: 1.5em;
	color: var(--main-color);
}

.about-text-item p {
	font-size: 1.8em;
	color: var(--secondary-text-color);
	font-family: var(--main-font);
	text-transform: none;
	letter-spacing: 1px;
	line-height: 1.5;
	width: 95%;
}

.about-images {
	max-width: 50%;
	width: 100%;
	height: 800px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	position: relative;
	padding: 3rem 0;
}

.section-image-1 {
	top: 15%;
	z-index: 70;
	left: -5%;
}

.section-image-2 {
	top: 15%;
	z-index: 60;
	left: 10%;
}

.section-image-3 {
	top: 15%;
	z-index: 50;
	left: 25%;
}

.about-ellipse-container-2 {
	position: absolute;
	width: 100%;
	top: 40%;
	left: -30%;
	transform: rotate(45deg);
}

.about-2-ellipse-3 {
	position: absolute;
	max-width: 420px;
	width: 100%;
	height: 220px;
	background: #94ff00;
	filter: blur(50px);
	z-index: 1;
	left: 50%;
	top: -15%;
	border-radius: 40%;
}

.about-2-ellipse-4 {
	position: absolute;
	max-width: 420px;
	width: 100%;
	height: 220px;
	background: #09a5f8;
	filter: blur(50px);
	z-index: 5;
	left: 70%;
	top: -25%;
	border-radius: 40%;
}

.text-ellipse-container-2 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.section-2-ellipse-2 {
	position: absolute;
	max-width: 300px;
	width: 100%;
	height: 160px;
	background: #94ff00;
	filter: blur(50px);
	z-index: 1;
	left: 50%;
	top: -15%;
}

.section-2-ellipse-1 {
	position: absolute;
	max-width: 300px;
	width: 100%;
	height: 160px;
	background: #09a5f8;
	filter: blur(50px);
	z-index: 5;
	left: 55%;
	top: -25%;
}

.image-ellipse-container-2 {
	position: relative;
	width: 900px;
	height: 600px;
	top: 10%;
	left: 10%;
}

.section-2-ellipse-3 {
	position: absolute;
	width: 474.81px;
	height: 683.48px;
	left: calc(50% - 474.81px / 2 - 15%);
	top: calc(50% - 683.48px / 2);
	border: 1px solid #000000;
	transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
	border-radius: 40%;
}

.section-2-ellipse-4 {
	position: absolute;
	width: 474.81px;
	height: 683.48px;
	left: calc(50% - 474.81px / 2 - 25%);
	top: calc(50% - 683.48px / 2);
	border: 1px solid #000000;
	transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
	border-radius: 40%;
}

.section-2-ellipse-5 {
	position: absolute;
	width: 474.81px;
	height: 683.48px;
	left: calc(50% - 474.81px / 2 - 35%);
	top: calc(50% - 683.48px / 2);

	border: 1px solid #000000;
	transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
	border-radius: 40%;
}

/*Statistics section*/

.statistics {
	width: 100%;
	padding: 4rem 0;
}

.statistics-items {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

.statistics-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 80%;
	width: 100%;
	padding: 3rem 0;
	font-size: 10px;
	z-index: 20;
}

.statistics-text h1 {
	font-weight: 600;
	font-size: 4.8em;
	color: var(--text-color);
	font-family: var(--header-font);
}

.statistics-text p {
	font-size: 1.8em;
	color: var(--main-color);
	font-family: var(--main-font);
	text-transform: uppercase;
}

.statistics-text h4 {
	font-size: 2.4em;
	/* color: var(--secondary-text-color);
	 */
	color: rgb(136, 139, 146);
	font-family: var(--main-font);
	margin-bottom: 2rem;
	font-weight: 500;
}

.statistics-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-template-rows: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	grid-template-areas:
		'card-1 card-2 card-3 card-4'
		'card-1 card-2 card-3 card-4';
	z-index: 20;
}

.statistics-card {
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(50px);
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	border: 2px solid var(--main-color);
	font-size: 10px;
}

.statistics-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.statistics-card h1 {
	font-size: 4.8em;
	text-transform: uppercase;
}

.statistics-card p {
	color: var(--main-color);
	font-size: 2.4em;
}

.statistic-ellipse-container-1 {
	position: absolute;
	top: 40%;
	left: 20%;
}

.statistic-ellipse-container-2 {
	position: absolute;
	top: 80%;
	left: 80%;
}

.statistics-ellipse-1 {
	position: absolute;
	width: 300px;
	height: 160px;
	background: #94ff00;
	filter: blur(50px);
	z-index: 1;
	transform: translate(-50%, -50%);
}

.statistics-ellipse-2 {
	position: absolute;
	width: 300px;
	height: 160px;
	background: #09a5f8;
	filter: blur(50px);
	z-index: 5;
}

/*Testimonal section*/
.testimonials-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
}
.animation-section {
	flex: 1;
	display: flex;
	justify-content: center;
	z-index: 50;
}

.orbit-container {
	position: relative;
	width: 420px;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-style: preserve-3d;
	perspective: 1000px;
}

.ellipse {
	position: absolute;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center;
	opacity: 0.7;
	border-style: solid;
	border-color: rgba(0, 170, 255, 1);
}

/* React-like ellipse configuration */
.feedback-ellipse-1 {
	/* Main horizontal ring */
	width: 380px;
	height: 380px;
	border-width: 3px;
	animation: rotateZ 20s linear infinite;
}

.feedback-ellipse-2 {
	/* First tilted ring */
	width: 380px;
	height: 380px;
	border-width: 5px;
	animation: rotateY 25s linear infinite;
	transform: translate(-50%, -50%) rotateX(60deg);
}

.feedback-ellipse-3 {
	/* Second tilted ring */
	width: 380px;
	height: 380px;
	border-width: 5px;
	animation: rotateX 30s linear infinite;
	transform: translate(-50%, -50%) rotateY(60deg);
}

.feedback-ellipse-4 {
	/* Central sphere effect */
	width: 120px;
	height: 120px;
	border-width: 0;
	background: radial-gradient(
		circle,
		rgba(0, 170, 255, 0.3) 0%,
		rgba(0, 170, 255, 0.1) 70%
	);
	animation: pulse 4s ease-in-out infinite;
}

@keyframes rotateZ {
	from {
		transform: translate(-50%, -50%) rotateZ(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotateZ(360deg);
	}
}

@keyframes rotateY {
	from {
		transform: translate(-50%, -50%) rotateX(60deg) rotateY(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotateX(60deg) rotateY(360deg);
	}
}

@keyframes rotateX {
	from {
		transform: translate(-50%, -50%) rotateY(60deg) rotateX(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotateY(60deg) rotateX(360deg);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.7;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 0.9;
	}
}

.profile-image {
	position: absolute;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transform: translate(-50%, -50%) scale(0.9);
	z-index: 50;
	border: 2px solid #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-image.active {
	transform: translate(-50%, -50%) scale(1.1);
	border-color: #00aaff;
	box-shadow: 0 6px 20px rgba(0, 170, 255, 0.5);
}

.center-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 3px solid #00aaff;
	overflow: hidden;
	z-index: 100;
	transition: all 0.5s ease;
	box-shadow: 0 8px 25px rgba(0, 170, 255, 0.4);
}

.center-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-section {
	flex: 1;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	z-index: 50;
	max-width: 500px;
	/* border: 2px solid #0086e1; */
}

.main-title {
	font-size: 32px;
	color: #2c3e50;
	font-weight: bold;
	margin-bottom: 5px;
}

.subtitle {
	font-size: 24px;
	color: #3498db;
	margin-bottom: 20px;
}

.testimonial-text {
	font-size: 16px;
	color: #555;
	min-height: 120px;
	margin: 20px 0;
	line-height: 1.6;
	border-left: 6px solid #00aaff;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	padding: 0 0.5rem;
}

.author-info {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #3498db;
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-name {
	font-size: 18px;
	font-weight: bold;
	color: #2c3e50;
}

.rating {
	display: flex;
	gap: 5px;
	margin-bottom: 20px;
}

.star {
	color: #f39c12;
	font-size: 1.5rem;
}

.testimonial-avatars {
	display: flex;
	gap: 10px;
	justify-content: start;
}

.mini-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #ccc;
	cursor: pointer;
	transition: all 0.3s ease;
}

.mini-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mini-avatar.active {
	border-color: #00aaff;
	transform: scale(1.2);
	box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.quote-icon {
	font-size: 40px;
	color: #3498db;
	opacity: 0.4;
	margin-bottom: -20px;
}

.feedback-ellipse-container-1 {
	position: absolute;
	right: 20%;
	bottom: 20%;
}

.feedback-ellipse-1-1 {
	position: absolute;
	width: 300px;
	height: 160px;
	background: #94ff00;
	filter: blur(50px);
	z-index: 1;
	transform: translate(-50%, -50%);
}

.feedback-ellipse-2-2 {
	position: absolute;
	width: 300px;
	height: 160px;
	background: #09a5f8;
	filter: blur(50px);
	z-index: 5;
}
@media (max-width: 768px) {
	.testimonials-container {
		flex-direction: column;
		align-items: center;
	}

	.orbit-container {
		width: 300px;
		height: 300px;
		margin-bottom: 30px;
	}

	.content-section {
		padding: 25px;
	}

	.profile-image {
		width: 50px;
		height: 50px;
	}

	.center-image {
		width: 100px;
		height: 100px;
	}

	.feedback-ellipse-1,
	.feedback-ellipse-2,
	.feedback-ellipse-3 {
		width: 280px;
		height: 280px;
	}

	.feedback-ellipse-4 {
		width: 90px;
		height: 90px;
	}
}

/*FAQ section*/
#faq {
	padding: 60px 20px;
	position: relative;
}

.faq-container {
	max-width: 800px;
	margin: auto;
	z-index: 50;
}

.faq-title {
	text-align: center;
	font-size: 32px;
	color: #00aaff;
	margin-bottom: 40px;
	font-weight: bold;
}

.faq-item {
	border-bottom: 1px solid #00aaff;
	padding: 20px 0;
	cursor: pointer;
}

.faq-question {
	font-size: 18px;
	color: #2c3e50;
	position: relative;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	color: #00aaff;
	font-weight: bold;
	transition: transform 0.3s ease;
	font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	color: #555;
	font-size: 16px;
	transition: max-height 0.5s ease, opacity 0.5s ease;
	opacity: 0;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	opacity: 1;
	margin-top: 10px;
}

/*Cta section*/
.cta {
	margin: 4rem 0;
	position: relative;
	z-index: 50;
}

.cta-items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	background-color: #000000;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.cta-image {
	max-width: 50%;
	width: 100%;
	z-index: 100;
}

.cta-image img {
	width: 100%;
	object-fit: contain;
}

.cta-text {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	align-items: start;
	justify-content: center;
	font-size: 10px;
	color: var(--main-font);
	padding: 1rem 0;
	z-index: 100;
}

.cta-text h1 {
	font-size: 4.8em;
	color: #fff;
}

.cta-text p {
	font-size: 2.4em;
	color: #e5e5e5;
}

.cta-text-buttons {
	display: flex;
	width: 100%;
	gap: 2rem;
	height: 4rem;
}

.btn {
	display: flex;
	padding: 0.5rem 1.5rem;
	align-items: center;
	text-align: center;
	color: var(--text-color);
	text-decoration: none;
	background-color: #fff;
	border-radius: 20px;
	gap: 1rem;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.btn:hover {
	scale: 1.05;
	border: 2px solid var(--main-color);
	color: var(--main-color);
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(20px);
}

.btn i {
	font-size: 1.5em;
}

.cta-line-ellipse-1 {
	position: absolute;
	top: 0;
	left: -150px; /* kerakli holatga qarab sozlang */
	z-index: 10;
}

.cta-line-ellipse-2 {
	position: absolute;
	top: 0;
	right: -150px;
	z-index: 10;
}

.line-ellipse {
	width: 600px;
	height: 600px;
	border-radius: 50%;
	border: 2px solid #fff;
	opacity: 0.4;
	position: absolute;
}

.line-ellipse-1 {
	top: 500px;
	left: 40px;
}

.line-ellipse-2 {
	top: 520px;
	left: 20px;
}

.line-ellipse-3 {
	top: 540px;
	left: 10px;
}

.line-ellipse-4 {
	bottom: -200px;
	right: 60px;
}

.line-ellipse-5 {
	bottom: -220px;
	right: 30px;
}

.line-ellipse-6 {
	bottom: -240px;
	right: 0px;
}

.cta-ellipse-container-1 {
	position: absolute;
	top: 40%;
	left: 65%;
}

.cta-ellipse-container-2 {
	position: absolute;
	top: 0;
	left: 10%;
	z-index: -1;
}

.cta-ellipse-1 {
	position: absolute;
	width: 400px;
	height: 180px;
	background: #94ff00;
	filter: blur(50px);
	z-index: 1;
	transform: translate(-50%, -50%);
	border-radius: 40%;
}

.cta-ellipse-2 {
	position: absolute;
	width: 420px;
	height: 200px;
	background: #09a5f8;
	filter: blur(50px);
	z-index: 5;
	border-radius: 40%;
}

/* Footer */
footer {
	background-color: #1a1a2e;
	color: white;
	padding: 4rem 5% 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 10px;
}

.footer-logo {
	margin-bottom: 2rem;
	max-width: 250px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.footer-logo-image {
	max-width: 150px;
	width: 100%;
}

.footer-logo-image img {
	width: 100%;
}

.footer-text {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 10px;
	color: #fff;
}

.footer-text h1 {
	font-size: 4em;
}

.footer-text h4 {
	font-size: 2em;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: #0086e1;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-links a i {
	color: #fff;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: white;
}

.footer-links a:hover i {
	color: #0086e1;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #bbb;
	font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
	.container {
		padding: 0 30px;
	}

	.home_text h1,
	.about-text h1 {
		font-size: 4em;
	}
}
/* Tablet Breakpoint (768px - 1024px) */
@media (max-width: 1024px) {
	.container {
		padding: 0 20px;
	}

	/* Home Section */
	.home_items {
		flex-direction: column;
		padding: 2rem 0;
	}

	.home_text {
		max-width: 100%;
		padding: 2rem 0;
		align-items: center;
		text-align: center;
	}

	.home_image {
		max-width: 100%;
		height: 400px;
		margin-top: 2rem;
	}

	/* About Section */
	.about-items {
		flex-direction: column;
	}

	.about-text {
		max-width: 100%;
		padding: 2rem 0;
		align-items: center;
		text-align: center;
	}

	.about-text-item p {
		width: 100%;
	}

	.about-images {
		max-width: 100%;
		height: 500px;
		padding: 0;
	}

	/* Statistics Section */
	.statistics-cards {
		grid-template-areas:
			'card-1 card-2'
			'card-3 card-4';
	}

	/* Testimonials */
	.testimonials-container {
		grid-template-columns: 1fr;
	}

	.content-section {
		max-width: 100%;
	}

	/* CTA Section */
	.cta-items {
		flex-direction: column;
		padding: 2rem;
	}

	.cta-text {
		align-items: center;
		text-align: center;
	}

	.cta-image {
		max-width: 100%;
		margin-top: 2rem;
	}
}

/* Mobile Breakpoint (up to 768px) */
@media (max-width: 768px) {
	/* Header and Navigation */
	.navbar ul {
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(20px);
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 2rem;
		gap: 0.5rem;
		transform: translateX(-100%);
		transition: transform 0.3s ease-in-out;
		z-index: 999;
	}

	.navbar ul.show {
		transform: translateX(0);
	}

	.burger-menu {
		display: flex;
	}

	.logo {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 80%;
		height: auto;
	}

	.logo-text {
		display: none;
	}

	.download_btn {
		display: none;
		max-width: 40%;
		padding: 8px 12px;
		font-size: 0.8rem;
	}

	header.scrolled {
		top: 0;
		width: 100%;
		border-radius: 0;
		animation: none;
	}

	.home_image {
		display: none;
	}

	.home_buttons {
		align-items: center;
		justify-content: center;
	}

	/* About Section - Remove images on mobile */
	.about-images {
		display: none;
	}

	.about-text {
		padding: 1rem 0;
	}

	.about-text-item {
		align-items: center;
		text-align: center;
	}

	/* Statistics Section */
	.statistics-cards {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
		grid-template-rows: repeat(2, minmax(300px, 1fr));

		grid-template-areas:
			'card-1 card-2'
			'card-3 card-4';
	}

	.statistics-card {
		padding: 1.5rem;
	}

	.statistics-card h1 {
		font-size: 3.6em;
	}

	.statistics-card p {
		font-size: 2em;
	}

	.statistics-text {
		align-items: center;
		text-align: center;
		max-width: 100%;
		width: 100%;
	}

	/* Testimonials */

	.content-section {
		width: 100%;
		margin: 2rem 0;
		border: 2px solid #0086e1;
		font-size: 10px;
	}

	.main-title {
		font-size: 2.8em;
	}

	.orbit-container {
		width: 300px;
		height: 300px;
	}

	.profile-image {
		width: 60px;
		height: 60px;
	}

	.center-image {
		width: 100px;
		height: 100px;
	}

	.animation-section {
		display: none;
	}

	/*cta-section*/
	.cta-text {
		z-index: 20;
	}

	.cta-image {
		z-index: 10;
		margin-top: 4rem;
	}

	.cta-ellipse-container-1 {
		top: 70%;
	}

	/* FAQ Section */
	.faq-item {
		padding: 15px 0;
	}

	/* Footer */
	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-logo {
		margin-bottom: 1rem;
	}
}

/* Small Mobile Breakpoint (up to 480px) */
@media (max-width: 480px) {
	/* Home Section */
	.home_text h1 {
		font-size: 3.5em;
	}

	.home_buttons {
		flex-direction: column;
		gap: 1rem;
	}

	.button-container {
		max-width: 100%;
	}

	/* Testimonials */
	.orbit-container {
		width: 250px;
		height: 250px;
	}

	.profile-image {
		width: 50px;
		height: 50px;
	}

	.center-image {
		width: 80px;
		height: 80px;
	}

	/* CTA Section */
	.cta-text-buttons {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}
}
