/* About Section - Complete Redesign */
#about {
	padding: 5rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	position: relative;
	color: var(--dark);
}

.section-subtitle {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	color: #666;
	font-size: 1.1rem;
}

/* Floating Cards Design */
.about-floating-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.floating-card {
	background: white;
	border-radius: 25px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.floating-card:hover {
	transform: translateY(-10px) rotate(1deg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.floating-card:hover::before {
	opacity: 0.05;
}

.card-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	position: relative;
}

.icon-wrapper {
	width: 100%;
	height: 100%;
	background: var(--gradient-2);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	animation: morphShape 8s ease-in-out infinite;
	box-shadow: 0 10px 25px rgba(136, 176, 211, 0.3);
}

@keyframes morphShape {

	0%,
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg);
	}

	25% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
		transform: rotate(90deg);
	}

	50% {
		border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
		transform: rotate(180deg);
	}

	75% {
		border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
		transform: rotate(270deg);
	}
}

.floating-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: var(--dark);
}

.floating-card p {
	color: #666;
	line-height: 1.6;
}
/* Stats Banner */
.stats-banner {
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	border-radius: 30px;
	padding: 3rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 4rem;
	position: relative;
	overflow: hidden;
}

.stats-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 10px,
			rgba(255, 255, 255, 0.05) 10px,
			rgba(255, 255, 255, 0.05) 20px);
	animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(50px, 50px);
	}
}

.stat-block {
	text-align: center;
	position: relative;
	z-index: 1;
}

.stat-value {
	font-size: 3rem;
	font-weight: bold;
	color: white;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-desc {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	margin-top: 0.5rem;
}

/* Feature Showcase */
.feature-showcase {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem;
	background: linear-gradient(135deg, rgba(45, 90, 135, 0.03) 0%, rgba(74, 124, 138, 0.03) 100%);
	border-radius: 30px;
	position: relative;
	overflow: hidden;
}

.feature-showcase::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 20px,
			rgba(45, 90, 135, 0.02) 20px,
			rgba(45, 90, 135, 0.02) 40px);
	animation: slidePattern 30s linear infinite;
}

.showcase-content h3 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-align: center;
	position: relative;
	z-index: 1;
}

.feature-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: white;
	border-radius: 20px;
	transition: all 0.4s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.feature-list li::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(241, 229, 172, 0.2), transparent);
	transition: left 0.5s ease;
}

.feature-list li:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
	background: linear-gradient(135deg, rgba(241, 229, 172, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
}

.feature-list li:hover::before {
	left: 100%;
}

.feature-check {
	width: 35px;
	height: 35px;
	background: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	flex-shrink: 0;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.feature-list li:hover .feature-check {
	transform: scale(1.1) rotate(360deg);
	box-shadow: 0 5px 15px rgba(241, 229, 172, 0.4);
}