/* ─────────────────────────────────────────
   ABOUT.CSS — About Us page styles
   ───────────────────────────────────────── */

button.hero-hbg {
    position: absolute;
    right: 20px;
    top: 24px;
}

/* ─── PAGE HERO ─── */
.page-hero {
	background: linear-gradient(150deg, #0f0173 0%, #1a3a6e 100%);
	padding: 24px 18px 22px;
}

.page-hero h1 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 5px;
}

.page-hero p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	margin: 0;
}

/* ─── INTRO CARD ─── */
.about-intro {
	background: #fff;
	border-radius: 13px;
	padding: 15px;
	font-size: 13px;
	color: #444;
	line-height: 1.75;
	border: 0.5px solid rgba(0, 0, 0, 0.06);
}

/* ─── DOCUMENT LINKS ─── */
.doc-links {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.doc-link {
	background: #fff;
	border-radius: 12px;
	padding: 14px 15px;
	display: flex;
	align-items: center;
	gap: 13px;
	text-decoration: none;
	border: 0.5px solid rgba(0, 0, 0, 0.06);
	-webkit-tap-highlight-color: transparent;
	transition: transform 0.15s;
}

.doc-link:active {
	transform: scale(0.97);
}

.doc-link-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.doc-link-icon svg {
	width: 18px;
	height: 18px;
}

.doc-link-text {
	flex: 1;
}

.doc-link-text strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #0f0173;
	margin-bottom: 2px;
}

.doc-link-text span {
	font-size: 11px;
	color: #888;
}

.doc-link-arrow {
	color: #bbb;
}

.doc-link-arrow svg {
	width: 16px;
	height: 16px;
}

/* ─── VISION / MISSION ─── */
.vm-card {
	background: #fff;
	border-radius: 13px;
	border: 0.5px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
	margin-bottom: 10px;
}

.vm-card-head {
	padding: 13px 15px 11px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 0.5px solid #f0f0f0;
}

.vm-card-head .vm-icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vm-card-head .vm-icon svg {
	width: 17px;
	height: 17px;
}

.vm-card-head h3 {
	font-size: 14px;
	font-weight: 700;
	color: #0f0173;
	margin: 0;
}

.vm-list {
	list-style: none;
	padding: 10px 15px 14px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.vm-list li {
	font-size: 12.5px;
	color: #444;
	line-height: 1.6;
	padding-left: 16px;
	position: relative;
}

.vm-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1a56db;
	flex-shrink: 0;
}

/* ─── CONTACT STRIP ─── */
.contact-strip {
	background: #fff;
	border-radius: 13px;
	border: 0.5px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.contact-strip a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 15px;
	text-decoration: none;
	border-bottom: 0.5px solid #f5f5f5;
	-webkit-tap-highlight-color: transparent;
}

.contact-strip a:last-child {
	border-bottom: none;
}

.contact-strip a:active {
	background: #f5f8ff;
}

.c-icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.c-icon svg {
	width: 17px;
	height: 17px;
}

.c-text strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #0f0173;
}

.c-text span {
	font-size: 11px;
	color: #888;
}
