/* ===== ABOUT PAGE ===== */

/* Hero Banner */
.abt-hero {
	background-image:
		url("https://kpsmedicare.com/wp-content/uploads/2025/07/Banner-scaled.jpg");
	background-size: cover;
	background-position: center center;
	padding: 52px 40px;
	border-radius: 20px;
}

.abt-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
	pointer-events: none;
}

.abt-hero h1 {
	color: #fff;
	font-size: 2.6rem;
	font-weight: 800;
	margin: 0;
	letter-spacing: 0.5px;
	position: relative;
}

/* Container */
.abt-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* About Info Section */
.abt-info {
	padding: 60px 40px;
	background: #fff;
}

.abt-info-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 56px;
	align-items: start;
}

.abt-info-left img {
	width: 100%;
	border-radius: 10px;
	display: block;
	object-fit: cover;
}

.abt-info-right h2 {
	color: #e0196e;
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0 0 10px 0;
}

.abt-info-right .abt-subtitle {
	color: #333;
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0 0 18px 0;
	line-height: 1.5;
}

.abt-info-right p {
	color: #444;
	font-size: 0.93rem;
	line-height: 1.7;
	margin: 0 0 14px 0;
}

.abt-info-right ul {
	list-style: none;
	padding: 0;
	margin: 0 0 18px 0;
}

.abt-info-right ul li {
	color: #444;
	font-size: 0.93rem;
	line-height: 1.8;
	padding-left: 16px;
	position: relative;
}

.abt-info-right ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #0d9faa;
}

.abt-tagline {
	font-weight: 700;
	color: #333;
	font-size: 0.93rem;
}

/* Mission / Vision / Core Value Section */
.abt-mvv {
	background: #e8f4fd;
	padding: 60px 40px;
}

.abt-mvv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.abt-mvv-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.abt-mvv-icon {
	width: 100px;
	height: 100px;
	background: #fff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.abt-mvv-icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.abt-mvv-card h3 {
	color: #e0196e;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 12px 0;
}

.abt-mvv-card p {
	color: #444;
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0;
}

/* Message From Director */
.abt-director {
	padding: 60px 40px;
	background: #fff;
}

.abt-director-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 56px;
	align-items: start;
}

.abt-director-left img {
	width: 100%;
	border-radius: 10px;
	display: block;
	object-fit: cover;
	height: 400px;
}

.abt-director-right {
	display: flex;
	flex-direction: column;
	padding-top: 10px;
}

.abt-quote-box {
	width: 54px;
	height: 54px;
	background: #fff;
	border: 2px solid #0d9faa;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #0d9faa;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
}

.abt-director-right h3 {
	color: #222;
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 18px 0;
}

.abt-director-right p {
	color: #444;
	font-size: 0.93rem;
	line-height: 1.8;
	margin: 0 0 20px 0;
}

.abt-director-name {
	color: #555;
	font-size: 0.9rem;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
	.abt-info-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.abt-director-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.abt-director-left img {
		max-width: 340px;
	}
}

@media (max-width: 640px) {
	.abt-hero {
		padding: 40px 20px;
	}

	.abt-hero h1 {
		font-size: 1.9rem;
	}

	.abt-info,
	.abt-director {
		padding: 40px 20px;
	}

	.abt-mvv {
		padding: 40px 20px;
	}

	.abt-mvv-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}