@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
.mission-values-section {
	width: 100%;
	padding: 60px 0 20px 0;
	position: relative;
	overflow: visible;
	background-color: white;
}

.mission-values-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	box-sizing: border-box;
}

.mission-values-wave {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 30px;
	background: white;
	border-radius: 50% 50% 0 0;
	z-index: 10;
}

.card {
	background-color: rgba(0, 0, 0, 0.04);
	border-radius: 16px;
	padding: 40px;
	flex: 1 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	height: auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
	box-sizing: border-box;
}

.card-content {
	z-index: 1;
	flex: 1 1;
}

.card-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin: 0 0 20px 0;
}

.card-subtitle {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 16px 0;
	line-height: 1.3;
}

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

.card-description {
	font-size: 18px;
	color: #777;
	line-height: 1.5;
	margin: 0;
	font-family: "Nunito", sans-serif;
}

.card-image-container {
	position: relative;
	margin-top: -20px;
	/* padding-bottom: 30px; */
	display: flex;
	justify-content: right;
	align-items: center;
}

.card-image-container-2 {
	position: relative;
	margin-top: 20px;
	/* padding-bottom: 30px; */
	display: flex;
	justify-content: right;
	align-items: center;
}

.cloud-image {
	width: 100%;
	max-width: 300px;
	height: auto;
}

.folder-image {
	width: 100%;
	max-width: 300px;
	height: auto;
}

.mirror-image {
	transform: scaleX(-1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.mission-values-container {
		flex-direction: column;
		padding: 40px 20px;
	}

	.card {
		width: 100%;
		min-width: auto;
		padding: 30px;
		margin: 0;
	}

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

	.card-subtitle {
		font-size: 24px;
	}

	.card-description {
		font-size: 16px;
	}
	.card-image-container {
		position: relative;
		margin-top: 0px;
		/* padding-bottom: 30px; */
		display: flex;
		justify-content: right;
		align-items: center;
	}
}




