﻿
:root {
	--primary: #107687;
	--primary-dark: #0b5060;
	--primary-light: #e6f4f6;
	--accent: #e05c5c;
	--accent-light: #fff0f0;
	--text: #1a2433;
	--muted: #6b7a8d;
	--card-bg: #ffffff;
	--border: #e2e8f0;
	--shadow: 0 4px 20px rgba(16,118,135,0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text);
	background: #f5f9fa;
	font-size: 15px;
}

/* ── TOP STRIP ── */
.top-strip {
	background: var(--primary-dark);
	color: #b8e6ec;
	font-size: 12.5px;
	padding: 6px 0;
}

	.top-strip .strip-item {
		display: inline-flex;
		align-items: center;
		gap: 5px;
	}

		.top-strip .strip-item + .strip-item::before {
			content: '|';
			margin: 0 10px;
			opacity: 0.4;
		}

	.top-strip .badge-open {
		background: var(--accent);
		color: #fff;
		font-size: 10.5px;
		padding: 2px 8px;
		border-radius: 20px;
		font-weight: 600;
		letter-spacing: 0.4px;
		animation: pulse-badge 2s infinite;
	}

@keyframes pulse-badge {
	0%,100% {
		opacity: 1;
	}

	50% {
		opacity: .75;
	}
}

/* ── HEADER ── */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding: 14px 0;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.logo-circle {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	flex-shrink: 0;
}

.univ-name {
	font-family: 'Playfair Display', serif;
	font-size: 19px;
	color: var(--primary-dark);
	line-height: 1.15;
}

.univ-sub {
	font-size: 11.5px;
	color: var(--muted);
	letter-spacing: 0.3px;
}

.btn-portal {
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 9px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13.5px;
	transition: background .2s, transform .15s;
	white-space: nowrap;
}

	.btn-portal:hover {
		background: var(--primary-dark);
		transform: translateY(-1px);
		color: #fff;
	}

	.btn-portal i {
		font-size: 13px;
	}

/* ── HERO ── */
.hero-section {
	background: #fff;
	padding: 0;
}

.hero-left {
	background: linear-gradient(145deg, #0b3d47 0%, var(--primary-dark) 55%, var(--primary) 100%);
	color: #fff;
	padding: 72px 0;
	position: relative;
	overflow: hidden;
	min-height: 420px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

	.hero-left .hero-inner {
		max-width: 680px;
		width: 100%;
		padding: 0 24px;
	}

	.hero-left::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

	.hero-left .tag-badge {
		display: inline-block;
		background: rgba(255,255,255,0.12);
		border: 1px solid rgba(255,255,255,0.2);
		color: #a8e6ee;
		font-size: 11.5px;
		padding: 4px 12px;
		border-radius: 20px;
		margin-bottom: 18px;
		letter-spacing: 0.8px;
		font-weight: 500;
	}

	.hero-left h1 {
		font-family: 'Playfair Display', serif;
		font-size: clamp(28px, 4vw, 42px);
		line-height: 1.25;
		margin-bottom: 16px;
	}

		.hero-left h1 span {
			color: #f9a87b;
		}

	.hero-left p {
		color: rgba(255,255,255,0.72);
		font-size: 15px;
		line-height: 1.75;
		max-width: 520px;
		margin: 0 auto 32px;
	}

.hero-cta-group {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 44px;
}

.btn-hero-primary {
	background: #fff;
	color: var(--primary-dark);
	border: none;
	padding: 11px 28px;
	border-radius: 9px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

	.btn-hero-primary:hover {
		background: #f0fafb;
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(0,0,0,0.15);
		color: var(--primary-dark);
	}

.btn-hero-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,0.4);
	padding: 11px 28px;
	border-radius: 9px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

	.btn-hero-outline:hover {
		background: rgba(255,255,255,0.1);
		border-color: rgba(255,255,255,0.7);
		color: #fff;
	}

.stat-grid {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
}

.stat-item {
	text-align: center;
}

	.stat-item .val {
		font-size: 28px;
		font-weight: 700;
		color: #fff;
		line-height: 1;
	}

	.stat-item .lbl {
		font-size: 11.5px;
		color: rgba(255,255,255,0.6);
		margin-top: 4px;
		letter-spacing: 0.5px;
	}

.stat-divider {
	width: 1px;
	background: rgba(255,255,255,0.15);
	margin: 0 4px;
	align-self: stretch;
}

/* ── PROCESS SECTION ── */
.section-tag {
	display: inline-block;
	background: var(--primary-light);
	color: var(--primary);
	font-size: 11.5px;
	font-weight: 600;
	padding: 4px 14px;
	border-radius: 20px;
	letter-spacing: 0.6px;
	margin-bottom: 10px;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(20px, 2.5vw, 26px);
	color: var(--primary-dark);
	margin-bottom: 6px;
}

.section-sub {
	font-size: 14px;
	color: var(--muted);
	max-width: 500px;
	margin: 0 auto 32px;
}

.process-card {
	background: var(--card-bg);
	border-radius: 14px;
	padding: 24px 20px;
	height: 100%;
	border: 1.5px solid var(--border);
	box-shadow: var(--shadow);
	transition: transform .25s, border-color .25s, box-shadow .25s;
	position: relative;
	overflow: hidden;
}

	.process-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg, var(--primary), var(--accent));
		opacity: 0;
		transition: opacity .25s;
	}

	.process-card:hover {
		transform: translateY(-5px);
		border-color: var(--primary);
		box-shadow: 0 12px 32px rgba(16,118,135,0.14);
	}

		.process-card:hover::before {
			opacity: 1;
		}

.step-num {
	font-size: 11px;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.icon-wrap {
	width: 46px;
	height: 46px;
	background: var(--primary-light);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--primary);
	margin-bottom: 14px;
	transition: background .2s;
}

.process-card:hover .icon-wrap {
	background: var(--primary);
	color: #fff;
}

.process-card h6 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 7px;
	color: var(--text);
}

.process-card p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 14px;
}

.card-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap .2s, color .2s;
}

	.card-link:hover {
		gap: 8px;
		color: var(--accent);
	}

/* ── PROGRAM CATEGORIES ── */
.prog-card {
	border-radius: 14px;
	padding: 26px 22px;
	height: 100%;
	transition: transform .25s, box-shadow .25s;
	border: 1.5px solid transparent;
	position: relative;
	overflow: hidden;
}

	.prog-card:hover {
		transform: translateY(-6px) scale(1.01);
		box-shadow: 0 16px 36px rgba(0,0,0,0.1);
	}

.prog-arts {
	background: linear-gradient(135deg, #e8f4fd 0%, #c5e3f7 100%);
	border-color: #a8d4ef;
}

.prog-science {
	background: linear-gradient(135deg, #eaf9f0 0%, #beefd5 100%);
	border-color: #96ddb8;
}

.prog-commerce {
	background: linear-gradient(135deg, #fff8e6 0%, #fde8a0 100%);
	border-color: #f5d36a;
}

.prog-humanities {
	background: linear-gradient(135deg, #fdf0f0 0%, #f9c9c9 100%);
	border-color: #f4a6a6;
}

.prog-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 14px;
}

.prog-arts .prog-icon {
	background: #1a78c2;
	color: #fff;
}

.prog-science .prog-icon {
	background: #1e9e5a;
	color: #fff;
}

.prog-commerce .prog-icon {
	background: #d4900c;
	color: #fff;
}

.prog-humanities .prog-icon {
	background: #c23a3a;
	color: #fff;
}

.prog-card h6 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}

.prog-card p {
	font-size: 13px;
	color: #556677;
	line-height: 1.6;
	margin-bottom: 16px;
}

.prog-courses {
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 14px;
}

	.prog-courses span {
		font-weight: 700;
		color: var(--text);
	}

.btn-explore {
	border: none;
	border-radius: 7px;
	padding: 7px 18px;
	font-size: 13px;
	font-weight: 600;
	transition: all .2s;
	cursor: pointer;
}

.prog-arts .btn-explore {
	background: #1a78c2;
	color: #fff;
}

.prog-science .btn-explore {
	background: #1e9e5a;
	color: #fff;
}

.prog-commerce .btn-explore {
	background: #d4900c;
	color: #fff;
}

.prog-humanities .btn-explore {
	background: #c23a3a;
	color: #fff;
}

.btn-explore:hover {
	opacity: .85;
	transform: translateY(-1px);
}

/* ── FOOTER ── */
.site-footer {
	background: var(--primary-dark);
	color: rgba(255,255,255,0.65);
	font-size: 13px;
	padding: 18px 0;
}

	.site-footer a {
		color: rgba(255,255,255,0.55);
		text-decoration: none;
		transition: color .2s;
	}

		.site-footer a:hover {
			color: #fff;
		}

section:last-of-type {
	margin-bottom: 24px;
}
/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — admission-portal.html
   Add this at the bottom of your <style> block
═══════════════════════════════════════════ */

@media (max-width: 575px) {

	/* ── TOP STRIP ── */
	.top-strip {
		font-size: 11.5px;
		padding: 5px 0;
		text-align: center;
	}

		.top-strip .strip-item:last-child {
			display: none !important;
		}

	/* ── HEADER ── */
	.site-header {
		padding: 10px 0;
	}

	.logo-circle {
		width: 40px;
		height: 40px;
		font-size: 17px;
		border-radius: 10px;
		flex-shrink: 0;
	}

	.univ-name {
		font-size: 13px;
		line-height: 1.2;
	}

	.univ-sub {
		font-size: 10px;
		line-height: 1.4;
	}
	/* Hide desktop nav on mobile */
	nav.d-none.d-lg-flex {
		display: none !important;
	}

	.btn-portal {
		padding: 7px 12px;
		font-size: 12px;
		border-radius: 7px;
	}

		.btn-portal i {
			display: none;
		}

	/* ── HERO ── */
	.hero-left {
		padding: 44px 0 36px;
		min-height: unset;
	}

	.hero-inner {
		padding: 0 18px;
	}

	.hero-left .tag-badge {
		font-size: 10.5px;
		padding: 3px 10px;
		margin-bottom: 14px;
	}

	.hero-left h1 {
		font-size: 22px;
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.hero-left p {
		font-size: 13.5px;
		line-height: 1.65;
		margin-bottom: 24px;
	}

	/* Stack CTA buttons vertically */
	.hero-cta-group {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		margin-bottom: 32px;
	}

	.btn-hero-primary,
	.btn-hero-outline {
		width: 100%;
		max-width: 280px;
		justify-content: center;
		padding: 11px 20px;
		font-size: 13.5px;
	}

	/* Stats row */
	.stat-grid {
		gap: 14px;
	}

	.stat-item .val {
		font-size: 22px;
	}

	.stat-item .lbl {
		font-size: 10.5px;
	}

	/* ── PROCESS SECTION ── */
	section {
		padding: 36px 0;
	}

	.section-title {
		font-size: 19px;
	}

	.section-sub {
		font-size: 13px;
		margin-bottom: 22px;
	}

	.process-card {
		padding: 20px 16px;
	}

		.process-card h6 {
			font-size: 14px;
		}

		.process-card p {
			font-size: 12.5px;
		}

	/* ── PROGRAM CARDS ── */
	.prog-card {
		padding: 20px 18px;
	}

		.prog-card h6 {
			font-size: 15px;
		}

		.prog-card p {
			font-size: 13px;
		}

	/* ── FOOTER ── */
	.site-footer {
		font-size: 11.5px;
		padding: 14px 0;
		text-align: center;
	}

		.site-footer .col-md-6:last-child {
			margin-top: 6px;
		}
}

/* ── Tablet (576px–767px) ── */
@media (min-width: 576px) and (max-width: 767px) {
	.univ-name {
		font-size: 15px;
	}

	.univ-sub {
		font-size: 11px;
	}

	.btn-portal {
		padding: 8px 14px;
		font-size: 12.5px;
	}

	.hero-left {
		padding: 52px 0;
	}

	.hero-inner {
		padding: 0 28px;
	}

	.hero-left h1 {
		font-size: 26px;
	}

	.btn-hero-primary,
	.btn-hero-outline {
		font-size: 13.5px;
		padding: 10px 22px;
	}
}

    :root {
      --primary: #107687;
      --primary-dark: #0b5060;
      --primary-light: #e6f4f6;
      --accent: #e05c5c;
      --text: #1a2433;
      --muted: #6b7a8d;
      --border: #e2e8f0;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: #f5f9fa;
      min-height: 100vh;
      display: flex; flex-direction: column;
    }

    /* ── TOP STRIP ── */
    .top-strip {
      background: var(--primary-dark);
      color: #b8e6ec;
      font-size: 12.5px;
      padding: 6px 0;
    }
    .strip-item { display: inline-flex; align-items: center; gap: 5px; }
    .strip-item + .strip-item::before { content:'|'; margin: 0 10px; opacity:.4; }
    .badge-open {
      background: var(--accent); color: #fff;
      font-size: 10.5px; padding: 2px 8px; border-radius: 20px;
      font-weight: 600; letter-spacing: .4px;
      animation: pulse-badge 2s infinite;
    }
    @keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.7} }

    /* ── HEADER ── */
    .site-header {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 13px 0;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .logo-circle {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 20px; flex-shrink: 0;
    }
    .univ-name { font-family:'Playfair Display',serif; font-size:18px; color:var(--primary-dark); line-height:1.15; }
    .univ-sub { font-size:11.5px; color:var(--muted); letter-spacing:.3px; }
    .btn-back {
      background: transparent; color: var(--primary);
      border: 1.5px solid var(--primary); padding: 7px 16px;
      border-radius: 8px; font-size: 13px; font-weight: 600;
      text-decoration: none; transition: all .2s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-back:hover { background: var(--primary); color: #fff; }

    /* ── MAIN LAYOUT ── */
    .auth-wrapper {
      flex: 1;
      display: flex; align-items: stretch;
      min-height: calc(100vh - 110px);
    }

    /* Left panel */
    .auth-panel-left {
      background: linear-gradient(155deg, #0b3d47 0%, var(--primary-dark) 50%, var(--primary) 100%);
      color: #fff;
      padding: 52px 44px;
      display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
    }
    .auth-panel-left::before {
      content:'';
      position:absolute; inset:0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .auth-panel-left .panel-tag {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      color: #a8e6ee; font-size: 11px; padding: 4px 12px;
      border-radius: 20px; margin-bottom: 20px;
      letter-spacing: .8px; font-weight: 500;
    }
    .auth-panel-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.8vw, 30px);
      line-height: 1.3; margin-bottom: 12px;
    }
    .auth-panel-left h2 span { color: #f9a87b; }
    .auth-panel-left p {
      color: rgba(255,255,255,0.68);
      font-size: 14px; line-height: 1.75;
      max-width: 340px; margin-bottom: 36px;
    }
    .feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .feature-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px; color: rgba(255,255,255,0.82);
    }
    .feature-list li .fi {
      width: 30px; height: 30px; border-radius: 8px;
      background: rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; color: #a8e6ee; flex-shrink: 0;
    }

    /* Right panel */
    .auth-panel-right {
      background: #f8fafb;
      display: flex; align-items: center; justify-content: center;
      padding: 40px 32px;
    }

    /* Auth Card */
    .auth-card {
      background: #fff;
      border-radius: 18px;
      padding: 34px 30px;
      width: 100%; max-width: 400px;
      box-shadow: 0 8px 40px rgba(16,118,135,0.12);
      border: 1px solid var(--border);
    }

    /* Page tabs (Login / Register) */
    .page-tabs {
      display: flex;
      background: var(--primary-light);
      border-radius: 10px; padding: 4px;
      margin-bottom: 26px;
    }
    .page-tab {
      flex: 1; border: none; background: transparent;
      padding: 9px 10px; border-radius: 8px;
      font-size: 13.5px; font-weight: 600; color: var(--muted);
      cursor: pointer; transition: all .2s;
    }
    .page-tab.active {
      background: var(--primary); color: #fff;
      box-shadow: 0 2px 10px rgba(16,118,135,0.3);
    }

    /* Sub-tabs (Applicant / College) */
    .sub-tabs {
      display: flex; gap: 6px; margin-bottom: 22px;
    }
    .sub-tab {
      flex: 1; border: 1.5px solid var(--border);
      background: #fff; border-radius: 8px;
      padding: 7px 8px; font-size: 12.5px; font-weight: 600;
      color: var(--muted); cursor: pointer; transition: all .2s;
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .sub-tab.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

    /* Form */
    .form-label { font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 5px; display: block; }
    .form-control {
      font-size: 13.5px; border-radius: 8px;
      border: 1.5px solid var(--border);
      padding: 9px 12px; width: 100%;
      transition: border-color .2s, box-shadow .2s; outline: none;
      font-family: 'DM Sans', sans-serif; color: var(--text);
    }
    .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,118,135,0.1); }
    .input-group { display: flex; }
    .input-icon {
      background: var(--primary-light); border: 1.5px solid var(--border);
      border-right: none; border-radius: 8px 0 0 8px;
      padding: 0 12px; color: var(--primary);
      display: flex; align-items: center; font-size: 15px; flex-shrink: 0;
    }
    .input-group .form-control { border-radius: 0 8px 8px 0; }
    .mb-field { margin-bottom: 14px; }

    /* Captcha */
    .captcha-row { display: flex; gap: 8px; margin-bottom: 8px; }
    .captcha-box {
      flex: 1; background: var(--primary-light);
      border: 1.5px dashed var(--primary); border-radius: 8px;
      padding: 8px 12px; font-size: 17px; font-weight: 700;
      letter-spacing: 5px; color: var(--primary-dark);
      text-align: center; font-family: 'Courier New', monospace;
      user-select: none;
    }
    .btn-refresh {
      border: 1.5px solid var(--border); background: #fff;
      border-radius: 8px; padding: 0 11px;
      color: var(--muted); cursor: pointer; transition: color .2s;
      font-size: 15px;
    }
    .btn-refresh:hover { color: var(--primary); }

    /* Remember / forgot */
    .form-check-label { font-size: 13px; color: var(--text); }
    .forgot-link { font-size: 12.5px; color: var(--accent); text-decoration: none; }
    .forgot-link:hover { text-decoration: underline; }

    /* Buttons */
    .btn-submit {
      width: 100%; border: none;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff; border-radius: 9px;
      padding: 11px; font-weight: 700; font-size: 14px;
      cursor: pointer; transition: all .2s;
      display: flex; align-items: center; justify-content: center; gap: 7px;
      font-family: 'DM Sans', sans-serif;
    }
    .btn-submit:hover { opacity:.9; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(16,118,135,0.3); }
    .btn-outline-accent {
      width: 100%; background: transparent;
      border: 1.5px solid var(--accent); color: var(--accent);
      border-radius: 9px; padding: 10px;
      font-weight: 600; font-size: 13.5px; cursor: pointer;
      transition: all .2s; font-family: 'DM Sans', sans-serif;
      display: flex; align-items: center; justify-content: center; gap: 7px;
    }
    .btn-outline-accent:hover { background: var(--accent); color: #fff; }

    .divider-or {
      text-align: center; position: relative; margin: 14px 0;
      color: var(--muted); font-size: 12px;
    }
    .divider-or::before,.divider-or::after {
      content:''; position:absolute; top:50%;
      width:42%; height:1px; background:var(--border);
    }
    .divider-or::before{left:0;} .divider-or::after{right:0;}

    /* Row for name fields */
    .field-row { display: flex; gap: 10px; }
    .field-row .mb-field { flex: 1; }

    /* Password strength */
    .pwd-strength { display: flex; gap: 4px; margin-top: 6px; }
    .pwd-bar {
      flex: 1; height: 3px; border-radius: 3px;
      background: var(--border); transition: background .3s;
    }
    .pwd-bar.weak { background: #e05c5c; }
    .pwd-bar.medium { background: #f0a500; }
    .pwd-bar.strong { background: #22a45d; }
    .pwd-label { font-size: 11px; color: var(--muted); margin-top: 4px; }

    /* Footer */
    .site-footer {
      background: var(--primary-dark);
      color: rgba(255,255,255,0.55);
      font-size: 12.5px; padding: 14px 0; text-align: center;
    }
    .site-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
    .site-footer a:hover { color: #fff; }

    /* Responsive */
    @media (max-width: 991px) {
      .auth-panel-left { padding: 36px 28px; }
      .auth-panel-right { padding: 28px 20px; }
    }
    @media (max-width: 767px) {
      .auth-panel-left { display: none; }
      .auth-panel-right { min-height: 100%; padding: 24px 16px; }
    }
    

	/* student admission form */

:root {
	--primary: #107687;
	--pd: #0b5060;
	--pl: #e6f4f6;
	--pm: #1a9aaf;
	--accent: #e05c5c;
	--al: #fff0f0;
	--text: #1a2433;
	--muted: #6b7a8d;
	--border: #e2e8f0;
	--bg: #f0f4f8;
	--card: #fff;
	--sb: #0d2535;
	--sbh: #1a3a50;
	--sbw: 230px;
	--hh: 62px;
	--sh: 0 2px 16px rgba(16,118,135,.08);
	--shm: 0 6px 28px rgba(16,118,135,.13);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

body {
	font-family: 'DM Sans',sans-serif;
	color: var(--text);
	background: var(--bg);
	font-size: 14px;
	line-height: 1.6;
	min-height: 100vh
}

/* ── TOP STRIP ── */
.ts {
	background: var(--pd);
	color: #b8e6ec;
	font-size: 11.5px;
	padding: 5px 0;
	z-index: 1060;
	position: relative
}

.tsi {
	display: inline-flex;
	align-items: center;
	gap: 5px
}

	.tsi + .tsi::before {
		content: '|';
		margin: 0 10px;
		opacity: .3
	}

.bop {
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 700;
	animation: blink 2s infinite
}

@keyframes blink {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .65
	}
}

/* ── SITE HEADER ── */
.sh {
	background: #fff;
	border-bottom: 1px solid var(--border);
	height: var(--hh);
	display: flex;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1050;
	box-shadow: 0 2px 12px rgba(0,0,0,.06)
}

.lbox {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg,var(--primary),var(--pd));
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 19px;
	flex-shrink: 0
}

.uname {
	font-family: 'Playfair Display',serif;
	font-size: 15px;
	color: var(--pd);
	line-height: 1.2
}

.usub {
	font-size: 10.5px;
	color: var(--muted)
}

.schip {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--pl);
	border-radius: 8px;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pd)
}

.sav {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0
}

.blout {
	border: 1.5px solid var(--border);
	background: #fff;
	color: var(--muted);
	border-radius: 8px;
	padding: 6px 13px;
	font-size: 12.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: 'DM Sans',sans-serif
}

	.blout:hover {
		border-color: var(--accent);
		color: var(--accent)
	}

/* ── LAYOUT ── */
.layout {
	display: flex;
	min-height: calc(100vh - var(--hh) - 30px)
}

/* ── SIDEBAR ── */
.sidebar {
	width: var(--sbw);
	background: var(--sb);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: var(--hh);
	height: calc(100vh - var(--hh));
	overflow-y: auto;
	transition: width .3s
}

.sb-brand {
	padding: 16px;
	border-bottom: 1px solid rgba(255,255,255,.07)
}

.sb-brand-inner {
	display: flex;
	align-items: center;
	gap: 10px
}

.sb-bicon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0
}

.sb-bt {
	font-size: 12.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2
}

.sb-bs {
	font-size: 10px;
	color: rgba(255,255,255,.35)
}

.sb-nav {
	padding: 10px 0;
	flex: 1
}

.sb-sl {
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(255,255,255,.22);
	padding: 8px 16px 3px
}

.sb-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,.5);
	text-decoration: none;
	border-left: 3px solid transparent;
	transition: all .18s;
	cursor: pointer
}

	.sb-item:hover {
		background: var(--sbh);
		color: rgba(255,255,255,.88);
		border-left-color: rgba(255,255,255,.18)
	}

	.sb-item.active {
		background: rgba(16,118,135,.25);
		color: #fff;
		border-left-color: var(--pm);
		font-weight: 600
	}

	.sb-item.done {
		color: rgba(34,200,100,.9)
	}

		.sb-item.done .sbi {
			background: rgba(34,200,100,.18);
			color: rgba(34,200,100,.9)
		}

.sbi {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	background: rgba(255,255,255,.07);
	transition: background .18s
}

.sb-item.active .sbi {
	background: var(--primary);
	color: #fff
}

.sb-badge {
	margin-left: auto;
	background: var(--accent);
	color: #fff;
	font-size: 9.5px;
	font-weight: 700;
	padding: 1px 6px;
	border-radius: 10px
}

	.sb-badge.g {
		background: #22a45d
	}

.sb-div {
	height: 1px;
	background: rgba(255,255,255,.07);
	margin: 8px 16px
}

.sb-prog {
	padding: 12px 16px 16px
}

	.sb-prog .plab {
		font-size: 11px;
		font-weight: 700;
		color: rgba(255,255,255,.7);
		margin-bottom: 3px
	}

	.sb-prog .psub {
		font-size: 10px;
		color: rgba(255,255,255,.35);
		margin-bottom: 6px
	}

.pbar {
	height: 5px;
	background: rgba(255,255,255,.12);
	border-radius: 5px;
	overflow: hidden
}

.pbar-f {
	height: 100%;
	background: linear-gradient(90deg,var(--primary),var(--pm));
	border-radius: 5px;
	transition: width .4s
}

.sb-prof {
	padding: 12px 16px;
	border-top: 1px solid rgba(255,255,255,.07);
	display: flex;
	align-items: center;
	gap: 9px
}

.sp-av {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg,var(--primary),var(--pd));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0
}

.sp-n {
	font-size: 12px;
	font-weight: 700;
	color: #fff
}

.sp-r {
	font-size: 10px;
	color: rgba(255,255,255,.35)
}

/* ── MAIN ── */
.main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column
}

.topbar {
	height: 52px;
	background: #fff;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 22px;
	box-shadow: 0 2px 8px rgba(0,0,0,.04);
	position: sticky;
	top: var(--hh);
	z-index: 100
}

.tb-l {
	display: flex;
	align-items: center;
	gap: 12px
}

.tb-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--pd)
}

.tb-bc {
	font-size: 11.5px;
	color: var(--muted)
}

	.tb-bc span {
		color: var(--primary);
		font-weight: 600
	}

.btn-stog {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: var(--pl);
	border: none;
	color: var(--primary);
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .18s
}

	.btn-stog:hover {
		background: var(--primary);
		color: #fff
	}

.tb-r {
	display: flex;
	align-items: center;
	gap: 8px
}

.tb-ico {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: #f8fafc;
	border: 1px solid var(--border);
	color: var(--muted);
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .18s;
	text-decoration: none;
	position: relative
}

	.tb-ico:hover {
		background: var(--pl);
		color: var(--primary);
		border-color: var(--primary)
	}

.ndot {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	border: 2px solid #fff
}

/* ── CONTENT ── */
.content {
	padding: 20px 22px;
	flex: 1
}

/* ── STATUS CARDS ── */
.sc {
	background: #fff;
	border-radius: 13px;
	padding: 16px;
	border: 1.5px solid var(--border);
	box-shadow: var(--sh);
	transition: transform .22s,border-color .22s,box-shadow .22s;
	height: 100%;
	position: relative;
	overflow: hidden;
	cursor: pointer
}

	.sc:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg,var(--primary),var(--pm));
		opacity: 0;
		transition: opacity .22s
	}

	.sc:hover {
		transform: translateY(-3px);
		box-shadow: var(--shm)
	}

		.sc:hover:after, .sc.active-sc:after {
			opacity: 1
		}

	.sc.active-sc {
		border-color: var(--primary)
	}

.sc-ic {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 10px
}

.ic-b {
	background: var(--pl);
	color: var(--primary)
}

.ic-g {
	background: #e8faf2;
	color: #1e9a5a
}

.ic-a {
	background: #fff8e6;
	color: #c87f0a
}

.ic-r {
	background: var(--al);
	color: var(--accent)
}

.sc-num {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 3px
}

.sc-title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px
}

.sc-status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 20px;
	margin-bottom: 10px
}

.ss-ip {
	background: var(--pl);
	color: var(--pd)
}

.ss-pend {
	background: #fff8e6;
	color: #a06a08
}

.ss-done {
	background: #e8faf2;
	color: #1a7d47
}

.ss-req {
	background: var(--al);
	color: #b53535
}

.btn-sc {
	width: 100%;
	border: none;
	border-radius: 7px;
	padding: 7px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
	font-family: 'DM Sans',sans-serif
}

.bsc-p {
	background: var(--primary);
	color: #fff
}

	.bsc-p:hover {
		background: var(--pd)
	}

.bsc-o {
	background: transparent;
	border: 1.5px solid var(--border);
	color: var(--muted)
}

	.bsc-o:hover {
		border-color: var(--primary);
		color: var(--primary)
	}

/* ── STEPPER ── */
.stepper-wrap {
	background: #fff;
	border-radius: 13px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	padding: 18px 22px;
	margin-bottom: 18px
}

.stepper {
	display: flex;
	align-items: flex-start
}

.sti {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative
}

	.sti:not(:last-child)::after {
		content: '';
		position: absolute;
		top: 16px;
		left: calc(50% + 17px);
		right: calc(-50% + 17px);
		height: 2px;
		background: var(--border);
		z-index: 0;
		transition: background .3s
	}

	.sti.done:not(:last-child)::after {
		background: #22a45d
	}

	.sti.active:not(:last-child)::after {
		background: var(--primary)
	}

.stc {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	border: 2px solid var(--border);
	background: #fff;
	color: var(--muted);
	transition: all .3s;
	position: relative;
	z-index: 1
}

.sti.active .stc {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(16,118,135,.12)
}

.sti.done .stc {
	border-color: #22a45d;
	background: #22a45d;
	color: #fff
}

.stl {
	font-size: 10.5px;
	font-weight: 500;
	color: var(--muted);
	margin-top: 6px;
	text-align: center;
	max-width: 72px
}

.sti.active .stl {
	color: var(--primary);
	font-weight: 700
}

.sti.done .stl {
	color: #22a45d
}

.prog-line {
	height: 4px;
	background: var(--border);
	border-radius: 4px;
	margin-top: 14px;
	overflow: hidden
}

.prog-line-f {
	height: 100%;
	background: linear-gradient(90deg,var(--primary),var(--pm));
	border-radius: 4px;
	transition: width .4s
}

.prog-txt {
	font-size: 11.5px;
	color: var(--muted);
	text-align: right;
	margin-top: 4px
}

/* ── FORM CARD ── */
.fc {
	background: #fff;
	border-radius: 13px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	margin-bottom: 14px;
	overflow: hidden
}

.fch {
	background: linear-gradient(90deg,var(--pl),#f0fbfc);
	border-bottom: 1px solid var(--border);
	padding: 11px 18px;
	display: flex;
	align-items: center;
	gap: 9px
}

.fchi {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0
}

.fch h6 {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--pd);
	margin: 0
}

.fch p {
	font-size: 11px;
	color: var(--muted);
	margin: 0
}

.fcb {
	padding: 16px 18px
}

/* ── FORM ELEMENTS ── */
.fl {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 4px;
	display: block
}

.req {
	color: var(--accent);
	margin-left: 2px
}

.form-control, .form-select {
	font-size: 13px;
	border-radius: 8px;
	border: 1.5px solid var(--border);
	padding: 8px 11px;
	transition: border-color .2s,box-shadow .2s;
	font-family: 'DM Sans',sans-serif;
	color: var(--text);
	width: 100%;
	background: #fff
}

	.form-control:focus, .form-select:focus {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(16,118,135,.09);
		outline: none
	}

	.form-control::placeholder {
		color: #b0bac6;
		font-size: 12px
	}

textarea.form-control {
	resize: vertical;
	min-height: 68px
}

.mbf {
	margin-bottom: 13px
}

.igt {
	background: var(--pl);
	border: 1.5px solid var(--border);
	border-right: none;
	border-radius: 8px 0 0 8px;
	color: var(--primary);
	font-size: 13px;
	padding: 0 10px;
	display: flex;
	align-items: center
}

.ig .form-control {
	border-radius: 0 8px 8px 0;
	border-left: none
}

	.ig .form-control:focus {
		border-left: 1.5px solid var(--primary)
	}

.ig {
	display: flex
}

.rpill {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #f8fafc;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 7px 12px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: all .2s;
	user-select: none
}

	.rpill input[type="radio"] {
		accent-color: var(--primary)
	}

	.rpill:has(input:checked) {
		border-color: var(--primary);
		background: var(--pl);
		color: var(--primary)
	}

.cpill {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #f8fafc;
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 7px 12px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	transition: all .2s;
	user-select: none
}

	.cpill input[type="checkbox"] {
		accent-color: var(--primary)
	}

	.cpill:has(input:checked) {
		border-color: var(--primary);
		background: var(--pl);
		color: var(--primary)
	}

.rg {
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}

.ssec {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 700;
	color: var(--pd);
	margin-bottom: 11px;
	margin-top: 5px;
	padding-bottom: 7px;
	border-bottom: 1.5px solid var(--pl)
}

	.ssec i {
		color: var(--primary);
		font-size: 13px
	}

.ynrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 13px;
	border-radius: 9px;
	background: #f8fafc;
	border: 1px solid var(--border);
	margin-bottom: 7px;
	gap: 10px;
	flex-wrap: wrap
}

.ynlabel {
	font-size: 12.5px;
	font-weight: 500;
	flex: 1
}

.ynopt {
	display: flex;
	gap: 10px
}

	.ynopt label {
		display: flex;
		align-items: center;
		gap: 4px;
		font-size: 13px;
		font-weight: 500;
		cursor: pointer
	}

	.ynopt input {
		accent-color: var(--primary)
	}

/* ── EDU TABLE ── */
.edu-wrap {
	overflow-x: auto
}

.etbl {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 12.5px;
	min-width: 680px
}

	.etbl thead {
		background: linear-gradient(90deg,var(--pd),var(--primary));
		color: #fff
	}

		.etbl thead th {
			padding: 9px 9px;
			font-weight: 600;
			font-size: 11px;
			letter-spacing: .3px;
			white-space: nowrap
		}

			.etbl thead th:first-child {
				border-radius: 7px 0 0 0
			}

			.etbl thead th:last-child {
				border-radius: 0 7px 0 0
			}

	.etbl tbody tr:hover {
		background: var(--pl)
	}

	.etbl tbody td {
		padding: 5px 5px;
		border-bottom: 1px solid var(--border);
		vertical-align: middle
	}

		.etbl tbody td .form-control {
			font-size: 11.5px;
			padding: 5px 7px;
			border-radius: 6px
		}

.rlbl {
	font-weight: 700;
	font-size: 11px;
	color: var(--pd);
	white-space: nowrap
}

/* ── ACTIONS ── */
.factions {
	background: #fff;
	border-radius: 13px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	padding: 14px 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap
}

.ba {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 20px;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: 'DM Sans',sans-serif
}

.bprev {
	background: #fff;
	border: 1.5px solid var(--border);
	color: var(--muted)
}

	.bprev:hover {
		border-color: var(--primary);
		color: var(--primary)
	}

.bnext {
	background: linear-gradient(135deg,var(--primary),var(--pd));
	color: #fff
}

	.bnext:hover {
		opacity: .9;
		transform: translateY(-1px);
		box-shadow: 0 5px 14px rgba(16,118,135,.3)
	}

.bsub {
	background: linear-gradient(135deg,#22a45d,#198a4b);
	color: #fff
}

	.bsub:hover {
		opacity: .9;
		transform: translateY(-1px);
		box-shadow: 0 5px 14px rgba(34,164,93,.3)
	}

.bsave {
	background: #fff;
	border: 1.5px solid var(--primary);
	color: var(--primary)
}

	.bsave:hover {
		background: var(--pl)
	}

/* ── PAGE SWITCH ── */
.fp {
	display: none
}

	.fp.active {
		display: block;
		animation: fi .28s ease
	}

@keyframes fi {
	from {
		opacity: 0;
		transform: translateY(7px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

/* ── INFO ALERT ── */
.ia {
	background: var(--pl);
	border: 1px solid rgba(16,118,135,.2);
	border-radius: 9px;
	padding: 9px 13px;
	font-size: 12.5px;
	color: var(--pd);
	display: flex;
	align-items: flex-start;
	gap: 7px;
	margin-bottom: 14px
}

	.ia i {
		color: var(--primary);
		margin-top: 1px;
		flex-shrink: 0
	}

.ia-warn {
	background: #fff8e6;
	border-color: rgba(212,144,12,.25);
	color: #7a5000
}

	.ia-warn i {
		color: #d4900c
	}

/* ── PHOTO UPLOAD ── */
.photo-box {
	width: 100px;
	height: 120px;
	border: 2px dashed var(--border);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #fafcfd;
	transition: border-color .2s;
	font-size: 10.5px;
	color: var(--muted);
	text-align: center;
	gap: 4px;
	flex-shrink: 0
}

	.photo-box:hover {
		border-color: var(--primary)
	}

	.photo-box i {
		font-size: 20px;
		color: var(--primary)
	}

/* ── DECLARATION ── */
.declbox {
	background: var(--pl);
	border: 1.5px solid rgba(16,118,135,.2);
	border-radius: 11px;
	padding: 16px 18px;
	margin-bottom: 14px
}

	.declbox ol {
		margin: 0;
		padding-left: 18px
	}

		.declbox ol li {
			font-size: 12.5px;
			color: var(--text);
			line-height: 1.8;
			margin-bottom: 4px
		}

/* ── ANNEXURE TABLE ── */
.atbl {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px
}

	.atbl th {
		background: var(--primary);
		color: #fff;
		padding: 8px 10px;
		font-size: 11.5px;
		font-weight: 600
	}

	.atbl td {
		padding: 5px 8px;
		border: 1px solid var(--border);
		vertical-align: middle
	}

	.atbl .form-control {
		font-size: 12px;
		padding: 5px 7px;
		border-radius: 5px
	}

	.atbl .crow td {
		background: var(--pl);
		font-weight: 700;
		font-size: 12.5px;
		color: var(--pd)
	}

/* ── OFFICE USE ── */
.otbl {
	width: 100%;
	border-collapse: collapse;
	font-size: 12.5px
}

	.otbl td, .otbl th {
		border: 1px solid var(--border);
		padding: 7px 9px;
		vertical-align: top
	}

	.otbl th {
		background: var(--pd);
		color: #fff;
		font-size: 11.5px;
		font-weight: 600;
		text-align: center
	}

	.otbl .form-control {
		font-size: 12px;
		padding: 4px 7px;
		border-radius: 5px;
		background: #f8fafc;
		border-color: transparent
	}

.offbadge {
	display: inline-block;
	background: #f0f4f8;
	border: 1.5px dashed var(--border);
	border-radius: 7px;
	padding: 7px 13px;
	font-size: 12px;
	color: var(--muted);
	font-style: italic
}

/* ── MODAL ── */
.moverlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	z-index: 9999;
	align-items: center;
	justify-content: center
}

.mbox {
	background: #fff;
	border-radius: 18px;
	padding: 32px 28px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,.2)
}

.mic {
	width: 64px;
	height: 64px;
	background: #e8faf2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 28px;
	color: #22a45d
}

/* ── SIDEBAR COLLAPSED ── */
.sidebar.col {
	width: 56px
}

	.sidebar.col .sb-bt, .sidebar.col .sb-bs, .sidebar.col .sb-sl, .sidebar.col .sb-badge, .sidebar.col .sb-prog, .sidebar.col .sb-brand-inner .sb-bt {
		display: none
	}

	.sidebar.col .sb-brand-inner {
		justify-content: center
	}

	.sidebar.col .sb-item {
		padding: 10px 12px;
		justify-content: center
	}

		.sidebar.col .sb-item span.sbl {
			display: none
		}

	.sidebar.col .sb-prof {
		justify-content: center
	}

	.sidebar.col .sp-n, .sidebar.col .sp-r {
		display: none
	}

/* ── RESPONSIVE ── */
@media(max-width:991px) {
	.sidebar {
		display: none
	}

	.content {
		padding: 14px
	}
}

@media(max-width:767px) {
	.fcb {
		padding: 13px
	}

	.factions {
		padding: 11px 13px
	}

	.content {
		padding: 10px
	}
}

@media(max-width:575px) {
	.uname {
		font-size: 13px
	}

	.lbox {
		width: 38px;
		height: 38px;
		font-size: 17px;
		border-radius: 9px
	}

	.ba {
		padding: 8px 14px;
		font-size: 12px
	}
}

.sidebar::-webkit-scrollbar {
	width: 4px
}

.sidebar::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,.1);
	border-radius: 4px
}


/*  admin dashboard */
:root {
	--primary: #107687;
	--primary-dark: #0b5060;
	--primary-light: #e6f4f6;
	--primary-mid: #1a9aaf;
	--accent: #e05c5c;
	--accent-light: #fff0f0;
	--text: #1a2433;
	--muted: #6b7a8d;
	--border: #e2e8f0;
	--bg: #f0f4f8;
	--card: #ffffff;
	--sidebar-bg: #0d2535;
	--sidebar-hover: #1a3a50;
	--sidebar-active: #107687;
	--sidebar-w: 240px;
	--topnav-h: 60px;
	--shadow: 0 2px 16px rgba(16,118,135,0.08);
	--shadow-md: 0 6px 28px rgba(16,118,135,0.14);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text);
	background: var(--bg);
	font-size: 14px;
	line-height: 1.6;
}

/* ═══════════════ SHARED: TOP STRIP ═══════════════ */
.top-strip {
	background: var(--primary-dark);
	color: #b8e6ec;
	font-size: 12px;
	padding: 5px 0;
	position: relative;
	z-index: 1050;
}

.strip-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

	.strip-item + .strip-item::before {
		content: '|';
		margin: 0 10px;
		opacity: .35;
	}

.badge-open {
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 700;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .7
	}
}

/* ═══════════════ SHARED: SITE HEADER ═══════════════ */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding: 11px 0;
	position: sticky;
	top: 0;
	z-index: 1040;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo-box {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	flex-shrink: 0;
}

.univ-name {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	color: var(--primary-dark);
	line-height: 1.2;
}

.univ-sub {
	font-size: 11px;
	color: var(--muted);
}

.admin-badge {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
	color: #fff;
	border-radius: 8px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════
       LOGIN PAGE
    ═══════════════════════════════════════ */
#login-page {
	min-height: calc(100vh - 84px);
	background: linear-gradient(145deg, #0d1f2d 0%, #0b3d4a 40%, var(--primary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 16px;
	position: relative;
	overflow: hidden;
}

	/* Background pattern */
	#login-page::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

/* Floating orbs */
.orb {
	position: absolute;
	border-radius: 50%;
	background: rgba(16,118,135,0.15);
	filter: blur(40px);
	pointer-events: none;
}

.orb-1 {
	width: 300px;
	height: 300px;
	top: -80px;
	left: -80px;
}

.orb-2 {
	width: 200px;
	height: 200px;
	bottom: -60px;
	right: 10%;
	background: rgba(224,92,92,0.1);
}

.orb-3 {
	width: 150px;
	height: 150px;
	top: 40%;
	left: 15%;
}

.login-card {
	background: #fff;
	border-radius: 20px;
	padding: 36px 32px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 24px 60px rgba(0,0,0,0.3);
	position: relative;
	z-index: 1;
	border: 1px solid rgba(255,255,255,0.1);
}

.login-logo {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	margin: 0 auto 18px;
	box-shadow: 0 8px 24px rgba(16,118,135,0.4);
}

.login-title {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	color: var(--primary-dark);
	text-align: center;
	margin-bottom: 4px;
}

.login-subtitle {
	font-size: 13px;
	color: var(--muted);
	text-align: center;
	margin-bottom: 28px;
}

/* Divider */
.login-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

	.login-divider::before, .login-divider::after {
		content: '';
		flex: 1;
		height: 1px;
		background: var(--border);
	}

	.login-divider span {
		font-size: 11.5px;
		color: var(--muted);
		white-space: nowrap;
	}

.form-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 5px;
	display: block;
}

.form-control {
	font-size: 13.5px;
	border-radius: 9px;
	border: 1.5px solid var(--border);
	padding: 10px 14px;
	transition: border-color .2s, box-shadow .2s;
	font-family: 'DM Sans', sans-serif;
	width: 100%;
}

	.form-control:focus {
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(16,118,135,0.1);
		outline: none;
	}

	.form-control::placeholder {
		color: #b0bac6;
	}

.input-wrap {
	position: relative;
	margin-bottom: 16px;
}

.input-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	font-size: 15px;
	pointer-events: none;
}

.input-wrap .form-control {
	padding-left: 38px;
}

.input-wrap .toggle-pwd {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	font-size: 15px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.toggle-pwd:hover {
	color: var(--primary);
}

.btn-login {
	width: 100%;
	border: none;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	border-radius: 10px;
	padding: 12px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all .2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: 'DM Sans', sans-serif;
	letter-spacing: 0.3px;
	margin-top: 20px;
}

	.btn-login:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 20px rgba(16,118,135,0.35);
	}

	.btn-login:active {
		transform: translateY(0);
	}

.forgot-link {
	font-size: 12.5px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}

	.forgot-link:hover {
		text-decoration: underline;
	}

.form-check-label {
	font-size: 13px;
}

.form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.login-footer-note {
	text-align: center;
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 20px;
}

	.login-footer-note span {
		color: var(--primary);
		font-weight: 600;
	}

/* Error shake */
.shake {
	animation: shake .4s;
}

@keyframes shake {
	0%,100% {
		transform: translateX(0)
	}

	20%,60% {
		transform: translateX(-6px)
	}

	40%,80% {
		transform: translateX(6px)
	}
}

/* ═══════════════════════════════════════
       DASHBOARD
    ═══════════════════════════════════════ */
#dashboard-page {
	display: none;
}

.admin-layout {
	display: flex;
	min-height: calc(100vh - 84px);
}

/* ── Sidebar ── */
.admin-sidebar {
	width: var(--sidebar-w);
	background: var(--sidebar-bg);
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 84px;
	height: calc(100vh - 84px);
	overflow-y: auto;
	transition: width .3s;
}

.sidebar-brand {
	padding: 18px 16px 14px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-brand-inner {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sidebar-brand-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.sidebar-brand-text .bt {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.sidebar-brand-text .bs {
	font-size: 10.5px;
	color: rgba(255,255,255,0.4);
}

.sidebar-nav {
	padding: 12px 0;
	flex: 1;
}

.nav-section-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.25);
	padding: 8px 18px 4px;
}

.nav-item-link {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	border-left: 3px solid transparent;
	transition: all .18s;
	cursor: pointer;
	position: relative;
}

	.nav-item-link:hover {
		background: var(--sidebar-hover);
		color: rgba(255,255,255,0.9);
		border-left-color: rgba(255,255,255,0.2);
	}

	.nav-item-link.active {
		background: rgba(16,118,135,0.25);
		color: #fff;
		border-left-color: var(--primary-mid);
		font-weight: 600;
	}

	.nav-item-link .nav-icon {
		width: 30px;
		height: 30px;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		flex-shrink: 0;
		background: rgba(255,255,255,0.06);
		transition: background .18s;
	}

	.nav-item-link.active .nav-icon {
		background: var(--primary);
	}

	.nav-item-link:hover .nav-icon {
		background: rgba(255,255,255,0.1);
	}

.nav-badge {
	margin-left: auto;
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 1px 6px;
	border-radius: 10px;
}

	.nav-badge.green {
		background: #22a45d;
	}

.sidebar-bottom {
	padding: 12px 16px;
	border-top: 1px solid rgba(255,255,255,0.07);
}

.admin-mini-profile {
	display: flex;
	align-items: center;
	gap: 10px;
}

.admin-avatar-sm {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.admin-mini-profile .aname {
	font-size: 12.5px;
	font-weight: 700;
	color: #fff;
}

.admin-mini-profile .arole {
	font-size: 10.5px;
	color: rgba(255,255,255,0.35);
}

/* ── Top Navbar ── */
.admin-topnav {
	height: var(--topnav-h);
	background: #fff;
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	position: sticky;
	top: 84px;
	z-index: 100;
}

.topnav-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.btn-sidebar-toggle {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--primary-light);
	border: none;
	color: var(--primary);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .18s;
}

	.btn-sidebar-toggle:hover {
		background: var(--primary);
		color: #fff;
	}

.topnav-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-dark);
}

.topnav-breadcrumb {
	font-size: 12px;
	color: var(--muted);
	margin-left: 4px;
}

	.topnav-breadcrumb span {
		color: var(--primary);
		font-weight: 600;
	}

.topnav-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.topnav-icon-btn {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: #f8fafc;
	border: 1px solid var(--border);
	color: var(--muted);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .18s;
	position: relative;
	text-decoration: none;
}

	.topnav-icon-btn:hover {
		background: var(--primary-light);
		color: var(--primary);
		border-color: var(--primary);
	}

.notif-dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	border: 2px solid #fff;
}

.admin-profile-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--primary-light);
	border-radius: 10px;
	padding: 6px 12px;
	cursor: pointer;
	border: 1px solid rgba(16,118,135,0.15);
	transition: all .18s;
}

	.admin-profile-btn:hover {
		background: #d4eef2;
	}

.admin-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.admin-profile-btn .aname {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--primary-dark);
}

.admin-profile-btn .arole {
	font-size: 10.5px;
	color: var(--muted);
}

.btn-topnav-logout {
	border: 1.5px solid var(--border);
	background: #fff;
	color: var(--muted);
	border-radius: 8px;
	padding: 6px 14px;
	font-size: 12.5px;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'DM Sans', sans-serif;
}

	.btn-topnav-logout:hover {
		border-color: var(--accent);
		color: var(--accent);
	}

/* ── Main Content ── */
.admin-main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.admin-content {
	flex: 1;
	padding: 22px 24px;
	overflow-x: hidden;
}

/* ── Summary Cards ── */
.summary-card {
	background: var(--card);
	border-radius: 14px;
	padding: 18px;
	border: 1.5px solid var(--border);
	box-shadow: var(--shadow);
	transition: transform .22s, box-shadow .22s, border-color .22s;
	position: relative;
	overflow: hidden;
}

	.summary-card:hover {
		transform: translateY(-4px);
		box-shadow: var(--shadow-md);
	}

	.summary-card::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 80px;
		height: 80px;
		border-radius: 0 0 0 80px;
		opacity: 0.08;
	}

.sc-blue::after {
	background: var(--primary);
}

.sc-green::after {
	background: #22a45d;
}

.sc-amber::after {
	background: #d4900c;
}

.sc-red::after {
	background: var(--accent);
}

.sc-blue:hover {
	border-color: var(--primary);
}

.sc-green:hover {
	border-color: #22a45d;
}

.sc-amber:hover {
	border-color: #d4900c;
}

.sc-red:hover {
	border-color: var(--accent);
}

.sc-icon-wrap {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 14px;
}

.sc-blue .sc-icon-wrap {
	background: var(--primary-light);
	color: var(--primary);
}

.sc-green .sc-icon-wrap {
	background: #e8faf2;
	color: #22a45d;
}

.sc-amber .sc-icon-wrap {
	background: #fff8e6;
	color: #d4900c;
}

.sc-red .sc-icon-wrap {
	background: var(--accent-light);
	color: var(--accent);
}

.sc-number {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 4px;
	font-family: 'DM Sans', sans-serif;
}

.sc-blue .sc-number {
	color: var(--primary-dark);
}

.sc-green .sc-number {
	color: #1a7d47;
}

.sc-amber .sc-number {
	color: #a06a08;
}

.sc-red .sc-number {
	color: #b53535;
}

.sc-title {
	font-size: 13px;
	color: var(--muted);
	font-weight: 500;
	margin-bottom: 6px;
}

.sc-change {
	font-size: 11.5px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 3px;
}

	.sc-change.up {
		color: #22a45d;
	}

	.sc-change.down {
		color: var(--accent);
	}

/* ── Charts row ── */
.mini-chart {
	background: var(--card);
	border-radius: 14px;
	border: 1.5px solid var(--border);
	box-shadow: var(--shadow);
	padding: 18px 20px;
	height: 100%;
}

	.mini-chart h6 {
		font-size: 13.5px;
		font-weight: 700;
		color: var(--primary-dark);
		margin-bottom: 14px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

.bar-chart {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 90px;
}

.bar-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.bar-fill {
	width: 100%;
	border-radius: 5px 5px 0 0;
	transition: height .4s;
}

.bar-label {
	font-size: 10px;
	color: var(--muted);
}

/* Status pills in chart */
.status-pill-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.status-pill-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.spi-label {
	font-size: 12px;
	color: var(--muted);
	flex: 1;
}

.spi-bar-wrap {
	flex: 2;
	height: 7px;
	background: #eef1f5;
	border-radius: 5px;
	overflow: hidden;
}

.spi-bar {
	height: 100%;
	border-radius: 5px;
}

.spi-val {
	font-size: 12px;
	font-weight: 700;
	color: var(--text);
	width: 32px;
	text-align: right;
}

/* ── Section Header ── */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
	flex-wrap: wrap;
	gap: 10px;
}

.section-title-sm {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-dark);
	display: flex;
	align-items: center;
	gap: 8px;
}

	.section-title-sm i {
		color: var(--primary);
	}

/* ── Filter Bar ── */
.filter-bar {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.filter-btn {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 20px;
	border: 1.5px solid var(--border);
	background: #fff;
	color: var(--muted);
	cursor: pointer;
	transition: all .18s;
	font-family: 'DM Sans', sans-serif;
}

	.filter-btn.active {
		background: var(--primary);
		color: #fff;
		border-color: var(--primary);
	}

	.filter-btn:hover:not(.active) {
		border-color: var(--primary);
		color: var(--primary);
	}

.search-input-wrap {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1.5px solid var(--border);
	border-radius: 9px;
	padding: 0 12px;
	gap: 8px;
	transition: border-color .2s;
}

	.search-input-wrap:focus-within {
		border-color: var(--primary);
	}

	.search-input-wrap i {
		color: var(--muted);
		font-size: 14px;
	}

	.search-input-wrap input {
		border: none;
		outline: none;
		font-size: 13px;
		font-family: 'DM Sans', sans-serif;
		padding: 7px 0;
		background: transparent;
		width: 200px;
		color: var(--text);
	}

		.search-input-wrap input::placeholder {
			color: #b0bac6;
		}

/* ── Table ── */
.data-table-wrap {
	background: var(--card);
	border-radius: 14px;
	border: 1.5px solid var(--border);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

	.data-table thead {
		background: linear-gradient(90deg, var(--primary-dark), var(--primary));
		color: #fff;
	}

		.data-table thead th {
			padding: 12px 16px;
			font-weight: 600;
			font-size: 12px;
			letter-spacing: 0.3px;
			white-space: nowrap;
		}

			.data-table thead th:first-child {
				border-radius: 0;
			}

	.data-table tbody tr {
		border-bottom: 1px solid #f0f4f8;
		transition: background .15s;
	}

		.data-table tbody tr:last-child {
			border-bottom: none;
		}

		.data-table tbody tr:hover {
			background: #f8fcfd;
		}

	.data-table tbody td {
		padding: 11px 16px;
		vertical-align: middle;
	}

.app-id {
	font-weight: 700;
	color: var(--primary);
	font-size: 12.5px;
}

.student-info {
	display: flex;
	align-items: center;
	gap: 9px;
}

.student-avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.student-name {
	font-weight: 600;
	font-size: 13px;
}

.student-email {
	font-size: 11px;
	color: var(--muted);
}

.status-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	white-space: nowrap;
}

	.status-chip.approved {
		background: #e8faf2;
		color: #1a7d47;
	}

	.status-chip.pending {
		background: #fff8e6;
		color: #a06a08;
	}

	.status-chip.rejected {
		background: var(--accent-light);
		color: #b53535;
	}

	.status-chip.review {
		background: var(--primary-light);
		color: var(--primary-dark);
	}

.btn-view {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 7px;
	border: 1.5px solid var(--border);
	background: #fff;
	color: var(--muted);
	cursor: pointer;
	transition: all .18s;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: 'DM Sans', sans-serif;
	text-decoration: none;
}

	.btn-view:hover {
		border-color: var(--primary);
		color: var(--primary);
		background: var(--primary-light);
	}

.btn-approve {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 11px;
	border-radius: 7px;
	border: none;
	background: #22a45d;
	color: #fff;
	cursor: pointer;
	font-family: 'DM Sans', sans-serif;
	transition: opacity .18s;
}

	.btn-approve:hover {
		opacity: .85;
	}

.btn-reject {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 11px;
	border-radius: 7px;
	border: none;
	background: var(--accent);
	color: #fff;
	cursor: pointer;
	font-family: 'DM Sans', sans-serif;
	transition: opacity .18s;
}

	.btn-reject:hover {
		opacity: .85;
	}

/* Table pagination */
.table-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border-top: 1px solid var(--border);
	font-size: 12.5px;
	color: var(--muted);
	flex-wrap: wrap;
	gap: 8px;
}

.pagination-btns {
	display: flex;
	gap: 4px;
}

.pg-btn {
	width: 30px;
	height: 30px;
	border-radius: 7px;
	border: 1.5px solid var(--border);
	background: #fff;
	color: var(--muted);
	font-size: 12.5px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .15s;
	font-family: 'DM Sans', sans-serif;
}

	.pg-btn:hover {
		border-color: var(--primary);
		color: var(--primary);
	}

	.pg-btn.active {
		background: var(--primary);
		border-color: var(--primary);
		color: #fff;
	}

/* ── Sidebar collapsed ── */
.admin-sidebar.collapsed {
	width: 60px;
}

	.admin-sidebar.collapsed .nav-item-link {
		padding: 10px 14px;
	}

	.admin-sidebar.collapsed .nav-item-label,
	.admin-sidebar.collapsed .nav-badge,
	.admin-sidebar.collapsed .nav-section-label,
	.admin-sidebar.collapsed .sidebar-brand-text,
	.admin-sidebar.collapsed .admin-mini-profile .aname,
	.admin-sidebar.collapsed .admin-mini-profile .arole {
		display: none;
	}

	.admin-sidebar.collapsed .sidebar-brand-inner {
		justify-content: center;
	}

	.admin-sidebar.collapsed .nav-item-link {
		justify-content: center;
	}

		.admin-sidebar.collapsed .nav-item-link .nav-icon {
			width: 32px;
			height: 32px;
		}

	.admin-sidebar.collapsed .admin-mini-profile {
		justify-content: center;
	}

	.admin-sidebar.collapsed .admin-avatar-sm {
		margin: 0 auto;
	}

/* ── Responsive ── */
@media (max-width: 991px) {
	.admin-sidebar {
		display: none;
	}

	.admin-content {
		padding: 16px;
	}

	.admin-topnav {
		padding: 0 16px;
	}
}

@media (max-width: 767px) {
	.admin-content {
		padding: 12px;
	}

	.search-input-wrap input {
		width: 130px;
	}

	.topnav-breadcrumb {
		display: none;
	}
}

@media (max-width: 575px) {
	.univ-name {
		font-size: 13px;
	}

	.logo-box {
		width: 38px;
		height: 38px;
		font-size: 17px;
		border-radius: 9px;
	}

	.admin-profile-btn .arole {
		display: none;
	}
}

@media (max-width: 400px) {
	.filter-bar {
		gap: 6px;
	}

	.filter-btn {
		padding: 4px 10px;
		font-size: 11px;
	}
}

/* ── Recent Activity ── */
.activity-feed {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.activity-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f4f8;
	position: relative;
}

	.activity-item:last-child {
		border-bottom: none;
	}

.activity-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	margin-top: 2px;
}

	.activity-dot.blue {
		background: var(--primary-light);
		color: var(--primary);
	}

	.activity-dot.green {
		background: #e8faf2;
		color: #22a45d;
	}

	.activity-dot.amber {
		background: #fff8e6;
		color: #d4900c;
	}

	.activity-dot.red {
		background: var(--accent-light);
		color: var(--accent);
	}

.activity-text {
	font-size: 12.5px;
	color: var(--text);
	line-height: 1.5;
}

	.activity-text strong {
		color: var(--primary-dark);
	}

.activity-time {
	font-size: 11px;
	color: var(--muted);
	margin-top: 2px;
}

/* ── Scrollbar ── */
.admin-sidebar::-webkit-scrollbar {
	width: 4px;
}

.admin-sidebar::-webkit-scrollbar-track {
	background: transparent;
}

.admin-sidebar::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.1);
	border-radius: 4px;
}

/* sidebar*/
.sidebar-custom {
	width: 240px;
	background: #0f3b4a;
	min-height: 100vh;
}

	.sidebar-custom a {
		color: #cfd8dc;
		padding: 12px 16px;
		display: block;
		text-decoration: none;
		border-radius: 8px;
		margin: 6px 10px;
		transition: 0.3s;
	}

		.sidebar-custom a:hover {
			background: #107687;
			color: #fff;
		}

		.sidebar-custom a.active {
			background: #ff6b6b;
			color: #fff;
		}

.content-area {
	background: #f4f6f9;
	min-height: 100vh;
	padding: 20px;
}


/* navbar hover*/
 
    /* ─── Your existing root vars (keep these as-is) ─── */
    :root {
      --primary: #107687;
      --primary-dark: #0b5060;
      --primary-light: #e6f4f6;
      --accent: #e05c5c;
      --text: #1a2433;
      --muted: #6b7a8d;
      --border: #e2e8f0;
    }
 
    body { font-family: 'DM Sans', sans-serif; background: #f0f4f8; margin: 0; }
 
    /* ─── Your existing top-strip styles ─── */
    .top-strip {
      background: var(--primary-dark); color: #b8e6ec;
      font-size: 12.5px; padding: 6px 0; position: relative; z-index: 1050;
    }
    .strip-item { display: inline-flex; align-items: center; gap: 5px; }
    .strip-item + .strip-item::before { content: '|'; margin: 0 10px; opacity: .4; }
    .badge-open {
      background: var(--accent); color: #fff; font-size: 10.5px;
      padding: 2px 8px; border-radius: 20px; font-weight: 600; letter-spacing: .4px;
      animation: pulse-badge 2s infinite;
    }
    @keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.75} }
 
    /* ─── Your existing site-header styles ─── */
    .site-header {
      background: #fff; border-bottom: 1px solid var(--border);
      padding: 14px 0; position: sticky; top: 0; z-index: 1040;
      box-shadow: 0 2px 12px rgba(0,0,0,.05);
    }
    .logo-circle {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: 14px; display: flex; align-items: center;
      justify-content: center; color: #fff; font-size: 22px; flex-shrink: 0;
    }
    .univ-name {
      font-family: 'Playfair Display', serif; font-size: 19px;
      color: var(--primary-dark); line-height: 1.15;
    }
    .univ-sub { font-size: 11.5px; color: var(--muted); letter-spacing: .3px; }
    .btn-portal {
      background: var(--primary); color: #fff; border: none;
      padding: 9px 20px; border-radius: 8px; font-weight: 600;
      font-size: 13.5px; transition: background .2s, transform .15s;
      white-space: nowrap; cursor: pointer;
    }
    .btn-portal:hover { background: var(--primary-dark); transform: translateY(-1px); color: #fff; }
 
    /* ─── UPDATED: nav link base ─── */
    .nav-link-item {
      color: var(--muted); text-decoration: none; font-size: 13.5px;
      font-weight: 500; transition: color .2s; white-space: nowrap;
    }
    .nav-link-item:hover, .nav-link-item.active-nav { color: var(--primary); }
    .nav-link-item.home-link { color: var(--text); }
 
    /* ─── PROGRAMS TRIGGER ─── */
    .programs-trigger {
      display: inline-flex; align-items: center; gap: 4px;
      color: var(--muted); text-decoration: none;
      font-size: 13.5px; font-weight: 500;
      cursor: pointer; transition: color .2s;
      background: none; border: none; padding: 0;
      font-family: 'DM Sans', sans-serif;
      position: relative;
    }
    .programs-trigger:hover { color: var(--primary); }
    .programs-trigger .pt-chevron {
      font-size: 10px; transition: transform .25s ease;
      display: inline-block;
    }
    .programs-trigger.open { color: var(--primary); }
    .programs-trigger.open .pt-chevron { transform: rotate(180deg); }
 
    /* Active underline on trigger */
    .programs-trigger::after {
      content: '';
      position: absolute; bottom: -18px; left: 0; right: 0;
      height: 2px; background: var(--primary);
      opacity: 0; transition: opacity .2s;
    }
    .programs-trigger.open::after { opacity: 1; }
 
    /* ══════════════════════════════════════════════
       MEGA MENU
    ══════════════════════════════════════════════ */
    .mega-menu {
      position: fixed;
      left: 0; right: 0;
      top: 0; /* set by JS */
      width: 100%;
      background: #0d2535;
      z-index: 1039;
      border-top: 2.5px solid var(--primary);
      border-bottom: 1px solid rgba(255,255,255,.05);
      box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 4px 12px rgba(0,0,0,.2);
 
      /* Animation state */
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
      will-change: opacity, transform;
    }
    .mega-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
 
    /* Inner max-width container */
    .mega-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
    }
 
    /* ── TABS ── */
    .mega-tabs {
      display: flex;
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding-top: 2px;
      gap: 2px;
    }
    .mtab {
      background: transparent; border: none;
      color: rgba(255,255,255,.48); font-size: 13px; font-weight: 600;
      padding: 12px 20px; cursor: pointer; font-family: 'DM Sans', sans-serif;
      display: flex; align-items: center; gap: 7px;
      border-bottom: 2.5px solid transparent; margin-bottom: -1px;
      transition: color .18s, background .18s, border-color .18s;
      white-space: nowrap;
    }
    .mtab i { font-size: 14px; opacity: .6; transition: opacity .18s; }
    .mtab:hover { color: rgba(255,255,255,.82); background: rgba(255,255,255,.04); }
    .mtab.active {
      color: #fff; border-bottom-color: #1a9aaf;
      background: rgba(16,118,135,.14);
    }
    .mtab.active i { opacity: 1; color: #4cd9ea; }
 
    /* ── PANELS ── */
    .mega-panels { padding: 20px 0 0; }
    .mpanel { display: none; }
    .mpanel.active {
      display: block;
      animation: panelFade .18s ease;
    }
    @keyframes panelFade {
      from { opacity: 0; transform: translateY(4px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* ── COLUMN GRID ── */
    .mega-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
 
    .mega-col {
      padding: 0 20px 16px;
      border-right: 1px solid rgba(255,255,255,.07);
    }
    .mega-col:first-child { padding-left: 2px; }
    .mega-col:last-child { border-right: none; }
 
    /* Column heading */
    .mcol-head {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 10px;
      font-size: 11px; font-weight: 700;
      color: #4cd9ea; letter-spacing: .8px; text-transform: uppercase;
    }
    .mcol-icon {
      width: 26px; height: 26px; border-radius: 7px;
      background: rgba(16,118,135,.35);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: #4cd9ea; flex-shrink: 0;
    }
 
    /* Links */
    .mlinks {
      list-style: none; padding: 0; margin: 0 0 8px;
      display: flex; flex-direction: column; gap: 0;
    }
    .mlinks li a {
      display: flex; align-items: center; gap: 2px;
      font-size: 13px; color: rgba(255,255,255,.6);
      text-decoration: none; padding: 5px 6px; border-radius: 6px;
      transition: background .14s, color .14s, padding-left .14s;
      font-family: 'DM Sans', sans-serif;
    }
    .mlinks li a i {
      font-size: 15px; opacity: 0; color: #1a9aaf;
      flex-shrink: 0; transition: opacity .14s;
    }
    .mlinks li a:hover {
      background: rgba(16,118,135,.22);
      color: #fff; padding-left: 10px;
    }
    .mlinks li a:hover i { opacity: 1; }
 
    /* View all */
    .mview-all {
      font-size: 11px; font-weight: 700; color: #1a9aaf;
      text-decoration: none; letter-spacing: .3px;
      display: inline-flex; align-items: center; gap: 3px;
      padding: 2px 6px; transition: color .15s;
    }
    .mview-all:hover { color: #4cd9ea; text-decoration: underline; }
 
    /* ── FOOTER STRIP ── */
    .mega-footer {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 10px 2px 14px;
      border-top: 1px solid rgba(255,255,255,.07);
      margin-top: 2px; flex-wrap: wrap; gap: 8px;
    }
    .mega-footer-note {
      font-size: 11.5px; color: rgba(255,255,255,.3);
      display: flex; align-items: center; gap: 5px;
    }
    .mega-footer-note i { color: rgba(255,255,255,.4); }
    .mf-links { display: flex; gap: 6px; flex-wrap: wrap; }
    .mf-links a {
      font-size: 12px; font-weight: 600;
      color: rgba(255,255,255,.5); text-decoration: none;
      padding: 5px 12px; border-radius: 6px;
      border: 1px solid rgba(255,255,255,.1);
      display: inline-flex; align-items: center; gap: 5px;
      transition: all .16s;
    }
    .mf-links a:hover {
      background: rgba(255,255,255,.08); color: #fff;
      border-color: rgba(255,255,255,.2);
    }
    .mf-links a.mf-cta {
      background: var(--primary); color: #fff; border-color: var(--primary);
    }
    .mf-links a.mf-cta:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
 
    /* ── MOBILE ── */
    @media (max-width: 991px) {
      .mega-menu {
        max-height: 78vh; overflow-y: auto;
        border-radius: 0 0 12px 12px;
      }
      .mega-inner { padding: 0 16px; }
      .mega-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
      .mtab { font-size: 12px; padding: 10px 14px; }
      .mega-grid { grid-template-columns: 1fr 1fr; }
      .mega-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 12px 10px; }
      .mega-col:last-child { border-bottom: none; }
      .mega-footer { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 575px) {
      .mega-grid { grid-template-columns: 1fr; }
    }
 
    /* Demo page body content */
    .demo-body {
      max-width: 800px; margin: 60px auto; padding: 0 24px; text-align: center;
      font-family: 'DM Sans', sans-serif;
    }
    .demo-body h2 {
      font-family: 'Playfair Display', serif;
      font-size: 28px; color: var(--primary-dark); margin-bottom: 12px;
    }
    .demo-body p { color: var(--muted); font-size: 15px; line-height: 1.7; }
  

	/* programs first page */

:root {
	--primary: #107687;
	--pd: #0b5060;
	--pm: #1a9aaf;
	--pl: #e6f4f6;
	--p2: #d0ecf0;
	--accent: #e05c5c;
	--al: #fff0f0;
	--ab: #c94040;
	--text: #1a2433;
	--muted: #6b7a8d;
	--border: #e2e8f0;
	--bg: #f5f8fa;
	--card: #fff;
	--sh: 0 2px 16px rgba(16,118,135,.08);
	--shm: 0 8px 32px rgba(16,118,135,.14);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'DM Sans',sans-serif;
	color: var(--text);
	background: var(--bg);
	font-size: 14px;
	line-height: 1.65
}

/* ── TOP STRIP ── */
.ts {
	background: var(--pd);
	color: #b8e6ec;
	font-size: 12px;
	padding: 5px 0;
	z-index: 1060;
	position: relative
}

.tsi {
	display: inline-flex;
	align-items: center;
	gap: 5px
}

	.tsi + .tsi::before {
		content: '|';
		margin: 0 10px;
		opacity: .32
	}

.bop {
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 700;
	animation: blink 2s infinite
}

@keyframes blink {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .65
	}
}

/* ── HEADER ── */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding: 12px 0;
	position: sticky;
	top: 0;
	z-index: 1050;
	box-shadow: 0 2px 12px rgba(0,0,0,.06)
}

.logo-box {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg,var(--primary),var(--pd));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	flex-shrink: 0
}

.uname {
	font-family: 'Playfair Display',serif;
	font-size: 16px;
	color: var(--pd);
	line-height: 1.2
}

.usub {
	font-size: 10.5px;
	color: var(--muted)
}

.nav-link-base {
	color: var(--muted);
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 500;
	transition: color .2s;
	white-space: nowrap
}

	.nav-link-base:hover {
		color: var(--primary)
	}

.nav-link-active {
	color: var(--primary);
	font-weight: 700;
	border-bottom: 2px solid var(--primary);
	padding-bottom: 2px
}

.btn-portal {
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 8px 18px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	transition: all .2s;
	white-space: nowrap;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px
}

	.btn-portal:hover {
		background: var(--pd);
		transform: translateY(-1px);
		color: #fff
	}

/* ── BREADCRUMB ── */
.breadcrumb-strip {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding: 9px 0
}

.bc {
	font-size: 12.5px;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap
}

	.bc a {
		color: var(--muted);
		text-decoration: none;
		transition: color .18s
	}

		.bc a:hover {
			color: var(--primary)
		}

	.bc .sep {
		opacity: .4;
		font-size: 10px
	}

	.bc .cur {
		color: var(--primary);
		font-weight: 600
	}

/* ── HERO ── */
.hero {
	background: linear-gradient(135deg,#082533 0%,var(--pd) 45%,#0d7d92 100%);
	position: relative;
	overflow: hidden;
	padding: 56px 0 48px;
}

	.hero::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(50px);
	pointer-events: none
}

.orb1 {
	width: 340px;
	height: 340px;
	background: rgba(16,118,135,.18);
	top: -80px;
	right: -60px
}

.orb2 {
	width: 200px;
	height: 200px;
	background: rgba(224,92,92,.08);
	bottom: -40px;
	left: 10%
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	color: #a8e6ee;
	font-size: 11.5px;
	font-weight: 600;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
	letter-spacing: .5px;
}

.hero h1 {
	font-family: 'Playfair Display',serif;
	font-size: clamp(26px,4vw,42px);
	color: #fff;
	line-height: 1.2;
	margin-bottom: 14px;
}

	.hero h1 span {
		color: #f9a87b
	}

.hero-desc {
	color: rgba(255,255,255,.72);
	font-size: 15px;
	line-height: 1.75;
	max-width: 540px;
	margin-bottom: 28px
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap
}

.btn-hero-apply {
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 11px 26px;
	border-radius: 9px;
	font-weight: 700;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	transition: all .2s;
	font-family: 'DM Sans',sans-serif;
	text-decoration: none;
}

	.btn-hero-apply:hover {
		background: var(--ab);
		transform: translateY(-2px);
		box-shadow: 0 6px 18px rgba(224,92,92,.35);
		color: #fff
	}

.btn-hero-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,.4);
	padding: 11px 22px;
	border-radius: 9px;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	transition: all .2s;
	font-family: 'DM Sans',sans-serif;
	text-decoration: none;
}

	.btn-hero-outline:hover {
		background: rgba(255,255,255,.1);
		border-color: rgba(255,255,255,.7);
		color: #fff
	}

/* Hero stat chips */
.hero-stats {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 28px
}

.hstat {
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 10px;
	padding: 10px 16px;
	text-align: center;
	min-width: 90px;
}

.hstat-num {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	line-height: 1
}

.hstat-lbl {
	font-size: 10.5px;
	color: rgba(255,255,255,.55);
	margin-top: 3px;
	letter-spacing: .3px
}

/* ── QUICK INFO BAR ── */
.qbar {
	background: #fff;
	border-bottom: 1px solid var(--border);
	box-shadow: 0 2px 10px rgba(0,0,0,.04)
}

.qbar-inner {
	display: flex;
	gap: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}

.qitem {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 14px 24px;
	border-right: 1px solid var(--border);
	white-space: nowrap;
	flex-shrink: 0;
}

	.qitem:last-child {
		border-right: none
	}

.qi-icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--pl);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0
}

.qi-lbl {
	font-size: 10.5px;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: .3px;
	text-transform: uppercase
}

.qi-val {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--text)
}

/* ── SECTION HEADER ── */
.sec-tag {
	display: inline-block;
	background: var(--pl);
	color: var(--primary);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 20px;
	letter-spacing: .6px;
	margin-bottom: 8px
}

.sec-title {
	font-family: 'Playfair Display',serif;
	font-size: clamp(20px,2.5vw,28px);
	color: var(--pd);
	margin-bottom: 6px
}

.sec-sub {
	font-size: 14px;
	color: var(--muted);
	max-width: 540px
}

section {
	padding: 56px 0
}

	section:nth-child(even) {
		background: #fff
	}

/* ── OVERVIEW ── */
.overview-desc {
	font-size: 14.5px;
	color: var(--text);
	line-height: 1.85;
	margin-bottom: 20px
}

.detail-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px
}

	.detail-list li {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		background: #f8fafc;
		border: 1px solid var(--border);
		border-radius: 10px;
		padding: 12px 14px;
		font-size: 13.5px;
		transition: border-color .2s;
	}

		.detail-list li:hover {
			border-color: var(--primary)
		}

		.detail-list li .dl-icon {
			width: 30px;
			height: 30px;
			border-radius: 8px;
			background: var(--pl);
			color: var(--primary);
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 14px;
			flex-shrink: 0
		}

		.detail-list li .dl-key {
			font-weight: 700;
			color: var(--pd);
			min-width: 130px;
			font-size: 12.5px
		}

		.detail-list li .dl-val {
			color: var(--text)
		}

/* Overview image panel */
.ov-img-card {
	background: linear-gradient(145deg,var(--pd),var(--primary));
	border-radius: 16px;
	padding: 28px;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

	.ov-img-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
	}

.ovc-stat {
	margin-bottom: 14px
}

.ovc-num {
	font-size: 36px;
	font-weight: 800;
	line-height: 1
}

.ovc-lbl {
	font-size: 12px;
	color: rgba(255,255,255,.6);
	margin-top: 3px
}

.ovc-divider {
	height: 1px;
	background: rgba(255,255,255,.15);
	margin: 16px 0
}

.ovc-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 8px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,.85);
	margin-top: 6px
}

/* ── CURRICULUM TABS ── */
.curr-tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid var(--border);
	margin-bottom: 24px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}

.ctab {
	background: transparent;
	border: none;
	border-bottom: 2.5px solid transparent;
	margin-bottom: -2px;
	padding: 11px 22px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--muted);
	cursor: pointer;
	transition: all .18s;
	font-family: 'DM Sans',sans-serif;
	white-space: nowrap;
}

	.ctab:hover {
		color: var(--primary);
		background: var(--pl)
	}

	.ctab.active {
		color: var(--primary);
		border-bottom-color: var(--primary);
		background: var(--pl)
	}

.cpanel {
	display: none
}

	.cpanel.active {
		display: block;
		animation: pfade .2s ease
	}

@keyframes pfade {
	from {
		opacity: 0;
		transform: translateY(4px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.subj-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
	gap: 10px
}

.subj-card {
	background: #f8fafc;
	border: 1.5px solid var(--border);
	border-radius: 10px;
	padding: 12px 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	transition: all .2s;
	cursor: default;
}

	.subj-card:hover {
		border-color: var(--primary);
		background: var(--pl);
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(16,118,135,.1)
	}

.subj-num {
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: var(--pl);
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.subj-card:hover .subj-num {
	background: var(--primary);
	color: #fff
}

.subj-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.4
}

.subj-type {
	font-size: 11px;
	color: var(--muted);
	margin-top: 2px
}

.sem-label {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 10px;
	padding: 4px 12px;
	background: var(--pl);
	border-radius: 6px;
	display: inline-block
}

/* ── ELIGIBILITY ── */
.elig-card {
	background: #fff;
	border-radius: 14px;
	border: 1.5px solid var(--border);
	box-shadow: var(--sh);
	padding: 22px;
	height: 100%
}

	.elig-card h5 {
		font-family: 'Playfair Display',serif;
		font-size: 17px;
		color: var(--pd);
		margin-bottom: 14px;
		display: flex;
		align-items: center;
		gap: 8px
	}

		.elig-card h5 i {
			color: var(--primary);
			font-size: 16px
		}

.elig-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px
}

	.elig-list li {
		display: flex;
		align-items: flex-start;
		gap: 9px;
		font-size: 13.5px;
		color: var(--text);
		line-height: 1.55
	}

		.elig-list li::before {
			content: '';
			width: 20px;
			height: 20px;
			border-radius: 50%;
			background: var(--pl);
			display: flex;
			align-items: center;
			justify-content: center;
			flex-shrink: 0;
			margin-top: 1px;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23107687'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
			background-repeat: no-repeat;
			background-position: center;
			background-size: 12px;
		}

.note-box {
	background: var(--al);
	border: 1px solid rgba(224,92,92,.2);
	border-radius: 9px;
	padding: 12px 14px;
	font-size: 12.5px;
	color: #8a3030;
	margin-top: 14px;
	display: flex;
	align-items: flex-start;
	gap: 7px
}

	.note-box i {
		color: var(--accent);
		flex-shrink: 0;
		margin-top: 1px
	}

/* ── CAREER CARDS ── */
.career-card {
	background: #fff;
	border-radius: 14px;
	border: 1.5px solid var(--border);
	padding: 22px 18px;
	box-shadow: var(--sh);
	height: 100%;
	transition: transform .22s,border-color .22s,box-shadow .22s;
	text-align: center;
}

	.career-card:hover {
		transform: translateY(-5px);
		border-color: var(--primary);
		box-shadow: var(--shm)
	}

.career-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.ci-blue {
	background: var(--pl);
	color: var(--primary)
}

.ci-coral {
	background: var(--al);
	color: var(--accent)
}

.ci-green {
	background: #e8faf2;
	color: #1e9a5a
}

.ci-amber {
	background: #fff8e6;
	color: #c87f0a
}

.ci-purple {
	background: #f0ebff;
	color: #7c3aed
}

.ci-teal {
	background: #e0f8f7;
	color: #0d7d7d
}

.career-card h6 {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 5px
}

.career-card p {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0
}

.career-tag {
	display: inline-block;
	background: var(--pl);
	color: var(--primary);
	font-size: 10.5px;
	font-weight: 600;
	padding: 2px 9px;
	border-radius: 10px;
	margin-top: 8px
}

/* ── HIGHLIGHTS ── */
.hl-card {
	background: #fff;
	border-radius: 14px;
	border: 1.5px solid var(--border);
	padding: 20px 18px;
	box-shadow: var(--sh);
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: transform .22s,border-color .22s,box-shadow .22s;
}

	.hl-card::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 3px;
		background: linear-gradient(90deg,var(--primary),var(--pm));
		opacity: 0;
		transition: opacity .22s
	}

	.hl-card:hover {
		transform: translateY(-4px);
		border-color: var(--primary);
		box-shadow: var(--shm)
	}

		.hl-card:hover::after {
			opacity: 1
		}

.hl-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	margin-bottom: 12px
}

.hl-card h6 {
	font-size: 14px;
	font-weight: 700;
	color: var(--pd);
	margin-bottom: 6px
}

.hl-card p {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.65;
	margin: 0
}

/* ── FACULTY STRIP ── */
.fac-card {
	background: #fff;
	border-radius: 13px;
	border: 1.5px solid var(--border);
	padding: 18px;
	box-shadow: var(--sh);
	display: flex;
	align-items: center;
	gap: 14px
}

.fac-av {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	flex-shrink: 0
}

.fac-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--pd)
}

.fac-role {
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 2px
}

.fac-qual {
	font-size: 11px;
	color: var(--primary);
	font-weight: 600;
	margin-top: 3px
}

/* ── CTA SECTION ── */
.cta-section {
	background: linear-gradient(135deg,#082533 0%,var(--pd) 50%,#0d7d92 100%);
	padding: 56px 0;
	position: relative;
	overflow: hidden;
}

	.cta-section::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
	}

	.cta-section h2 {
		font-family: 'Playfair Display',serif;
		font-size: clamp(22px,3vw,34px);
		color: #fff;
		margin-bottom: 10px
	}

	.cta-section p {
		color: rgba(255,255,255,.68);
		font-size: 15px;
		line-height: 1.7;
		max-width: 500px;
		margin: 0 auto 28px
	}

.cta-btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap
}

.btn-cta-apply {
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all .2s;
	font-family: 'DM Sans',sans-serif;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px
}

	.btn-cta-apply:hover {
		background: var(--ab);
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(224,92,92,.35);
		color: #fff
	}

.btn-cta-contact {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,.4);
	padding: 12px 26px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all .2s;
	font-family: 'DM Sans',sans-serif;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px
}

	.btn-cta-contact:hover {
		background: rgba(255,255,255,.1);
		border-color: rgba(255,255,255,.7);
		color: #fff
	}

/* ── STICKY APPLY BAR (mobile) ── */
.sticky-apply {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--border);
	padding: 12px 16px;
	z-index: 1000;
	box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}

@media(max-width:767px) {
	.sticky-apply {
		display: flex;
		gap: 10px
	}
}

.sticky-apply a {
	flex: 1;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	padding: 10px;
	border-radius: 8px;
	text-decoration: none
}

.sa-apply {
	background: var(--accent);
	color: #fff
}

.sa-download {
	background: var(--pl);
	color: var(--primary);
	border: 1.5px solid var(--primary)
}

/* ── FOOTER ── */
.site-footer {
	background: var(--pd);
	color: rgba(255,255,255,.55);
	font-size: 12.5px;
	padding: 18px 0;
	text-align: center
}

	.site-footer a {
		color: rgba(255,255,255,.5);
		text-decoration: none
	}

		.site-footer a:hover {
			color: #fff
		}

/* ── UTILITIES ── */
@media(max-width:991px) {
	section {
		padding: 40px 0
	}

	.hero {
		padding: 40px 0 34px
	}
}

@media(max-width:767px) {
	.hero h1 {
		font-size: 24px
	}

	.hero-desc {
		font-size: 13.5px
	}

	.qitem {
		padding: 11px 14px
	}

	.curr-tabs {
		gap: 0
	}

	.ctab {
		padding: 9px 14px;
		font-size: 12.5px
	}

	body {
		padding-bottom: 60px
	}
}

@media(max-width:575px) {
	.uname {
		font-size: 13px
	}

	.logo-box {
		width: 38px;
		height: 38px;
		font-size: 17px;
		border-radius: 9px
	}

	.subj-grid {
		grid-template-columns: 1fr
	}
}


/* Programs re updated*/

/* ════════════════════════════════════════
           RTMNU COURSE DETAILS PAGE — STYLES
        ════════════════════════════════════════ */
:root {
	--navy: #0b1f3a;
	--navy-light: #132d52;
	--navy-mid: #1a3a66;
	--orange: #f28c60;
	--orange-dk: #d97440;
	--orange-lt: #fff3ed;
	--primary: #107687;
	--primary-dk: #0b5060;
	--primary-lt: #e6f4f6;
	--accent: #e05c5c;
	--text: #1a2433;
	--muted: #6b7a8d;
	--border: #e2e8f0;
	--bg: #f4f6f9;
	--card: #ffffff;
	--sh: 0 2px 14px rgba(11,31,58,.08);
	--shm: 0 6px 28px rgba(11,31,58,.14);
	--sidebar-w: 252px;
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: var(--text);
	background: var(--bg);
	font-size: 14px;
	line-height: 1.65;
}

/* ── TOP STRIP ── */
.top-strip {
	background: var(--primary-dk);
	color: #b8e6ec;
	font-size: 12px;
	padding: 5px 0;
	position: relative;
	z-index: 1060;
}

.tsi {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

	.tsi + .tsi::before {
		content: '|';
		margin: 0 10px;
		opacity: .32;
	}

.bop {
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 700;
}

/* ── SITE HEADER ── */
.site-header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding: 11px 0;
	position: sticky;
	top: 0;
	z-index: 1050;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.logo-box {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dk));
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 19px;
	flex-shrink: 0;
}

.uname {
	font-family: 'Playfair Display', serif;
	font-size: 15.5px;
	color: var(--primary-dk);
	line-height: 1.2;
}

.usub {
	font-size: 10.5px;
	color: var(--muted);
}

.nav-lnk {
	color: var(--muted);
	text-decoration: none;
	font-size: 13.5px;
	font-weight: 500;
	transition: color .18s;
}

	.nav-lnk:hover, .nav-lnk.active-nav {
		color: var(--primary);
	}

.btn-portal {
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 8px 17px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	transition: all .2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

	.btn-portal:hover {
		background: var(--primary-dk);
		transform: translateY(-1px);
		color: #fff;
	}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding: 9px 0;
}

.bc {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	color: var(--muted);
	flex-wrap: wrap;
}

	.bc a {
		color: var(--muted);
		text-decoration: none;
		transition: color .18s;
	}

		.bc a:hover {
			color: var(--primary);
		}

	.bc .sep {
		opacity: .4;
		font-size: 10px;
	}

	.bc .cur {
		color: var(--primary);
		font-weight: 600;
	}

/* ── PAGE LAYOUT ── */
.page-layout {
	display: flex;
	align-items: flex-start;
	gap: 0;
	max-width: 1280px;
	margin: 0 auto;
	padding: 22px 20px 40px;
	gap: 22px;
}

/* ══════════════════════════════════════
           SIDEBAR
        ══════════════════════════════════════ */
.sidebar {
	width: var(--sidebar-w);
	flex-shrink: 0;
	position: sticky;
	top: 104px; /* header(62px) + topbar + buffer */
	align-self: flex-start;
}

.sidebar-card {
	background: var(--navy);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shm);
}

/* Header block */
.sb-header {
	background: var(--orange);
	padding: 16px 18px 14px;
	position: relative;
}

	.sb-header::after {
		content: '';
		position: absolute;
		bottom: -8px;
		left: 20px;
		width: 0;
		height: 0;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid var(--orange);
	}

.sb-header-icon {
	width: 36px;
	height: 36px;
	background: rgba(255,255,255,.22);
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	margin-bottom: 8px;
}

.sb-header h6 {
	font-size: 13px;
	font-weight: 800;
	color: #fff;
	letter-spacing: .8px;
	text-transform: uppercase;
	margin: 0;
}

.sb-header p {
	font-size: 11px;
	color: rgba(255,255,255,.78);
	margin: 2px 0 0;
}

/* Nav */
.sb-nav {
	padding: 14px 0 8px;
}

.sb-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255,255,255,.6);
	cursor: pointer;
	border-left: 3px solid transparent;
	transition: all .18s;
	user-select: none;
	position: relative;
}

	.sb-item:hover {
		background: var(--navy-light);
		color: rgba(255,255,255,.9);
		border-left-color: rgba(255,255,255,.18);
	}

	.sb-item.active {
		background: rgba(242,140,96,.15);
		color: #fff;
		border-left-color: var(--orange);
		font-weight: 700;
	}

	.sb-item .si-ico {
		width: 28px;
		height: 28px;
		border-radius: 7px;
		background: rgba(255,255,255,.07);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 13px;
		flex-shrink: 0;
		transition: background .18s;
	}

	.sb-item.active .si-ico {
		background: var(--orange);
		color: #fff;
	}

	.sb-item .si-arr {
		margin-left: auto;
		font-size: 11px;
		opacity: 0;
		transition: opacity .18s, transform .18s;
	}

	.sb-item.active .si-arr,
	.sb-item:hover .si-arr {
		opacity: 1;
		transform: translateX(2px);
	}

/* Badge on sidebar */
.sb-badge {
	margin-left: auto;
	background: var(--orange);
	color: #fff;
	font-size: 9.5px;
	font-weight: 800;
	padding: 1px 6px;
	border-radius: 10px;
}

/* Bottom of sidebar */
.sb-footer {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 12px 16px;
}

.sb-dept-name {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	font-weight: 600;
	letter-spacing: .4px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.sb-dept-val {
	font-size: 12.5px;
	font-weight: 700;
	color: rgba(255,255,255,.7);
}

.sb-contact-link {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--orange);
	text-decoration: none;
	margin-top: 8px;
	font-weight: 600;
	transition: color .18s;
}

	.sb-contact-link:hover {
		color: #ffd0bb;
	}

/* ══════════════════════════════════════
           MAIN CONTENT
        ══════════════════════════════════════ */
.main-content {
	flex: 1;
	min-width: 0;
}

/* Section header strip */
.section-topbar {
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	padding: 14px 20px;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.stb-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.stb-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--primary-lt);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	flex-shrink: 0;
}

.stb-title {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	color: var(--navy);
}

.stb-sub {
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 1px;
}

/* Content sections */
.content-section {
	display: none;
	animation: secFade .28s ease;
}

	.content-section.active {
		display: block;
	}

@keyframes secFade {
	from {
		opacity: 0;
		transform: translateY(6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Content Cards ── */
.cc {
	background: #fff;
	border-radius: 13px;
	border: 1px solid var(--border);
	box-shadow: var(--sh);
	overflow: hidden;
	margin-bottom: 16px;
}

.cc-header {
	background: linear-gradient(90deg, var(--primary-lt), #f0fbfc);
	border-bottom: 1px solid var(--border);
	padding: 11px 18px;
	display: flex;
	align-items: center;
	gap: 9px;
}

.cc-header-icon {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
}

.cc-header h6 {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
	margin: 0;
}

.cc-header p {
	font-size: 11px;
	color: var(--muted);
	margin: 0;
}

.cc-body {
	padding: 18px 20px;
}

/* ── About Banner ── */
.about-banner {
	width: 100%;
	border-radius: 11px;
	overflow: hidden;
	margin-bottom: 16px;
	position: relative;
	height: 180px;
	background: linear-gradient(135deg, #082533 0%, var(--primary-dk) 55%, var(--primary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-banner-inner {
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 1;
}

	.about-banner-inner h4 {
		font-family: 'Playfair Display', serif;
		font-size: 22px;
		margin-bottom: 6px;
	}

	.about-banner-inner p {
		font-size: 13px;
		color: rgba(255,255,255,.7);
	}

.about-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── Stat chips ── */
.stat-chips {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.stat-chip {
	background: var(--primary-lt);
	border: 1px solid rgba(16,118,135,.2);
	border-radius: 9px;
	padding: 10px 16px;
	text-align: center;
	flex: 1;
	min-width: 90px;
}

.sc-num {
	font-size: 22px;
	font-weight: 800;
	color: var(--primary);
	line-height: 1;
}

.sc-lbl {
	font-size: 11px;
	color: var(--muted);
	margin-top: 3px;
}

/* ── Course List Items ── */
.course-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	background: #f8fafc;
	border: 1.5px solid var(--border);
	border-radius: 10px;
	margin-bottom: 10px;
	transition: all .2s;
	cursor: pointer;
	text-decoration: none;
}

	.course-item:hover {
		border-color: var(--primary);
		background: var(--primary-lt);
		transform: translateX(4px);
	}

.ci-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.ci-b {
	background: var(--primary-lt);
	color: var(--primary);
}

.ci-g {
	background: #e8faf2;
	color: #1e9a5a;
}

.ci-a {
	background: #fff8e6;
	color: #c87f0a;
}

.course-item:hover .ci-icon {
	background: var(--primary);
	color: #fff;
}

.ci-title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
}

.ci-sub {
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 2px;
}

.ci-seats {
	margin-left: auto;
	text-align: right;
	flex-shrink: 0;
}

	.ci-seats .snum {
		font-size: 16px;
		font-weight: 800;
		color: var(--primary);
	}

	.ci-seats .slbl {
		font-size: 10px;
		color: var(--muted);
	}

.ci-arr {
	color: var(--muted);
	font-size: 14px;
	flex-shrink: 0;
	transition: transform .18s;
}

.course-item:hover .ci-arr {
	transform: translateX(3px);
	color: var(--primary);
}

/* ── Tables ── */
.rtmnu-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 13.5px;
}

	.rtmnu-table thead {
		background: linear-gradient(90deg, var(--navy), var(--navy-mid));
		color: #fff;
	}

		.rtmnu-table thead th {
			padding: 11px 14px;
			font-weight: 600;
			font-size: 12px;
			letter-spacing: .3px;
		}

			.rtmnu-table thead th:first-child {
				border-radius: 8px 0 0 0;
			}

			.rtmnu-table thead th:last-child {
				border-radius: 0 8px 0 0;
			}

	.rtmnu-table tbody tr {
		transition: background .14s;
	}

		.rtmnu-table tbody tr:hover {
			background: var(--primary-lt);
		}

	.rtmnu-table tbody td {
		padding: 10px 14px;
		border-bottom: 1px solid var(--border);
		vertical-align: middle;
	}

	.rtmnu-table tbody tr:last-child td {
		border-bottom: none;
	}

.intake-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--primary-lt);
	color: var(--primary);
	font-weight: 700;
	font-size: 12px;
	padding: 3px 10px;
	border-radius: 20px;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 20px;
}

.sp-open {
	background: #e8faf2;
	color: #1a7d47;
}

.sp-closed {
	background: var(--orange-lt);
	color: #c94a10;
}

.sp-limited {
	background: #fff8e6;
	color: #a06a08;
}

/* ── Faculty Cards ── */
.fac-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
}

.fac-card {
	background: #fff;
	border: 1.5px solid var(--border);
	border-radius: 12px;
	padding: 18px 14px;
	text-align: center;
	box-shadow: var(--sh);
	transition: all .22s;
}

	.fac-card:hover {
		border-color: var(--orange);
		transform: translateY(-4px);
		box-shadow: var(--shm);
	}

.fac-av {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	margin: 0 auto 12px;
	border: 3px solid rgba(255,255,255,.2);
}

.fac-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 3px;
}

.fac-desig {
	font-size: 11.5px;
	color: var(--muted);
	margin-bottom: 6px;
}

.fac-email {
	font-size: 11px;
	color: var(--primary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	transition: color .18s;
}

	.fac-email:hover {
		color: var(--primary-dk);
	}

.fac-qual {
	font-size: 10.5px;
	color: var(--muted);
	margin-bottom: 8px;
}

.fac-dept-badge {
	display: inline-block;
	background: var(--orange-lt);
	color: var(--orange-dk);
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
	margin-top: 6px;
}

/* ── Research ── */
.research-bullet {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 9px;
	background: #f8fafc;
	border: 1px solid var(--border);
	margin-bottom: 8px;
	font-size: 13.5px;
	transition: border-color .2s;
}

	.research-bullet:hover {
		border-color: var(--primary);
	}

.rb-dot {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: var(--primary-lt);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ── Alumni list ── */
.alumni-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	background: #f8fafc;
	border: 1px solid var(--border);
	border-radius: 9px;
	margin-bottom: 8px;
	transition: all .18s;
}

	.alumni-item:hover {
		border-color: var(--orange);
		background: var(--orange-lt);
	}

.alumni-num {
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: var(--navy);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.alumni-name {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--navy);
}

.alumni-batch {
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 1px;
}

.alumni-role {
	margin-left: auto;
	font-size: 11.5px;
	color: var(--primary);
	font-weight: 600;
	text-align: right;
}

/* ── Events ── */
.event-card {
	display: flex;
	gap: 14px;
	padding: 14px 16px;
	background: #f8fafc;
	border: 1.5px solid var(--border);
	border-radius: 10px;
	margin-bottom: 10px;
	transition: all .2s;
}

	.event-card:hover {
		border-color: var(--orange);
		background: var(--orange-lt);
	}

.event-date {
	width: 52px;
	border-radius: 10px;
	background: var(--navy);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 8px 6px;
}

.ed-day {
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
}

.ed-mon {
	font-size: 10px;
	font-weight: 600;
	color: var(--orange);
	letter-spacing: .5px;
}

.ev-title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 3px;
}

.ev-sub {
	font-size: 12px;
	color: var(--muted);
}

.ev-badge {
	margin-left: auto;
	align-self: flex-start;
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 20px;
}

.evb-up {
	background: #e8faf2;
	color: #1a7d47;
}

.evb-on {
	background: var(--orange-lt);
	color: var(--orange-dk);
}

.evb-done {
	background: #f0f4f8;
	color: var(--muted);
}

/* ── Contact ── */
.contact-info-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 13px 16px;
	background: #f8fafc;
	border: 1px solid var(--border);
	border-radius: 10px;
	margin-bottom: 10px;
	transition: border-color .2s;
}

	.contact-info-row:hover {
		border-color: var(--primary);
	}

.cir-icon {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--primary-lt);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}

.cir-lbl {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--muted);
}

.cir-val {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--navy);
	margin-top: 1px;
}

.contact-map-stub {
	border-radius: 10px;
	background: linear-gradient(135deg, var(--navy), var(--navy-mid));
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.5);
	font-size: 13px;
	margin-top: 14px;
	border: 2px dashed rgba(255,255,255,.1);
}

/* ── Utilities ── */
.tag-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--primary-lt);
	color: var(--primary);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	letter-spacing: .3px;
}

.orange-pill {
	background: var(--orange-lt);
	color: var(--orange-dk);
}

/* ── Footer ── */
.page-footer {
	background: var(--navy);
	color: rgba(255,255,255,.5);
	font-size: 12.5px;
	padding: 16px 0;
	text-align: center;
	margin-top: 20px;
}

	.page-footer a {
		color: rgba(255,255,255,.45);
		text-decoration: none;
	}

		.page-footer a:hover {
			color: #fff;
		}

/* ── Responsive ── */
@@media (max-width: 991px) {
	.page-layout {
		flex-direction: column;
		padding: 14px 12px 30px;
	}

	.sidebar {
		width: 100%;
		position: static;
	}

	.sb-nav {
		display: flex;
		flex-wrap: wrap;
		gap: 2px;
		padding: 8px 8px;
	}

	.sb-item {
		flex: 1;
		min-width: 80px;
		border-radius: 8px;
		border-left: none;
		border-bottom: 2px solid transparent;
		padding: 8px 10px;
		font-size: 12px;
		justify-content: center;
		text-align: center;
		flex-direction: column;
		gap: 4px;
	}

		.sb-item.active {
			border-left: none;
			border-bottom-color: var(--orange);
		}

	.si-arr {
		display: none;
	}

	.sb-header::after {
		display: none;
	}

	.sb-footer {
		display: none;
	}
}

@@media (max-width: 575px) {
	.uname {
		font-size: 13px;
	}

	.logo-box {
		width: 36px;
		height: 36px;
		font-size: 16px;
		border-radius: 9px;
	}

	.fac-grid {
		grid-template-columns: 1fr 1fr;
	}

	.stat-chips .stat-chip {
		min-width: 72px;
	}
}
