@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
.features-section {
	padding: 30px 0px;
	background-color: #fff;
}

.features-container {
	max-width: 1300px;
	margin: 0 auto;
}

.features-header {
	text-align: center;
	margin-bottom: 60px;
}

.features-subtitle {
	background: linear-gradient(
		0deg,
		rgba(0, 82, 204, 1) 0%,
		rgba(40, 163, 255, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	font-size: 20px;
	font-weight: 500;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.features-title {
	font-size: 45px;
	font-weight: 700;
	color: #222;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.3;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
	gap: 30px;
}

.feature {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.feature-title {
	font-size: 20px;
	font-weight: 600;
	color: #222;
	margin: 0 0 12px 0;
}

.feature-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 20px 0;
	flex-grow: 1;
	font-family: "Nunito", sans-serif;
}

.feature-image-container {
	margin-top: auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.feature-image-wrapper {
	width: 80px;
	height: 80px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-image {
	width: 80px;
	height: 80px;
	object-fit: contain;
	opacity: 0.7;
	/* Apply blue color to the images */
	filter: invert(40%) sepia(80%) saturate(1500%) hue-rotate(200deg)
		brightness(100%) contrast(90%);
}

/* Responsive styles */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.features-section {
		padding: 30px 20px;
	}

	.features-title {
		font-size: 36px;
	}
}

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

	.features-subtitle {
		font-size: 16px;
	}

	.features-title {
		font-size: 28px;
	}

	.feature-title {
		font-size: 18px;
	}

	.feature-description {
		font-size: 14px;
	}
}

@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
.testimonials-section {
	width: 100%;
	padding: 40px 20px;
	box-sizing: border-box;
	position: relative;
	overflow: visible;
}

.testimonials-container {
	background-color: #edfaff;
	padding: 60px 20px;
	border-radius: 16px;
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: border-box;
}

.testimonials-header {
	text-align: center;
	margin-bottom: 40px;
}

.testimonials-subtitle {
	background: linear-gradient(
		0deg,
		rgba(0, 82, 204, 1) 0%,
		rgba(40, 163, 255, 1) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;

	font-size: 20px;
	font-weight: 500;
	margin: 0 0 8px 0;
	letter-spacing: 0.5px;
}

.testimonials-title {
	color: #333;
	font-size: 45px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
	transition: all 0.5s ease;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 30px;
	gap: 30px;
}

.testimonial-card {
	background-color: transparent;
	padding: 20px;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.testimonial-text {
	color: #666;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
	font-family: "Nunito", sans-serif;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.testimonial-name {
	font-weight: 600;
	color: #333;
	font-size: 18px;
}

.testimonials-wave {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 50px;
	background: white;
	border-radius: 0 0 50% 50%;
	z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.testimonials-section {
		padding: 20px;
	}

	.testimonials-container {
		padding: 40px 20px;
	}

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

	.testimonials-title {
		font-size: 36px;
	}

	.testimonial-card {
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.testimonials-section {
		padding: 15px;
	}
	.testimonials-subtitle {
		font-size: 16px;
	}
	.testimonials-title {
		font-size: 28px;
	}

	.testimonials-container {
		padding: 30px 15px;
	}
}

