:root {
	--primary-color: #0d233a; /* Sophisticated Corporate Navy */
	--accent-color: #f39c12;  /* Professional Gold/Amber Accent */
	--text-muted: #5a626a;
	--card-bg: #ffffff;
}

.about-header-bg {
	background: linear-gradient(135deg, #0d233a 0%, #1a3c5e 100%);
	padding: 80px 0;
	color: #ffffff;
	margin-bottom: 50px;
}

.section_title {
	font-weight: 800;
	color: var(--primary-color);
	position: relative;
	padding-bottom: 15px;
}

.section_title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--accent-color);
	border-radius: 2px;
}

/* About Section & Cards */
.about-section {
	padding-bottom: 80px;
}

.about-main-text {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-muted);
	text-align: justify;
}

.mv-card {
	background: var(--card-bg);
	border: none;
	border-radius: 16px;
	padding: 40px 30px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.mv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--accent-color);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mv-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(13, 35, 58, 0.08);
}

.mv-card:hover::before {
	opacity: 1;
}

.mv-icon-box {
	width: 55px;
	height: 55px;
	background: rgba(13, 35, 58, 0.05);
	color: var(--primary-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.mv-card:hover .mv-icon-box {
	background: var(--primary-color);
	color: #ffffff;
}

.mv-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.mv-text {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Facility Feature Grid Layout */
.feature-section {
	background: #f8f9fa;
	padding: 80px 0;
}

.facility-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.facility-card {
	background: #ffffff;
	padding: 35px 30px;
	border-radius: 14px;
	border: 1px solid rgba(0,0,0,0.02);
	box-shadow: 0 4px 20px rgba(0,0,0,0.02);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.facility-card:hover {
	background: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(13, 35, 58, 0.15);
}

.facility-icon {
	font-size: 2.2rem;
	color: var(--accent-color);
	margin-bottom: 20px;
	display: inline-block;
	transition: transform 0.3s ease;
}

.facility-card:hover .facility-icon {
	color: #ffffff;
	transform: scale(1.05);
}

.facility-card h4 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.facility-card:hover h4 {
	color: #ffffff;
}

.facility-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 0;
	transition: color 0.3s ease;
}

.facility-card:hover p {
	color: rgba(255, 255, 255, 0.85);
}