/* Badge styles */
.about-badge {
	display: inline-block;
	background: rgba(59,130,246,0.15);
	color: #3b82f6;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 40px;
	border: 1px solid rgba(59,130,246,0.3);
}
.about-badge-dark {
	display: inline-block;
	background: rgba(31,41,55,0.08);
	color: #1f2937;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 40px;
	border: 1px solid rgba(31,41,55,0.15);
}

/* Hero decorative shapes */
.about-shape-1 {
	position: absolute;
	width: 450px;
	height: 450px;
	background: rgba(59,130,246,0.06);
	border-radius: 50%;
	top: -100px;
	right: -80px;
}
.about-shape-2 {
	position: absolute;
	width: 250px;
	height: 250px;
	background: rgba(59,130,246,0.05);
	border-radius: 50%;
	bottom: -60px;
	left: 10%;
}

/* Hero highlight cards */
.about-highlight-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 16px;
	padding: 20px 18px;
	backdrop-filter: blur(6px);
	transition: transform 0.3s ease, background 0.3s ease;
}
.about-highlight-card:hover {
	transform: translateY(-4px);
	background: rgba(255,255,255,0.09);
}
.about-highlight-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Hero Image (right side) */
.about-hero-img-container {
	position: relative;
	padding: 12px;
}
.about-hero-img-ring {
	position: absolute;
	inset: 0;
	border-radius: 24px;
	border: 2px solid rgba(59,130,246,0.35);
	transform: rotate(3deg);
	pointer-events: none;
}
.about-hero-img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.about-hero-img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
	border-radius: 20px;
	transition: transform 0.5s ease;
}
.about-hero-img-wrap:hover .about-hero-img {
	transform: scale(1.04);
}
.about-hero-img-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 45%;
	background: linear-gradient(to top, rgba(31,41,55,0.7) 0%, transparent 100%);
	border-radius: 0 0 20px 20px;
	pointer-events: none;
}
.about-hero-float-tag {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: #fff;
	border-radius: 12px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
	z-index: 2;
}


.about-stat-item {
	padding: 16px 0;
	transition: transform 0.2s ease;
}
.about-stat-item:hover {
	transform: translateY(-3px);
}
.about-stat-number {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 6px;
}
.about-stat-label {
	color: #6b7280;
	font-size: 0.95rem;
	font-weight: 400;
}

/* Mission & Vision Cards */
.about-mv-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 4px 30px rgba(0,0,0,0.06);
	border: 1px solid #f3f4f6;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-mv-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.about-mv-icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.about-mv-divider {
	height: 1px;
	background: #f3f4f6;
	margin: 20px 0;
}

/* Story Section */
.about-story-img-wrap {
	position: relative;
	display: inline-block;
	width: 100%;
}
.about-story-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: white;
	border-radius: 16px;
	padding: 18px 22px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	text-align: center;
	line-height: 1.3;
}
.about-mini-stat {
	background: #f9fafb;
	border-radius: 14px;
	padding: 18px;
	border: 1px solid #f3f4f6;
}

/* Values Section */
.about-value-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	padding: 36px 30px;
	transition: transform 0.3s ease, background 0.3s ease;
}
.about-value-card:hover {
	transform: translateY(-5px);
	background: rgba(255,255,255,0.08);
}
.about-value-card--featured {
	background: rgba(59,130,246,0.15);
	border-color: rgba(59,130,246,0.4);
}
.about-value-card--featured:hover {
	background: rgba(59,130,246,0.22);
}
.about-value-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(59,130,246,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Why Section */
.about-why-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: #fff;
	border-radius: 16px;
	padding: 28px 26px;
	border: 1px solid #f3f4f6;
	box-shadow: 0 2px 16px rgba(0,0,0,0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-why-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.about-why-num {
	font-size: 2rem;
	font-weight: 800;
	color: #3b82f6;
	opacity: 0.35;
	line-height: 1;
	min-width: 48px;
}

/* CTA */
.about-cta-wrap {
	background: rgb(31, 41, 55);
	border-radius: 24px;
	padding: 80px 48px;
	border: 1px solid rgba(255,255,255,0.05);
	box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
	.about-cta-wrap {
		padding: 60px 24px;
		border-radius: 16px;
	}
	.about-cta-wrap h2 {
		font-size: 2rem !important;
		line-height: 1.3 !important;
	}
	.about-cta-wrap p {
		font-size: 1rem !important;
		margin-bottom: 2rem !important;
	}
}

@media (max-width: 480px) {
	.about-cta-wrap {
		padding: 40px 20px;
	}
	.about-cta-btn {
		width: 100%;
		justify-content: center;
	}
}

.about-hero-content p {
	color: #cbd5e1;
	margin: 0 0 36px 0;
	line-height: 1.8;
	font-size: 16px;
}
.about-hero-content h1 {
	font-size: 40px;
	margin: 0 0 24px 0;
	color: #fff;
	font-weight: 700;
}