@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap");

body:has(.eng-site) nav.navbar,
body:has(.eng-site) .web-footer,
body:has(.eng-site) .page-breadcrumbs,
body:has(.eng-site) .page-header-wrapper,
body:has(.eng-site) .page-footer {
	display: none !important;
}

body:has(.eng-site) .page-content-wrapper,
body:has(.eng-site) main.container,
body:has(.eng-site) main.my-4,
body:has(.eng-site) .page_content {
	padding: 0;
	margin: 0;
	max-width: 100%;
	width: 100%;
}

.eng-site {
	--eng-primary: #065f46;
	--eng-primary-light: #059669;
	--eng-secondary: #059669;
	--eng-accent: #ecfdf5;
	--eng-green: #10b981;
	--eng-green-soft: #a7f3d0;
	--eng-lime: #84cc16;
	--eng-text: #1e293b;
	--eng-muted: #64748b;
	--eng-bg: #f8fafc;
	--eng-radius: 16px;
	--eng-radius-lg: 24px;
	--eng-shadow: 0 12px 40px rgba(6, 95, 70, 0.08);
	--eng-shadow-lg: 0 24px 60px rgba(6, 95, 70, 0.14);
	--eng-font: "Tajawal", "Plus Jakarta Sans", "Segoe UI", sans-serif;
	font-family: var(--eng-font);
	color: var(--eng-text);
	background: var(--eng-bg);
	line-height: 1.6;
}

.eng-site[dir="ltr"] {
	--eng-font: "Plus Jakarta Sans", "Tajawal", "Segoe UI", sans-serif;
}

.eng-site * {
	box-sizing: border-box;
}

.eng-site a {
	color: var(--eng-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

.eng-site .eng-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.eng-site .eng-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(11, 31, 58, 0.06);
	position: sticky;
	top: 0;
	z-index: 200;
	overflow: visible;
}

.eng-site .eng-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	flex-wrap: nowrap;
	overflow: visible;
}

.eng-site .eng-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--eng-primary);
	letter-spacing: -0.02em;
	flex-shrink: 0;
}

.eng-site .eng-brand-stack {
	flex-direction: column;
	align-items: center;
	gap: 4px;
	min-width: 88px;
	max-width: 120px;
	text-align: center;
}

.eng-site .eng-brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.eng-site .eng-brand-logo img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(11, 31, 58, 0.12);
}

.eng-site .eng-brand-name {
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.15;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 110px;
}

.eng-site .eng-brand img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(11, 31, 58, 0.12);
}

.eng-site .eng-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px 12px;
	align-items: center;
	flex: 1;
	justify-content: center;
	min-width: 0;
	overflow: visible;
}

.eng-site .eng-nav-links {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px 12px;
	align-items: center;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.eng-site .eng-nav-links::-webkit-scrollbar {
	display: none;
}

.eng-site .eng-nav-mega {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px 12px;
	align-items: center;
	flex-shrink: 0;
	overflow: visible;
}

.eng-site .eng-nav-single {
	white-space: nowrap;
}

.eng-site .eng-nav a {
	font-weight: 600;
	font-size: 0.82rem;
	color: var(--eng-muted);
	position: relative;
	padding: 4px 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.eng-site .eng-nav a.active,
.eng-site .eng-nav a:hover {
	color: var(--eng-primary);
}

.eng-site .eng-nav a.active::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--eng-gold), var(--eng-teal));
	border-radius: 2px;
}

.eng-site .eng-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.eng-site .eng-actions .eng-btn {
	padding: 9px 16px;
	font-size: 0.82rem;
}

.eng-site .eng-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 999px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-size: 14px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.eng-site .eng-btn:hover {
	transform: translateY(-2px);
}

.eng-site .eng-btn-primary {
	background: linear-gradient(135deg, var(--eng-primary) 0%, var(--eng-primary-light) 100%);
	color: #fff;
	box-shadow: 0 8px 24px rgba(11, 31, 58, 0.28);
}

.eng-site .eng-btn-gold {
	background: linear-gradient(135deg, #b8921f 0%, var(--eng-gold) 100%);
	color: #1a1508;
	box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.eng-site .eng-btn-outline {
	background: transparent;
	border: 2px solid var(--eng-primary);
	color: var(--eng-primary);
}

.eng-site .eng-btn-ghost-light {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

.eng-site .eng-lang {
	background: var(--eng-accent);
	border: none;
	padding: 9px 16px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	color: var(--eng-primary);
	font-size: 13px;
}

/* Hero */
.eng-site .eng-hero {
	background: linear-gradient(145deg, #061528 0%, #0b1f3a 40%, #163a6b 75%, #1e4d8c 100%);
	color: #fff;
	padding: 80px 0 72px;
	position: relative;
	overflow: hidden;
}

.eng-site .eng-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 20% 20%, rgba(201, 162, 39, 0.15), transparent 50%),
		radial-gradient(ellipse 60% 50% at 85% 80%, rgba(13, 148, 136, 0.12), transparent 45%);
	pointer-events: none;
}

.eng-site .eng-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.eng-site .eng-hero .eng-eyebrow {
	display: inline-block;
	background: rgba(201, 162, 39, 0.2);
	color: var(--eng-gold-soft);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 16px;
	border: 1px solid rgba(201, 162, 39, 0.35);
}

.eng-site .eng-hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 16px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.eng-site .eng-hero .eng-hero-lead {
	font-size: 1.15rem;
	opacity: 0.9;
	margin: 0 0 28px;
	max-width: 540px;
}

.eng-site .eng-hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.eng-site .eng-hero-visual {
	position: relative;
}

.eng-site .eng-hero-img {
	border-radius: var(--eng-radius-lg);
	overflow: hidden;
	box-shadow: var(--eng-shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.eng-site .eng-hero-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
}

.eng-site .eng-hero-float {
	position: absolute;
	bottom: -16px;
	inset-inline-start: -16px;
	background: #fff;
	color: var(--eng-primary);
	padding: 16px 20px;
	border-radius: var(--eng-radius);
	box-shadow: var(--eng-shadow-lg);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.eng-site .eng-hero-float span {
	font-size: 24px;
}

/* Trust strip */
.eng-site .eng-trust-strip {
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
	padding: 14px 0;
}

.eng-site .eng-trust-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 40px;
	font-size: 13px;
	font-weight: 600;
	color: var(--eng-muted);
}

.eng-site .eng-trust-inner strong {
	color: var(--eng-primary);
}

/* Features */
.eng-site .eng-features-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 40px 0 24px;
	margin-top: -32px;
	position: relative;
	z-index: 2;
}

.eng-site .eng-feature {
	background: #fff;
	border-radius: var(--eng-radius);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--eng-shadow);
	border: 1px solid #eef2f7;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eng-site .eng-feature:hover {
	transform: translateY(-6px);
	box-shadow: var(--eng-shadow-lg);
}

.eng-site .eng-feature-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	background: linear-gradient(135deg, var(--eng-accent), #fff);
	border-radius: 14px;
	border: 1px solid #e2e8f0;
}

.eng-site .eng-feature strong {
	display: block;
	color: var(--eng-primary);
	font-size: 15px;
}

.eng-site .eng-feature small {
	display: block;
	margin-top: 6px;
	color: var(--eng-muted);
	font-size: 12px;
}

/* Stats */
.eng-site .eng-stats {
	background: linear-gradient(135deg, var(--eng-primary) 0%, #122d52 100%);
	color: #fff;
	padding: 56px 0;
}

.eng-site .eng-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.eng-site .eng-stat-num {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.eng-site .eng-stat-label {
	font-size: 14px;
	opacity: 0.85;
	margin-top: 4px;
}

/* Sections */
.eng-site .eng-section {
	padding: 72px 0;
}

.eng-site .eng-section-alt {
	background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}

.eng-site .eng-section-dark {
	background: var(--eng-primary);
	color: #e2e8f0;
}

.eng-site .eng-section-title {
	text-align: center;
	margin-bottom: 40px;
	max-width: 640px;
	margin-inline: auto;
}

.eng-site .eng-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--eng-teal);
	margin-bottom: 10px;
}

.eng-site .eng-eyebrow-light {
	color: var(--eng-gold-soft);
}

.eng-site .eng-section-title h2 {
	color: var(--eng-primary);
	margin: 0 0 10px;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.eng-site .eng-section-dark .eng-section-title h2 {
	color: #fff;
}

.eng-site .eng-section-title p {
	color: var(--eng-muted);
	margin: 0;
	font-size: 1.05rem;
}

.eng-site .eng-section-dark .eng-section-title p {
	color: #94a3b8;
}

/* Journey timeline */
.eng-site .eng-journey {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	position: relative;
}

.eng-site .eng-journey-step {
	background: #fff;
	border-radius: var(--eng-radius);
	padding: 24px 16px;
	text-align: center;
	box-shadow: var(--eng-shadow);
	border: 1px solid #e8eef4;
	position: relative;
}

.eng-site .eng-journey-num {
	width: 36px;
	height: 36px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--eng-primary), var(--eng-teal));
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.eng-site .eng-journey-step h4 {
	margin: 0 0 6px;
	font-size: 14px;
	color: var(--eng-primary);
}

.eng-site .eng-journey-step p {
	margin: 0;
	font-size: 12px;
	color: var(--eng-muted);
}

/* Role cards */
.eng-site .eng-roles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 16px;
}

.eng-site .eng-role-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--eng-radius);
	padding: 20px 16px;
	text-align: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.eng-site .eng-role-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

.eng-site .eng-role-icon {
	font-size: 28px;
	margin-bottom: 10px;
}

.eng-site .eng-role-card span {
	font-size: 13px;
	font-weight: 600;
	color: #f1f5f9;
}

/* Cards */
.eng-site .eng-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.eng-site .eng-card {
	background: #fff;
	border-radius: var(--eng-radius);
	padding: 28px;
	box-shadow: var(--eng-shadow);
	border: 1px solid #e8eef4;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.eng-site .eng-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--eng-gold), var(--eng-teal));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.eng-site .eng-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--eng-shadow-lg);
}

.eng-site .eng-card:hover::before {
	opacity: 1;
}

.eng-site .eng-card h3 {
	margin: 0 0 10px;
	color: var(--eng-primary);
	font-size: 1.15rem;
	font-weight: 700;
}

.eng-site .eng-card p {
	margin: 0;
	color: var(--eng-muted);
	font-size: 14px;
}

.eng-site .eng-badge {
	display: inline-block;
	background: var(--eng-accent);
	color: var(--eng-primary);
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.eng-site .eng-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-weight: 700;
	font-size: 14px;
	color: var(--eng-teal);
}

/* CTA band */
.eng-site .eng-cta-band {
	background: linear-gradient(135deg, #0d9488 0%, #0b1f3a 100%);
	color: #fff;
	padding: 64px 0;
	text-align: center;
}

.eng-site .eng-cta-band h2 {
	margin: 0 0 12px;
	font-size: 1.75rem;
	font-weight: 800;
}

.eng-site .eng-cta-band p {
	margin: 0 0 28px;
	opacity: 0.9;
	max-width: 520px;
	margin-inline: auto;
}

.eng-site .eng-cta-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Page hero (inner pages) */
.eng-site .eng-page-hero {
	background: linear-gradient(135deg, #061528 0%, #163a6b 100%);
	color: #fff;
	padding: 56px 0 48px;
	text-align: center;
}

.eng-site .eng-page-hero-compact {
	padding: 48px 0 40px;
}

.eng-site .eng-page-hero h1 {
	margin: 0 0 12px;
	font-size: 2.2rem;
	font-weight: 800;
}

.eng-site .eng-page-hero p {
	margin: 0;
	opacity: 0.88;
	font-size: 1.05rem;
	max-width: 560px;
	margin-inline: auto;
}

/* Filters */
.eng-site .eng-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
	justify-content: center;
}

.eng-site .eng-filter-btn {
	padding: 10px 20px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #fff;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	color: var(--eng-muted);
	transition: all 0.2s ease;
}

.eng-site .eng-filter-btn.active,
.eng-site .eng-filter-btn:hover {
	background: var(--eng-primary);
	color: #fff;
	border-color: var(--eng-primary);
}

/* Apply layout */
.eng-site .eng-apply-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 32px;
	align-items: start;
}

.eng-site .eng-apply-aside {
	background: linear-gradient(160deg, var(--eng-primary) 0%, #163a6b 100%);
	color: #fff;
	border-radius: var(--eng-radius-lg);
	padding: 32px;
}

.eng-site .eng-apply-aside h3 {
	margin: 0 0 16px;
	font-size: 1.25rem;
}

.eng-site .eng-apply-aside ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.eng-site .eng-apply-aside li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.eng-site .eng-apply-aside li:last-child {
	border-bottom: none;
}

.eng-site .eng-apply-box {
	background: #fff;
	border-radius: var(--eng-radius-lg);
	padding: 36px;
	box-shadow: var(--eng-shadow-lg);
	border: 1px solid #e8eef4;
}

.eng-site .eng-form-group {
	margin-bottom: 18px;
}

.eng-site .eng-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--eng-text);
	font-size: 14px;
}

.eng-site .eng-form-group input,
.eng-site .eng-form-group select,
.eng-site .eng-form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d1dce8;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eng-site .eng-form-group input:focus,
.eng-site .eng-form-group select:focus {
	outline: none;
	border-color: var(--eng-teal);
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

/* Footer */
.eng-site .eng-footer {
	background: #040d18;
	color: #94a3b8;
	padding: 56px 0 28px;
	margin-top: 0;
}

.eng-site .eng-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 32px;
}

.eng-site .eng-footer h3,
.eng-site .eng-footer h4 {
	color: #fff;
	margin: 0 0 16px;
	font-size: 1rem;
}

.eng-site .eng-footer p {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.7;
}

.eng-site .eng-footer a {
	color: #94a3b8;
}

.eng-site .eng-footer a:hover {
	color: var(--eng-gold);
}

.eng-site .eng-footer-bottom {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	font-size: 13px;
}

.eng-site .eng-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 26px;
	cursor: pointer;
	color: var(--eng-primary);
}

.eng-site .eng-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.eng-site .eng-reveal.eng-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Top bar & mega menu */
.eng-site .eng-topbar {
	background: var(--eng-primary);
	color: #cbd5e1;
	font-size: 12px;
}

.eng-site .eng-topbar-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	justify-content: center;
	padding: 8px 0;
}

.eng-site .eng-mega-item {
	position: relative;
	flex-shrink: 0;
}

.eng-site .eng-mega-trigger {
	background: none;
	border: none;
	font-weight: 600;
	font-size: 0.82rem;
	color: var(--eng-muted);
	cursor: pointer;
	padding: 4px 0;
	font-family: inherit;
	white-space: nowrap;
}

.eng-site .eng-mega-trigger:hover {
	color: var(--eng-primary);
}

.eng-site .eng-mega-panel {
	display: none;
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 220px;
	background: #fff;
	border-radius: 12px;
	box-shadow: var(--eng-shadow-lg);
	border: 1px solid #e8eef4;
	padding: 10px 0;
	z-index: 1000;
}

.eng-site .eng-mega-item:hover .eng-mega-panel,
.eng-site .eng-mega-item:focus-within .eng-mega-panel {
	display: block;
}

.eng-site .eng-mega-panel a {
	display: block;
	padding: 10px 18px;
	font-size: 14px;
	color: var(--eng-text);
}

.eng-site .eng-mega-panel a:hover {
	background: var(--eng-accent);
	color: var(--eng-primary);
}

/* Institution type cards */
.eng-site .eng-type-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.eng-site .eng-type-card {
	background: #fff;
	border-radius: var(--eng-radius-lg);
	overflow: hidden;
	box-shadow: var(--eng-shadow);
	border: 1px solid #e8eef4;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eng-site .eng-type-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--eng-shadow-lg);
}

.eng-site .eng-type-img {
	height: 180px;
	overflow: hidden;
}

.eng-site .eng-type-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eng-site .eng-type-body {
	padding: 22px 24px 26px;
	position: relative;
}

.eng-site .eng-type-icon {
	font-size: 28px;
	display: block;
	margin-bottom: 8px;
}

.eng-site .eng-status-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

.eng-site .eng-status-active {
	border-color: #86efac;
}

.eng-site .eng-status-pill.eng-status-active {
	background: #dcfce7;
	color: #166534;
}

.eng-site .eng-status-pill.eng-status-inactive {
	background: #fef3c7;
	color: #92400e;
}

.eng-site .eng-status-pill.eng-status-off {
	background: #f1f5f9;
	color: #64748b;
}

.eng-site .eng-type-stats {
	display: flex;
	gap: 14px;
	margin: 14px 0 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--eng-muted);
}

.eng-site .eng-muted {
	color: var(--eng-muted);
	font-size: 14px;
}

/* Gallery */
.eng-site .eng-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 16px;
}

.eng-site .eng-gallery-item {
	border-radius: var(--eng-radius);
	overflow: hidden;
	box-shadow: var(--eng-shadow);
}

.eng-site .eng-gallery-featured {
	grid-column: span 2;
	grid-row: span 2;
}

.eng-site .eng-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.eng-site .eng-gallery-item:hover img {
	transform: scale(1.05);
}

/* Rich cards */
.eng-site .eng-card-rich {
	padding: 0;
	overflow: hidden;
}

.eng-site .eng-card-img {
	height: 160px;
	overflow: hidden;
}

.eng-site .eng-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eng-site .eng-card-body {
	padding: 22px 24px 26px;
}

.eng-site .eng-journey-full {
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.eng-site .eng-journey-full .eng-journey-num {
	font-size: 20px;
	background: linear-gradient(135deg, var(--eng-gold), var(--eng-teal));
}

@media (max-width: 992px) {
	.eng-site .eng-features-bar,
	.eng-site .eng-stats-grid,
	.eng-site .eng-journey {
		grid-template-columns: repeat(2, 1fr);
	}
	.eng-site .eng-footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.eng-site .eng-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.eng-site .eng-gallery-featured {
		grid-column: span 2;
		grid-row: span 1;
	}
	.eng-site .eng-apply-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.eng-site .eng-hero-grid {
		grid-template-columns: 1fr;
	}
	.eng-site .eng-hero {
		padding: 56px 0 48px;
	}
	.eng-site .eng-features-bar,
	.eng-site .eng-stats-grid,
	.eng-site .eng-journey {
		grid-template-columns: 1fr;
	}
	.eng-site .eng-mobile-toggle {
		display: block;
	}
	.eng-site .eng-header-inner {
		flex-wrap: wrap;
	}
	.eng-site .eng-nav {
		display: none;
		flex-direction: column;
		width: 100%;
		order: 4;
		background: #fff;
		padding: 16px 0;
		border-top: 1px solid #e2e8f0;
	}
	.eng-site .eng-nav.open {
		display: flex;
	}
	.eng-site .eng-nav.open .eng-nav-links,
	.eng-site .eng-nav.open .eng-nav-mega {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		overflow: visible;
	}
	.eng-site .eng-nav.open .eng-mega-panel {
		position: static;
		display: none;
		box-shadow: none;
		border: none;
		padding-inline-start: 12px;
	}
	.eng-site .eng-nav.open .eng-mega-item:focus-within .eng-mega-panel,
	.eng-site .eng-nav.open .eng-mega-item:hover .eng-mega-panel {
		display: block;
	}
	.eng-site .eng-actions {
		margin-inline-start: auto;
	}
}

/* ===== Premium Omnexa Education ===== */
.eng-premium .eng-hero-premium {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	padding: 0;
	overflow: hidden;
	color: #fff;
}

.eng-premium .eng-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
}

.eng-premium .eng-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(10, 95, 168, 0.75) 50%, rgba(0, 0, 0, 0.45) 100%);
}

.eng-premium .eng-hero-premium-inner {
	position: relative;
	z-index: 2;
	padding: 100px 24px 80px;
	max-width: 720px;
}

.eng-premium .eng-hero-premium-inner h1 {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.15;
}

.eng-premium .eng-hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 40px;
	max-width: 560px;
}

.eng-premium .eng-hero-stats div {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 14px;
	text-align: center;
	backdrop-filter: blur(8px);
}

.eng-premium .eng-hero-stats strong {
	display: block;
	font-size: 1.5rem;
	color: var(--eng-gold);
}

.eng-premium .eng-hero-stats span {
	font-size: 12px;
	opacity: 0.9;
}

.eng-premium .eng-btn-accent {
	background: linear-gradient(135deg, var(--eng-secondary), var(--eng-teal));
	color: #fff;
	box-shadow: 0 8px 28px rgba(10, 95, 168, 0.4);
}

.eng-premium .eng-value-bar {
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
	padding: 20px 0;
	margin-top: -40px;
	position: relative;
	z-index: 3;
}

.eng-premium .eng-value-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px 40px;
}

.eng-premium .eng-value-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	color: var(--eng-primary);
	font-size: 14px;
}

.eng-premium .eng-topbar-links a {
	color: #cbd5e1;
	margin-inline-start: 16px;
	font-size: 12px;
}

.eng-premium .eng-topbar-links a:hover {
	color: var(--eng-gold);
}

.eng-premium .eng-college-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.eng-premium .eng-college-card {
	background: #fff;
	border-radius: var(--eng-radius-lg);
	overflow: hidden;
	box-shadow: var(--eng-shadow);
	border: 1px solid #e8eef4;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eng-premium .eng-college-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--eng-shadow-lg);
}

.eng-premium .eng-college-img {
	height: 180px;
	overflow: hidden;
}

.eng-premium .eng-college-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.eng-premium .eng-college-card:hover .eng-college-img img {
	transform: scale(1.06);
}

.eng-premium .eng-college-body {
	padding: 20px 22px 24px;
}

.eng-premium .eng-college-body h3 {
	margin: 0 0 8px;
	color: var(--eng-primary);
	font-size: 1.1rem;
}

.eng-premium .eng-btn-sm {
	padding: 8px 18px;
	font-size: 13px;
	margin-top: 12px;
}

.eng-premium .eng-admission-band {
	background: linear-gradient(135deg, var(--eng-primary) 0%, var(--eng-secondary) 100%);
	color: #fff;
	padding: 64px 0;
	text-align: center;
}

.eng-premium .eng-admission-band h2 {
	margin: 0 0 32px;
	font-size: 2rem;
	font-weight: 800;
}

.eng-premium .eng-admission-steps {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 16px;
	margin-bottom: 32px;
}

.eng-premium .eng-adm-step {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--eng-radius);
	padding: 20px 12px;
}

.eng-premium .eng-adm-icon {
	font-size: 28px;
	display: block;
	margin-bottom: 8px;
}

.eng-premium .eng-adm-num {
	display: inline-block;
	background: var(--eng-gold);
	color: var(--eng-primary);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 800;
	line-height: 24px;
	margin-bottom: 6px;
}

.eng-premium .eng-btn-lg {
	padding: 16px 36px;
	font-size: 16px;
}

.eng-premium .eng-services-grid,
.eng-premium .eng-online-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}

.eng-premium .eng-service-card,
.eng-premium .eng-online-card {
	background: #fff;
	border-radius: var(--eng-radius);
	padding: 20px;
	box-shadow: var(--eng-shadow);
	border: 1px solid #e8eef4;
	font-weight: 600;
	color: var(--eng-primary);
}

.eng-premium .eng-service-card span {
	color: var(--eng-teal);
	margin-inline-end: 8px;
}

.eng-premium .eng-split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.eng-premium .eng-split-img {
	border-radius: var(--eng-radius-lg);
	overflow: hidden;
	box-shadow: var(--eng-shadow-lg);
}

.eng-premium .eng-split-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
}

.eng-premium .eng-check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.eng-premium .eng-check-list li {
	padding: 10px 0;
	border-bottom: 1px solid #e2e8f0;
	font-weight: 600;
}

.eng-premium .eng-check-list li::before {
	content: "✓ ";
	color: var(--eng-teal);
}

.eng-premium .eng-scholarship-grid,
.eng-premium .eng-news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.eng-premium .eng-scholarship-card {
	background: linear-gradient(135deg, #fff 0%, #f0f7ff 100%);
	border: 1px solid #dbeafe;
	border-radius: var(--eng-radius);
	padding: 28px;
	border-top: 4px solid var(--eng-gold);
}

.eng-premium .eng-news-card {
	background: #fff;
	border-radius: var(--eng-radius);
	overflow: hidden;
	box-shadow: var(--eng-shadow);
}

.eng-premium .eng-news-img {
	height: 180px;
	overflow: hidden;
}

.eng-premium .eng-news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eng-premium .eng-news-body {
	padding: 20px;
}

.eng-premium .eng-partners-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.eng-premium .eng-partner-pill {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	padding: 12px 24px;
	font-weight: 700;
	color: var(--eng-primary);
	box-shadow: var(--eng-shadow);
}

.eng-premium .eng-section-cta {
	text-align: center;
	margin-top: 32px;
}

.eng-premium .eng-center {
	text-align: center;
	margin-top: 24px;
}

.eng-premium .eng-footer-contact {
	opacity: 0.8;
	margin-top: 12px;
	font-size: 14px;
}

@media (max-width: 768px) {
	.eng-premium .eng-hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}
	.eng-premium .eng-split-section {
		grid-template-columns: 1fr;
	}
}
