﻿
:root {
	--primary: #107687;
	--primary-dark: #020f12;
	--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 #0b5060 ── */
.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: #020f12;
	--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;
	}
}

/* ===== MAIN LAYOUT ===== */
.main-content {
	padding: 20px;
}

/* ===== TOPBAR ===== */
.section-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.stb-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.stb-icon {
	background: #e6f2f3;
	padding: 10px;
	border-radius: 10px;
}

.tag-pill {
	background: #e6f2f3;
	padding: 6px 12px;
	border-radius: 20px;
}

/* ===== UG + PG ONE LINE ===== */
.stat-chips {
	display: flex;
	gap: 20px;
}

/* BOX */
.stat-chip {
	flex: 1;
	background: #e6f2f3;
	border: 1px solid #c7e3e6;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	position: relative;
	cursor: pointer;
}

/* TITLE */
.sc-num {
	font-weight: bold;
	font-size: 18px;
	color: #107687;
}

.sc-lbl {
	font-size: 13px;
	margin-top: 6px;
}

/* ===== HOVER PANEL ===== */
.program-hover-box {
	position: absolute;
	top: 120%;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	width: 650px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	background: #ffffff;
	padding: 20px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 999;
}

/* SHOW */
.program-parent:hover .program-hover-box {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* CARDS */
.program-box {
	background: #f5f9fa;
	border-radius: 14px;
	padding: 16px;
	border-left: 5px solid #107687;
}

	.program-box h5 {
		margin-bottom: 8px;
		color: #0f6b73;
	}

	.program-box p {
		font-size: 13px;
		margin: 2px 0;
	}

/* ===== ABOUT SECTION ===== */
.about-section {
	margin-top: 40px;
	background: #ffffff;
	padding: 20px;
	border-radius: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.stat-chips {
		flex-direction: column;
	}

	.program-hover-box {
		width: 90%;
		grid-template-columns: 1fr;
	}
}

/* ===== MAIN ===== */
.main-content {
	padding: 20px;
}

/* TOPBAR */
.section-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.stb-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.stb-icon {
	background: #e6f2f3;
	padding: 10px;
	border-radius: 10px;
}

.tag-pill {
	background: #e6f2f3;
	padding: 6px 12px;
	border-radius: 20px;
}

/* ===== UG + PG ===== */
.stat-chips {
	display: flex;
	gap: 20px;
}

/* CLICKABLE CARD */
.link-card {
	flex: 1;
	background: #e6f2f3;
	border: 1px solid #c7e3e6;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}

/* TEXT */
.sc-num {
	font-weight: bold;
	font-size: 18px;
	color: #107687;
}

.sc-lbl {
	font-size: 13px;
	margin-top: 6px;
}

/* HOVER EFFECT (ONLY CARD LIFT) */
.link-card:hover {
	transform: translateY(-5px);
	background: #dff1f3;
}

/* ===== ABOUT ===== */
.about-section {
	margin-top: 40px;
	background: #ffffff;
	padding: 20px;
	border-radius: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.stat-chips {
		flex-direction: column;
	}
}


/* Math Department*/
/* ══════════════════════════════════════════
       ROOT & RESET
    ══════════════════════════════════════════ */
/*:root {
	--bg: #f5f7fb;
	--card: #ffffff;
	--primary: #0f766e;
	--primary-lt: #e6f7f6;
	--accent: #0ea5a4;
	--accent-lt: #ccf2f1;
	--text: #1e293b;
	--muted: #64748b;
	--border: #e2e8f0;
	--sh: 0 4px 20px rgba(0,0,0,.05);
	--shm: 0 12px 36px rgba(15,118,110,.13);
	--r: 12px;
	--r-sm: 8px;
}
*/
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--bg);
	color: var(--text);
	font-size: 14px;
	line-height: 1.6;
}

/* ══════════════════════════════════════════
       TOP STRIP
    ══════════════════════════════════════════ */
.top-strip {
	background: var(--primary-dk);
	color: #a7f3d0;
	font-size: 11.5px;
	padding: 5px 0;
}

.tsi {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

	.tsi + .tsi::before {
		content: '|';
		margin: 0 10px;
		opacity: .3;
	}

.bop {
	background: #ef4444;
	color: #fff;
	font-size: 9.5px;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 700;
	animation: blink 2s infinite;
}

@keyframes blink {
	0%,100% {
		opacity: 1
	}

	50% {
		opacity: .65
	}
}

/* ══════════════════════════════════════════
       SITE 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 16px rgba(0,0,0,.06);
}

.logo-box {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dk));
	border-radius: var(--r-sm);
	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;
	white-space: nowrap;
}

	.nav-lnk:hover {
		color: var(--primary);
	}

	.nav-lnk.active {
		color: var(--primary);
		font-weight: 700;
	}

.btn-login {
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 8px 18px;
	border-radius: var(--r-sm);
	font-weight: 600;
	font-size: 13px;
	transition: all .2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: 'Inter', sans-serif;
}

	.btn-login: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: 6px;
	font-size: 12px;
	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: 9px;
	}

	.bc .cur {
		color: var(--primary);
		font-weight: 600;
	}

/* ══════════════════════════════════════════
       HERO BANNER
    ══════════════════════════════════════════ */
.hero-banner {
	background: linear-gradient(135deg, #052e26 0%, var(--primary-dk) 50%, var(--primary) 85%, var(--accent) 100%);
	padding: 44px 0 40px;
	position: relative;
	overflow: hidden;
}

	.hero-banner::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50v-6h-2v6h-6v2h6v6h2v-6h6v-2h-6zm0-40V4h-2v6h-6v2h6v6h2v-6h6V4h-6zM10 50v-6H8v6H2v2h6v6h2v-6h6v-2h-6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
}

.o1 {
	width: 280px;
	height: 280px;
	top: -80px;
	right: -40px;
	background: rgba(14,165,164,.18);
}

.o2 {
	width: 160px;
	height: 160px;
	bottom: -40px;
	left: 6%;
	background: rgba(255,255,255,.06);
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	color: #a7f3d0;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 13px;
	border-radius: 20px;
	margin-bottom: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
}

.hero-banner h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(24px, 4vw, 36px);
	color: #fff;
	line-height: 1.2;
	margin-bottom: 8px;
}

	.hero-banner h1 span {
		color: #6ee7e5;
	}

.hero-banner p {
	color: rgba(255,255,255,.68);
	font-size: 14.5px;
	max-width: 520px;
	margin-bottom: 24px;
}

/* Hero stat pills */
.hero-pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.hpill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(255,255,255,.14);
	color: rgba(255,255,255,.82);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
}

	.hpill i {
		color: #6ee7e5;
		font-size: 12px;
	}

/* ══════════════════════════════════════════
       FILTER BAR
    ══════════════════════════════════════════ */
.filter-bar {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding: 12px 0;
	position: sticky;
	top: 68px;
	z-index: 100;
	box-shadow: 0 2px 8px rgba(0,0,0,.03);
}

.filter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
}

.filter-tabs {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.ftab {
	background: #f8fafc;
	border: 1.5px solid var(--border);
	border-radius: 20px;
	padding: 6px 15px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--muted);
	cursor: pointer;
	transition: all .18s;
	font-family: 'Inter', sans-serif;
}

	.ftab:hover {
		border-color: var(--primary);
		color: var(--primary);
	}

	.ftab.active {
		background: var(--primary);
		color: #fff;
		border-color: var(--primary);
	}

.sort-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sort-lbl {
	font-size: 12px;
	color: var(--muted);
	font-weight: 500;
}

.sort-sel {
	font-size: 12.5px;
	font-weight: 600;
	border: 1.5px solid var(--border);
	border-radius: var(--r-sm);
	padding: 5px 10px;
	color: var(--text);
	background: #fff;
	outline: none;
	font-family: 'Inter', sans-serif;
	cursor: pointer;
	transition: border-color .18s;
}

	.sort-sel:focus {
		border-color: var(--primary);
	}

.search-wrap {
	display: flex;
	align-items: center;
	background: #f8fafc;
	border: 1.5px solid var(--border);
	border-radius: var(--r-sm);
	padding: 0 10px;
	gap: 6px;
	transition: border-color .18s;
}

	.search-wrap:focus-within {
		border-color: var(--primary);
		background: #fff;
	}

	.search-wrap i {
		color: var(--muted);
		font-size: 13px;
	}

	.search-wrap input {
		border: none;
		outline: none;
		background: transparent;
		font-size: 12.5px;
		font-family: 'Inter', sans-serif;
		color: var(--text);
		padding: 7px 0;
		width: 170px;
	}

		.search-wrap input::placeholder {
			color: #b0bac6;
		}

/* ══════════════════════════════════════════
       MAIN CONTENT AREA
    ══════════════════════════════════════════ */
.content-area {
	max-width: 1220px;
	margin: 0 auto;
	padding: 32px 20px 52px;
}

/* Section heading */
.section-head {
	text-align: center;
	margin-bottom: 32px;
}

.sh-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--primary-lt);
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 13px;
	border-radius: 20px;
	letter-spacing: .6px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.sh-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3vw, 30px);
	color: var(--text);
	margin-bottom: 6px;
}

.sh-sub {
	font-size: 14.5px;
	color: var(--muted);
	max-width: 500px;
	margin: 0 auto;
}

/* Result count */
.results-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	flex-wrap: wrap;
	gap: 10px;
}

.results-count {
	font-size: 13px;
	color: var(--muted);
}

	.results-count strong {
		color: var(--text);
	}

.view-toggle {
	display: flex;
	gap: 4px;
}

.vt-btn {
	width: 32px;
	height: 32px;
	border-radius: var(--r-sm);
	border: 1.5px solid var(--border);
	background: #fff;
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	transition: all .18s;
}

	.vt-btn.active, .vt-btn:hover {
		background: var(--primary-lt);
		color: var(--primary);
		border-color: var(--primary);
	}

/* ══════════════════════════════════════════
       COURSE CARDS — GRID
    ══════════════════════════════════════════ */
.courses-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* ── The Card ── */
.course-card {
	background: var(--card);
	border-radius: var(--r);
	border: 1.5px solid var(--border);
	box-shadow: var(--sh);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .24s cubic-bezier(.34,1.56,.64,1), box-shadow .24s ease, border-color .24s ease;
	position: relative;
}

	.course-card:hover {
		transform: translateY(-6px);
		box-shadow: var(--shm);
		border-color: var(--primary);
	}

	/* Top colour accent line */
	.course-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 .24s;
	}

	.course-card:hover::before {
		opacity: 1;
	}

/* Card Header area */
.cc-top {
	padding: 20px 20px 16px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	border-bottom: 1px solid var(--border);
}

.cc-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
	transition: all .22s;
}

.course-card:hover .cc-icon {
	background: var(--primary) !important;
	color: #fff !important;
}
/* Icon color variants */
.ci-teal {
	background: var(--primary-lt);
	color: var(--primary);
}

.ci-green {
	background: #dcfce7;
	color: #16a34a;
}

.ci-amber {
	background: #fef3c7;
	color: #d97706;
}

.ci-purple {
	background: #ede9fe;
	color: #7c3aed;
}

.ci-sky {
	background: #e0f2fe;
	color: #0284c7;
}

.ci-rose {
	background: #fee2e2;
	color: #dc2626;
}

.cc-title-wrap {
	flex: 1;
	min-width: 0;
}

.cc-badge {
	display: inline-block;
	background: var(--primary-lt);
	color: var(--primary);
	font-size: 9.5px;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 10px;
	letter-spacing: .4px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.cc-name {
	font-size: 15px;
	font-weight: 800;
	color: var(--text);
	line-height: 1.25;
	margin-bottom: 4px;
}

.cc-desc {
	font-size: 12px;
	color: var(--muted);
	line-height: 1.5;
}

/* Card Body — details */
.cc-body {
	padding: 16px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.detail-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid #f1f5f9;
	transition: background .15s;
}

	.detail-row:last-child {
		border-bottom: none;
	}

	.detail-row:hover {
		background: transparent;
	}

.dr-icon {
	width: 28px;
	height: 28px;
	border-radius: var(--r-sm);
	background: var(--bg);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	margin-top: 1px;
}

.dr-lbl {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .4px;
	margin-bottom: 1px;
}

.dr-val {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.4;
}

/* Specialisation pill */
.spec-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	color: #16a34a;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 20px;
	margin-top: 3px;
}

/* Card Footer */
.cc-foot {
	padding: 14px 20px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fafbfc;
	border-top: 1px solid var(--border);
	gap: 10px;
}

.cc-seats-info {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	color: var(--muted);
}

	.cc-seats-info strong {
		color: var(--primary);
		font-size: 16px;
	}

.btn-read {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 8px 18px;
	border-radius: var(--r-sm);
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none;
	transition: all .2s;
	font-family: 'Inter', sans-serif;
	white-space: nowrap;
}

	.btn-read:hover {
		background: var(--primary-dk);
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(15,118,110,.3);
		color: #fff;
	}

	.btn-read i {
		font-size: 12px;
		transition: transform .2s;
	}

	.btn-read:hover i {
		transform: translateX(3px);
	}

/* ══════════════════════════════════════════
       PROMO STRIP (BETWEEN CARDS)
    ══════════════════════════════════════════ */
.promo-strip {
	background: linear-gradient(135deg, var(--primary-dk), var(--primary), var(--accent));
	border-radius: var(--r);
	padding: 22px 28px;
	margin: 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

	.promo-strip::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.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

.ps-text h5 {
	font-family: 'Playfair Display', serif;
	font-size: 17px;
	color: #fff;
	margin-bottom: 3px;
}

.ps-text p {
	font-size: 12.5px;
	color: rgba(255,255,255,.7);
	margin: 0;
}

.btn-ps {
	background: #fff;
	color: var(--primary-dk);
	border: none;
	padding: 9px 20px;
	border-radius: var(--r-sm);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all .2s;
	flex-shrink: 0;
	font-family: 'Inter', sans-serif;
	position: relative;
	z-index: 1;
}

	.btn-ps:hover {
		background: #e6f7f6;
		transform: translateY(-1px);
		color: var(--primary-dk);
	}

/* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
.pg-footer {
	background: var(--primary-dk);
	color: rgba(255,255,255,.5);
	font-size: 12.5px;
	padding: 16px 0;
	text-align: center;
}

	.pg-footer a {
		color: rgba(255,255,255,.45);
		text-decoration: none;
		transition: color .18s;
	}

		.pg-footer a:hover {
			color: #fff;
		}

/* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
@@media (max-width: 991px) {
	.courses-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@@media (max-width: 640px) {
	.courses-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.content-area {
		padding: 20px 14px 36px;
	}

	.hero-banner {
		padding: 32px 0 28px;
	}
}

@@media (max-width: 575px) {
	.uname {
		font-size: 13px;
	}

	.logo-box {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.filter-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.search-wrap input {
		width: 120px;
	}
}


/* MathDept1*/



/* MAIN CONTAINER */
.container {
	max-width: 1100px;
}

/* TITLE */
h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}

p.text-muted {
	font-size: 13px;
	margin-bottom: 15px;
}

/* CARD */
.card {
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* CARD HEADER */
.card-header {
	font-size: 14px;
	padding: 8px 15px;
	background: #f5f9fa;
	color: #0f766e;
}

/* CARD BODY */
.card-body {
	padding: 12px 18px;
}

	/* LIST */
	.card-body ul {
		padding-left: 18px;
	}

		.card-body ul li {
			font-size: 13px;
			margin-bottom: 4px;
			color: #334155;
		}

/* REMOVE EXTRA SPACE */
.mb-4 {
	margin-bottom: 12px !important;
}

ul li {
	line-height: 1.4;
}

.hero-section {
	background: #155e63;
	padding: 70px 0;
}

/* CONTAINER */
.hero-container {
	max-width: 1250px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 70px;
	padding: 0 20px;
}

/* LEFT CONTENT */
.hero-content {
	flex: 1;
	max-width: 520px;
	color: #fff;
}

	.hero-content h1 {
		font-size: 44px;
		font-weight: 700;
		line-height: 1.25;
	}

		.hero-content h1 span {
			color: #f4a773;
		}

	.hero-content p {
		margin: 18px 0 28px;
		font-size: 16px;
		opacity: 0.9;
	}

/* BUTTONS */
.hero-cta-group {
	display: flex;
	gap: 16px;
	margin-bottom: 32px;
}

.btn-hero-primary {
	background: #fff;
	color: #155e63;
	padding: 11px 22px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
}

.btn-hero-outline {
	border: 1px solid #fff;
	color: #fff;
	padding: 11px 22px;
	border-radius: 8px;
	text-decoration: none;
}

/* STATS */
.stat-grid {
	display: flex;
	gap: 45px;
}

.stat-item .val {
	font-size: 24px;
	font-weight: 700;
}

.stat-item .lbl {
	font-size: 13px;
	opacity: 0.75;
}

/* RIGHT IMAGE */
.hero-image {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	transform: translateY(10px);
}

	.hero-image img {
		width: 100%;
		max-width: 560px;
		height: auto;
		border-radius: 16px;
		box-shadow: 0 20px 50px rgba(0,0,0,0.3);
	}

		/* HOVER EFFECT (optional but nice) */
		.hero-image img:hover {
			transform: translateY(-6px);
			transition: 0.3s ease;
		}

/* RESPONSIVE */
@media (max-width: 992px) {
	.hero-container {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-image {
		justify-content: center;
		transform: none;
	}

		.hero-image img {
			max-width: 380px;
		}

	.hero-cta-group,
	.stat-grid {
		justify-content: center;
	}
}


/*Accordian*/

/* ── Accordion wrapper ── */
.prog-accordion {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 20px;
}

/* ── Each accordion item ── */
.prog-item {
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 13px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,.05);
	transition: border-color .2s;
}

	.prog-item.open {
		border-color: #0f766e;
	}

/* ── Trigger button ── */
.prog-trigger {
	width: 100%;
	background: none;
	border: none;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: background .18s;
}

	.prog-trigger:hover {
		background: #f8fafc;
	}

.prog-item.open .prog-trigger {
	background: #f0fdfb;
}

.pt-icon {
	width: 44px;
	height: 44px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
	transition: all .2s;
}

	.pt-icon.ug {
		background: #e6f7f6;
		color: #0f766e;
	}

	.pt-icon.pg {
		background: #ede9fe;
		color: #7c3aed;
	}

.prog-item.open .pt-icon.ug {
	background: #0f766e;
	color: #fff;
}

.prog-item.open .pt-icon.pg {
	background: #7c3aed;
	color: #fff;
}

.pt-text {
	flex: 1;
	min-width: 0;
}

.pt-title {
	font-size: 15.5px;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.2;
	margin-bottom: 2px;
}

.pt-sub {
	font-size: 12px;
	color: #64748b;
}

.pt-count {
	background: #e6f7f6;
	color: #0f766e;
	font-size: 11px;
	font-weight: 800;
	padding: 3px 10px;
	border-radius: 20px;
	white-space: nowrap;
	flex-shrink: 0;
}

.prog-item.open .pt-count {
	background: #0f766e;
	color: #fff;
}

.pt-chevron {
	color: #94a3b8;
	font-size: 13px;
	flex-shrink: 0;
	transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}

.prog-item.open .pt-chevron {
	transform: rotate(180deg);
	color: #0f766e;
}

/* ── Collapsible body ── */
.prog-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
}

.prog-body-inner {
	padding: 4px 20px 20px;
	border-top: 1px solid #f1f5f9;
}

/* ── Dept grid ── */
.dept-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 10px;
	margin-top: 14px;
}

/* ── Dept card ── */
.dept-card {
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px;
	padding: 14px 16px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	transition: all .2s;
	text-decoration: none;
}

	.dept-card:hover {
		border-color: #0f766e;
		background: #f0fdfb;
		transform: translateY(-2px);
		box-shadow: 0 4px 14px rgba(15,118,110,.1);
	}

.dc-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0f766e;
	flex-shrink: 0;
	margin-top: 6px;
}

	.dc-dot.purple {
		background: #7c3aed;
	}

.dc-info {
	flex: 1;
	min-width: 0;
}

.dc-name {
	font-size: 13.5px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 2px;
	line-height: 1.3;
}

.dc-desc {
	font-size: 11.5px;
	color: #64748b;
	line-height: 1.5;
}

.dc-explore {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #0f766e;
	text-decoration: none;
	padding: 4px 10px;
	background: #e6f7f6;
	border-radius: 6px;
	border: 1px solid rgba(15,118,110,.18);
	transition: all .18s;
	font-family: inherit;
}

	.dc-explore:hover {
		background: #0f766e;
		color: #fff;
		transform: translateX(2px);
	}

	.dc-explore.purple {
		color: #7c3aed;
		background: #ede9fe;
		border-color: rgba(124,58,237,.18);
	}

		.dc-explore.purple:hover {
			background: #7c3aed;
			color: #fff;
		}

/* ── Body sub-label ── */
.prog-sub-label {
	font-size: 11px;
	font-weight: 800;
	color: #94a3b8;
	letter-spacing: .7px;
	text-transform: uppercase;
	margin-top: 14px;
	margin-bottom: 4px;
	padding-left: 2px;
}


══════════════════════════════════════
HERO SECTION — REDESIGNED
══════════════════════════════════════ -->
/* ── Hero wrapper ── */
.hero-v2 {
	background: #eaf2f1; /* was #f5f7fb — warmer teal tint */
	background-image: radial-gradient(circle at 10% 20%, rgba(15,118,110,.12) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(14,165,164,.10) 0%, transparent 50%);
}

/* Soft decorative circle behind content */
.hero-v2::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(15,118,110,.05) 0%, transparent 70%);
	top: -120px;
	left: -100px;
	pointer-events: none;
}

/* ── Left: Content ── */
.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #e6f7f6;
	border: 1px solid rgba(15,118,110,.2);
	color: #0f766e;
	font-size: 11px;
	font-weight: 800;
	padding: 5px 13px;
	border-radius: 20px;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.hero-v2 h1 {
	font-size: clamp(26px, 3.5vw, 40px);
	font-weight: 800;
	color: #1e293b;
	line-height: 1.22;
	margin-bottom: 14px;
	letter-spacing: -.4px;
}

	.hero-v2 h1 .hl {
		color: #0f766e;
		position: relative;
	}

		.hero-v2 h1 .hl::after {
			content: '';
			position: absolute;
			bottom: 2px;
			left: 0;
			right: 0;
			height: 3px;
			background: linear-gradient(90deg, #0f766e, #0ea5a4);
			border-radius: 2px;
			opacity: .35;
		}

.hero-desc {
	font-size: 15px;
	color: #64748b;
	line-height: 1.75;
	max-width: 480px;
	margin-bottom: 28px;
}

/* ── CTA Buttons ── */
.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.btn-hprimary {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #0f766e;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 11px 26px;
	border-radius: 9px;
	text-decoration: none;
	border: none;
	transition: all .2s;
}

	.btn-hprimary:hover {
		background: #0d5c55;
		transform: translateY(-2px);
		box-shadow: 0 6px 18px rgba(15,118,110,.28);
		color: #fff;
	}

.btn-houtline {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	color: #0f766e;
	font-size: 14px;
	font-weight: 700;
	padding: 11px 22px;
	border-radius: 9px;
	text-decoration: none;
	border: 1.5px solid #0f766e;
	transition: all .2s;
}

	.btn-houtline:hover {
		background: #e6f7f6;
		transform: translateY(-2px);
		color: #0f766e;
	}

/* ── Slideshow inside cards ── */
.slide-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.slide-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

	.slide-img.active {
		opacity: 1;
	}

/* ── Stats row ── */
.hero-stats {
	display: flex;
	gap: 0;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,.05);
	max-width: 420px;
}

.hstat {
	flex: 1;
	padding: 14px 16px;
	text-align: center;
	border-right: 1px solid #e2e8f0;
	transition: background .18s;
}

	.hstat:last-child {
		border-right: none;
	}

	.hstat:hover {
		background: #f0fdfb;
	}

.hstat-num {
	font-size: 22px;
	font-weight: 900;
	color: #0f766e;
	line-height: 1;
	margin-bottom: 3px;
}

.hstat-lbl {
	font-size: 11px;
	color: #94a3b8;
	font-weight: 600;
	letter-spacing: .2px;
}


/* ── 2. Fix second image — it was hidden behind/outside the container ── */
.hero-images {
	height: 460px; /* was 420px — give more room for both images */
	position: relative;
}
.himg-card {
	position: absolute;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,.12);
	border: 3px solid #fff;
	transition: transform .3s ease, box-shadow .3s ease;
}

	.himg-card:hover {
		box-shadow: 0 16px 48px rgba(0,0,0,.16);
		z-index: 10;
	}

	.himg-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

/* Card 1 — top, slightly left */
/* Image 1 — top left, slightly rotated */
.himg-1 {
	width: 82%;
	height: 245px;
	top: 0;
	left: 0;
	z-index: 2;
	transform: rotate(-1.5deg);
}


	.himg-1:hover {
		transform: rotate(0deg) translateY(-4px);
	}

/* Image 2 — THIS is what fixes it: push it down enough to be visible */
.himg-2 {
	width: 78%;
	height: 220px;
	bottom: 0; /* anchored to bottom of .hero-images */
	right: 0;
	z-index: 3;
	transform: rotate(1.5deg);
}

	.himg-2:hover {
		transform: rotate(0deg) translateY(-4px);
	}

/* Floating badge on image */
.himg-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(6px);
	border-radius: 8px;
	padding: 7px 12px;
	font-size: 11.5px;
	font-weight: 700;
	color: #0f766e;
	display: flex;
	align-items: center;
	gap: 5px;
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
	z-index: 5;
}

/* Decorative dot pattern */
.hero-dots {
	position: absolute;
	top: 20px;
	right: -10px;
	width: 90px;
	height: 90px;
	background-image: radial-gradient(circle, #0f766e 1.2px, transparent 1.2px);
	background-size: 12px 12px;
	opacity: .15;
	pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.hero-v2 {
		padding: 40px 0 32px;
	}

	.hero-images {
		height: 280px;
		margin-top: 32px;
	}

	.himg-1 {
		width: 75%;
		height: 175px;
	}

	.himg-2 {
		width: 72%;
		height: 160px;
	}

	.hero-stats {
		max-width: 100%;
	}
}


/* ── 1. Make background darker / richer ── */
.hero-v2 {
	background: #eaf2f1; /* was #f5f7fb — warmer teal tint */
	background-image: radial-gradient(circle at 10% 20%, rgba(15,118,110,.12) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(14,165,164,.10) 0%, transparent 50%);
}

/* ── 2. Fix second image — it was hidden behind/outside the container ── */
.hero-images {
	height: 460px; /* was 420px — give more room for both images */
	position: relative;
}

/* Image 1 — top left, slightly rotated */
.himg-1 {
	width: 82%;
	height: 245px;
	top: 0;
	left: 0;
	z-index: 2;
	transform: rotate(-1.5deg);
}

/* Image 2 — THIS is what fixes it: push it down enough to be visible */
.himg-2 {
	width: 78%;
	height: 220px;
	bottom: 0; /* anchored to bottom of .hero-images */
	right: 0;
	z-index: 3;
	transform: rotate(1.5deg);
}


/* ── 3. Slightly darken the stats card for contrast ── */
.hero-stats {
	background: #fff;
	border-color: #c8dedd; /* was #e2e8f0 — subtle teal border */
	box-shadow: 0 4px 18px rgba(15,118,110,.1);
}
/* ── 4. Darken the dot pattern so it's visible ── */
.hero-dots {
	opacity: .28; /* was .15 */
}

/* ── 5. Mobile fix for second image ── */
@media (max-width: 767px) {
	.hero-images {
		height: 320px;
	}

	.himg-1 {
		width: 76%;
		height: 180px;
	}

	.himg-2 {
		width: 73%;
		height: 165px;
		bottom: 0;
	}
}


/* logo */

.logo-circle {
	background: none;
	border: none;
	border-radius: 0;
	overflow: visible;
	display: flex;
	align-items: center;
}

	.logo-circle img {
		width: 80px;
		height: 80px;
		object-fit: contain;
		display: block;
	}


/* Mobile View University name*/
@media (max-width: 767px) {
	.logo-circle img {
		width: 42px !important;
		height: 42px !important;
	}

	.univ-name {
		font-size: 15px;
		font-weight: 800;
		letter-spacing: 0.5px;
	}

	.univ-sub {
		font-size: 10px;
	}
}



/* Instructions */


:root {
	--p: #107687;
	--pd: #0b5060;
	--pl: #e6f4f6;
	--pm: #1a9aaf;
	--bg: #f4f8f9;
	--txt: #1a2433;
	--mut: #6b7a8d;
	--bdr: #daeaed;
}

/* ── Page wrapper ── */
.adm-page {
	background: var(--bg);
	padding: 36px 0 52px;
}

/* ── Breadcrumb ── */
.adm-bc {
	font-size: 12.5px;
	color: var(--mut);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

	.adm-bc a {
		color: var(--mut);
		text-decoration: none;
		transition: color .18s;
	}

		.adm-bc a:hover {
			color: var(--p);
		}

	.adm-bc .sep {
		opacity: .4;
		font-size: 9px;
	}

	.adm-bc .cur {
		color: var(--p);
		font-weight: 700;
	}

/* ── Page title block ── */
.page-title-block {
	margin-bottom: 26px;
}

.pt-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--pl);
	color: var(--p);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 13px;
	border-radius: 20px;
	letter-spacing: .6px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.pt-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(22px, 3vw, 30px);
	color: var(--txt);
	margin-bottom: 5px;
	font-weight: 700;
}

.pt-sub {
	font-size: 14px;
	color: var(--mut);
}

/* ── Generic content card ── */
.ac {
	background: #fff;
	border: 1.5px solid var(--bdr);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 3px 16px rgba(16,118,135,.07);
	margin-bottom: 18px;
}

.ac-head {
	background: linear-gradient(90deg, var(--pl), #f0fbfc);
	border-bottom: 1px solid var(--bdr);
	padding: 13px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ach-ic {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--p);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
}

.ac-head h6 {
	font-size: 14px;
	font-weight: 800;
	color: var(--pd);
	margin: 0;
}

.ac-head p {
	font-size: 11.5px;
	color: var(--mut);
	margin: 0;
}

.ac-body {
	padding: 20px 22px;
}

/* ── Instruction list ── */
/*.instr-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

	.instr-list li {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		padding: 11px 14px;
		background: #f8fafc;
		border: 1px solid var(--bdr);
		border-radius: 9px;
		font-size: 13.5px;
		color: var(--txt);
		transition: border-color .18s, background .18s;
	}

		.instr-list li:hover {
			border-color: var(--p);
			background: var(--pl);
		}

.instr-ic {
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: var(--pl);
	color: var(--p);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	margin-top: 1px;
	transition: background .18s, color .18s;
}

.instr-list li:hover .instr-ic {
	background: var(--p);
	color: #fff;
}*/

/* ── Documents grid ── */
/*.doc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
}

.doc-item {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #f8fafc;
	border: 1.5px solid var(--bdr);
	border-radius: 9px;
	padding: 11px 13px;
	font-size: 13px;
	font-weight: 600;
	color: var(--txt);
	transition: all .2s;
}

	.doc-item:hover {
		border-color: var(--p);
		background: var(--pl);
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(16,118,135,.1);
	}

.doc-ic {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--pl);
	color: var(--p);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
	transition: background .2s, color .2s;
}

.doc-item:hover .doc-ic {
	background: var(--p);
	color: #fff;
}

.doc-req {
	margin-left: auto;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 10px;
	white-space: nowrap;
	flex-shrink: 0;
}

.req-yes {
	background: #dcfce7;
	color: #16a34a;
}

.req-if {
	background: #fff8e6;
	color: #b45309;
}*/

/* ── Timeline ── */
/*.timeline {
	position: relative;
	padding-left: 28px;
}

	.timeline::before {
		content: '';
		position: absolute;
		top: 8px;
		left: 12px;
		bottom: 8px;
		width: 2px;
		background: linear-gradient(to bottom, var(--p), var(--pm), #e2e8f0);
		border-radius: 2px;
	}

.tl-item {
	position: relative;
	margin-bottom: 18px;
	padding-left: 28px;
}

	.tl-item:last-child {
		margin-bottom: 0;
	}

.tl-dot {
	position: absolute;
	left: -16px;
	top: 8px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--p);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 900;
	border: 2.5px solid #fff;
	box-shadow: 0 0 0 2px var(--p);
	z-index: 1;
	transition: transform .2s;
}

.tl-item:hover .tl-dot {
	transform: scale(1.2);
}

.tl-card {
	background: #f8fafc;
	border: 1.5px solid var(--bdr);
	border-radius: 10px;
	padding: 12px 16px;
	transition: all .2s;
}

.tl-item:hover .tl-card {
	border-color: var(--p);
	background: var(--pl);
	box-shadow: 0 4px 12px rgba(16,118,135,.1);
}

.tl-title {
	font-size: 13.5px;
	font-weight: 800;
	color: var(--txt);
	margin-bottom: 2px;
}

.tl-sub {
	font-size: 12px;
	color: var(--mut);
}

.tl-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10.5px;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 10px;
	margin-top: 5px;
}

.tl-b-done {
	background: #dcfce7;
	color: #16a34a;
}

.tl-b-active {
	background: var(--pl);
	color: var(--p);
}

.tl-b-pend {
	background: #f1f5f9;
	color: var(--mut);
}*/

/* ══════════════════════════════
     RIGHT SIDEBAR
  ══════════════════════════════ */

/* Sticky wrapper */
/*.sidebar-sticky {
	position: sticky;
	top: 88px;
}*/

/* Apply Now card */
/*.apply-card {
	background: linear-gradient(135deg, #062b36 0%, var(--pd) 55%, var(--p) 100%);
	border-radius: 14px;
	padding: 24px 20px;
	margin-bottom: 16px;
	box-shadow: 0 8px 28px rgba(11,80,96,.22);
	text-align: center;
	position: relative;
	overflow: hidden;
}

	.apply-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");
	}

.apply-card-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #6ee7e5;
	margin: 0 auto 14px;
	border: 2px solid rgba(255,255,255,.2);
}

.apply-card h5 {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 5px;
	font-family: 'Playfair Display', serif;
	position: relative;
	z-index: 1;
}

.apply-card p {
	font-size: 12.5px;
	color: rgba(255,255,255,.65);
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

.btn-apply-now {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: #fff;
	color: var(--pd);
	font-size: 14px;
	font-weight: 800;
	padding: 11px 20px;
	border-radius: 9px;
	text-decoration: none;
	transition: all .2s;
	position: relative;
	z-index: 1;
}

	.btn-apply-now:hover {
		background: var(--pl);
		transform: translateY(-2px);
		box-shadow: 0 6px 18px rgba(0,0,0,.2);
		color: var(--pd);
	}

.apply-deadline {
	margin-top: 12px;
	font-size: 11.5px;
	color: rgba(255,255,255,.5);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	position: relative;
	z-index: 1;
}*/

/* Sidebar generic card */
/*.sb-card {
	background: #fff;
	border: 1.5px solid var(--bdr);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 3px 16px rgba(16,118,135,.07);
	margin-bottom: 16px;
}

.sbc-head {
	padding: 12px 18px;
	border-bottom: 1px solid var(--bdr);
	display: flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(90deg, var(--pl), #f0fbfc);
}

.sbch-ic {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	background: var(--p);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
}

.sbc-head h6 {
	font-size: 13px;
	font-weight: 800;
	color: var(--pd);
	margin: 0;
}

.sbc-body {
	padding: 14px 16px;
}*/

/* Explore Programs button */
/*.btn-explore {
	display: flex;
	align-items: center;
	gap: 9px;
	background: #f8fafc;
	border: 1.5px solid var(--bdr);
	border-radius: 9px;
	padding: 11px 14px;
	text-decoration: none;
	transition: all .2s;
	color: var(--txt);
}

	.btn-explore:hover {
		border-color: var(--p);
		background: var(--pl);
		transform: translateX(3px);
		color: var(--p);
	}

.be-icon {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--pl);
	color: var(--p);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
	transition: background .2s, color .2s;
}

.btn-explore:hover .be-icon {
	background: var(--p);
	color: #fff;
}

.be-title {
	font-size: 13px;
	font-weight: 700;
}

.be-sub {
	font-size: 11px;
	color: var(--mut);
}*/

/* Important links */
/*.imp-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 9px;
	text-decoration: none;
	color: var(--txt);
	border: 1px solid transparent;
	transition: all .18s;
	font-size: 13px;
	font-weight: 600;
}

	.imp-link:hover {
		background: var(--pl);
		border-color: var(--bdr);
		color: var(--p);
		transform: translateX(3px);
	}

.il-ic {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
	transition: background .18s, color .18s;
}

.imp-link:hover .il-ic {
	color: var(--p) !important;
}

.il-arr {
	margin-left: auto;
	color: var(--mut);
	font-size: 12px;
	opacity: 0;
	transition: opacity .18s, transform .18s;
}

.imp-link:hover .il-arr {
	opacity: 1;
	transform: translateX(3px);
}*/

/* Contact mini card */
/*.contact-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px solid #f1f5f9;
}

	.contact-row:last-child {
		border-bottom: none;
	}

.cr-ic {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--pl);
	color: var(--p);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
}

.cr-lbl {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--mut);
	letter-spacing: .3px;
}

.cr-val {
	font-size: 13px;
	font-weight: 600;
	color: var(--txt);
}*/

/* ── Responsive ── */
/*@media (max-width: 767px) {
	.sidebar-sticky {
		position: static;
		margin-top: 28px;
	}

	.doc-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.doc-grid {
		grid-template-columns: 1fr;
	}
}*/



/* Apply to all dropdowns */
select,
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #fff;

    /* Custom arrow */
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;

    padding-right: 35px; /* space for arrow */
}


/* ── Passport Photo Upload Box ── */
.photo-upload-box {
    width: 100%;
    height: 148px;
    border: 2px dashed var(--border, #e2e8f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fafcfd;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, background .2s;
}
.photo-upload-box:hover {
    border-color: var(--primary, #107687);
    background: var(--primary-lt, #e6f4f6);
}
.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--muted, #6b7a8d);
    text-align: center;
    pointer-events: none;
}
.photo-placeholder i  { font-size: 26px; color: var(--primary, #107687); }
.photo-placeholder span { font-size: 12.5px; font-weight: 600; }
.photo-placeholder small { font-size: 11px; }

.photo-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pencil overlay on hover when photo is shown */
.photo-upload-overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,118,135,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
    color: #fff;
    font-size: 20px;
}
.photo-upload-box:hover .photo-upload-overlay { opacity: 1; }


/* Admission Instruction Form*/

:root {
	--p: #107687;
	--pd: #0b5060;
	--pm: #1a9aaf;
	--pl: #e6f4f6;
	--p2: #d0ecf0;
	--bg: #f4f8f9;
	--txt: #1a2433;
	--mut: #6b7a8d;
	--bdr: #daeaed;
}

/* ── Page wrapper ── */
.info-page {
	background: var(--bg);
	padding: 28px 0 36px;
}

/* ── Breadcrumb ── */
.info-bc {
	font-size: 12px;
	color: var(--mut);
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

	.info-bc a {
		color: var(--mut);
		text-decoration: none;
		transition: color .18s;
	}

		.info-bc a:hover {
			color: var(--p);
		}

	.info-bc .sep {
		opacity: .4;
		font-size: 9px;
	}

	.info-bc .cur {
		color: var(--p);
		font-weight: 700;
	}

/* ── Page title ── */
.info-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.itr-bar {
	width: 4px;
	height: 24px;
	background: var(--p);
	border-radius: 2px;
	flex-shrink: 0;
}

.itr-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--pd);
	line-height: 1.2;
}

.itr-sub {
	font-size: 12px;
	color: var(--mut);
	margin-top: 1px;
}

/* ── Generic card ── */
.ic {
	background: #fff;
	border: 1.5px solid var(--bdr);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(16,118,135,.07);
	margin-bottom: 12px;
}

.ic-h {
	background: linear-gradient(90deg, var(--pl), #f0fbfc);
	border-bottom: 1px solid var(--bdr);
	padding: 9px 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ich-ic {
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: var(--p);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}

.ic-h h6 {
	font-size: 12.5px;
	font-weight: 800;
	color: var(--pd);
	margin: 0;
}

.ic-h p {
	font-size: 11px;
	color: var(--mut);
	margin: 0;
}

.ic-b {
	padding: 12px 14px;
}

/* ── Instructions list ── */
.instr-ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

	.instr-ul li {
		display: flex;
		align-items: flex-start;
		gap: 8px;
		font-size: 12.5px;
		color: var(--txt);
		line-height: 1.5;
		padding: 7px 10px;
		background: #f8fafc;
		border: 1px solid var(--bdr);
		border-radius: 8px;
		transition: border-color .18s, background .18s;
	}

		.instr-ul li:hover {
			border-color: var(--p);
			background: var(--pl);
		}

.il-ic {
	width: 20px;
	height: 20px;
	border-radius: 5px;
	background: var(--pl);
	color: var(--p);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	flex-shrink: 0;
	margin-top: 1px;
	transition: background .18s, color .18s;
}

.instr-ul li:hover .il-ic {
	background: var(--p);
	color: #fff;
}

/* ── Doc chips ── */
.doc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.dc {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #f8fafc;
	border: 1px solid var(--bdr);
	border-radius: 20px;
	padding: 4px 10px;
	font-size: 11.5px;
	font-weight: 600;
	color: var(--txt);
	transition: all .18s;
}

	.dc:hover {
		border-color: var(--p);
		background: var(--pl);
		color: var(--p);
	}

	.dc i {
		font-size: 11px;
		color: var(--p);
	}

	.dc.req {
		border-color: var(--p);
	}

	.dc.opt {
		opacity: .75;
	}

.dc-badge {
	font-size: 9.5px;
	font-weight: 700;
	padding: 1px 6px;
	border-radius: 8px;
	background: #fef3c7;
	color: #b45309;
}

/* ── Steps ── */
.steps-row {
	display: flex;
	align-items: flex-start;
	gap: 0;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-bottom: 2px;
}

.step-col {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
}

.step-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

.step-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--p);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 900;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(16,118,135,.25);
}

.step-lbl {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--txt);
	text-align: center;
	line-height: 1.3;
}

.step-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg,var(--p),var(--pl));
	border-radius: 1px;
	margin-top: -14px;
	min-width: 10px;
}

.step-col:last-child .step-line {
	display: none;
}

/* ══════════════════════════════
       RIGHT SIDEBAR
    ══════════════════════════════ */
.sidebar-sticky {
	position: sticky;
	top: 80px;
}

/* Apply card */
.apply-card {
	background: linear-gradient(135deg, #062b36 0%, var(--pd) 55%, var(--p) 100%);
	border-radius: 13px;
	padding: 18px 16px;
	text-align: center;
	box-shadow: 0 6px 22px rgba(11,80,96,.22);
	position: relative;
	overflow: hidden;
	margin-bottom: 12px;
}

	.apply-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	}

.ac-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,.14);
	border: 1.5px solid rgba(255,255,255,.22);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	color: #6ee7e5;
	margin: 0 auto 10px;
	position: relative;
	z-index: 1;
}

.apply-card h5 {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 3px;
	position: relative;
	z-index: 1;
}

.apply-card p {
	font-size: 11.5px;
	color: rgba(255,255,255,.62);
	margin-bottom: 14px;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.btn-apply {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: #fff;
	color: var(--pd);
	font-size: 13px;
	font-weight: 800;
	padding: 9px 18px;
	border-radius: 8px;
	text-decoration: none;
	transition: all .2s;
	position: relative;
	z-index: 1;
}

	.btn-apply:hover {
		background: var(--pl);
		color: var(--pd);
		transform: translateY(-1px);
		box-shadow: 0 5px 14px rgba(0,0,0,.2);
	}

.ac-deadline {
	font-size: 11px;
	color: rgba(255,255,255,.45);
	margin-top: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
	z-index: 1;
}

/* Sidebar generic small card */
.sb-card {
	background: #fff;
	border: 1.5px solid var(--bdr);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(16,118,135,.06);
	margin-bottom: 12px;
}

.sbc-h {
	background: linear-gradient(90deg, var(--pl), #f0fbfc);
	border-bottom: 1px solid var(--bdr);
	padding: 9px 13px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.sbc-hi {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	background: var(--p);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	flex-shrink: 0;
}

.sbc-h h6 {
	font-size: 12px;
	font-weight: 800;
	color: var(--pd);
	margin: 0;
}

.sbc-b {
	padding: 10px 12px;
}

/* Program links */
.prog-link {
	display: flex;
	align-items: center;
	gap: 9px;
	background: #f8fafc;
	border: 1px solid var(--bdr);
	border-radius: 8px;
	padding: 8px 10px;
	text-decoration: none;
	color: var(--txt);
	font-size: 12.5px;
	font-weight: 600;
	transition: all .18s;
	margin-bottom: 7px;
}

	.prog-link:last-child {
		margin-bottom: 0;
	}

	.prog-link:hover {
		border-color: var(--p);
		background: var(--pl);
		color: var(--p);
		transform: translateX(2px);
	}

.pl-ic {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	transition: all .18s;
}

.prog-link:hover .pl-ic {
	background: var(--p) !important;
	color: #fff !important;
}

.pl-sub {
	font-size: 10.5px;
	color: var(--mut);
}

.pl-arr {
	margin-left: auto;
	font-size: 11px;
	color: var(--mut);
	opacity: 0;
	transition: opacity .18s, transform .18s;
}

.prog-link:hover .pl-arr {
	opacity: 1;
	transform: translateX(2px);
}

/* Quick links */
.ql-item {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 7px 8px;
	border-radius: 7px;
	text-decoration: none;
	color: var(--txt);
	font-size: 12px;
	font-weight: 600;
	transition: all .18s;
}

	.ql-item:hover {
		background: var(--pl);
		color: var(--p);
	}

	.ql-item i {
		font-size: 13px;
		flex-shrink: 0;
	}

.ql-arr {
	margin-left: auto;
	font-size: 10px;
	color: var(--mut);
	opacity: 0;
	transition: opacity .18s;
}

.ql-item:hover .ql-arr {
	opacity: 1;
}

/* Contact strip */
.contact-strip {
	background: var(--pl);
	border: 1px solid var(--bdr);
	border-radius: 10px;
	padding: 11px 13px;
}

.cs-title {
	font-size: 11.5px;
	font-weight: 800;
	color: var(--pd);
	margin-bottom: 7px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.cs-row {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--txt);
	margin-bottom: 4px;
}

	.cs-row:last-child {
		margin-bottom: 0;
	}

	.cs-row i {
		color: var(--p);
		font-size: 11px;
		flex-shrink: 0;
	}

	.cs-row a {
		color: var(--p);
		text-decoration: none;
		font-weight: 600;
	}

		.cs-row a:hover {
			text-decoration: underline;
		}

/* Notice box */
.notice-box {
	background: #fff8e6;
	border: 1px solid rgba(180,83,9,.18);
	border-radius: 9px;
	padding: 10px 12px;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	color: #78350f;
	line-height: 1.6;
	margin-top: 2px;
}

	.notice-box i {
		color: #d97706;
		flex-shrink: 0;
		margin-top: 1px;
	}

/* ── Responsive ── */
@@media (max-width: 991px) {
	.sidebar-sticky {
		position: static;
		margin-top: 20px;
	}
}

@@media (max-width: 575px) {
	.steps-row {
		gap: 0;
	}

	.step-lbl {
		font-size: 9.5px;
	}
}


.stream-section {
	background: #f4f8f9;
	/*padding: 70px 0 80px;*/
}

.stream-section .section-eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #107687;
	font-weight: 700;
	margin-bottom: 10px;
}

	.stream-section .section-eyebrow1 {
		font-size: 0.92rem;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #107687;
		font-weight: 700;
		margin-bottom: 10px;
	}

.stream-section .section-title {
	font-family: 'Georgia', 'Times New Roman', serif;
	font-size: 2.6rem;
	font-weight: 700;
	color: #0d1b2a;
	margin-bottom: 10px;
	line-height: 1.15;
}

	.stream-section .section-title span {
		color: #107687;
	}

.stream-section .section-subtitle {
	color: #5a6a72;
	font-size: 1.02rem;
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Card */
.stream-card {
	position: relative;
	height: 400px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 6px 28px rgba(16, 118, 135, 0.13);
	transition: box-shadow 0.35s ease, transform 0.35s ease;
}

	.stream-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 18px 48px rgba(16, 118, 135, 0.22);
	}

/* Background image — visible default, zoom on hover only */
.stream-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.55s ease;
	filter: brightness(0.88) blur(1px); /* always slightly soft */
	transform: scale(1);
	will-change: transform, filter;
}


.stream-card:hover .stream-card__bg {
	transform: scale(1.07);
	filter: brightness(0.88) blur(2px); /* deeper blur on hover */
}

/* Gradient overlay — lighter so image shows through */
.stream-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient( to top, rgba(5, 20, 28, 0.70) 0%, /* ← bottom: enough for text readability */
	rgba(5, 20, 28, 0.20) 50%, /* ← mid: mostly transparent */
	rgba(5, 20, 28, 0.00) 100% /* ← top: fully transparent, image visible */
	);
	transition: none; /* ← no change on hover */
	z-index: 1;
}

.stream-card:hover .stream-card__overlay {
	background: linear-gradient( to top, rgba(5, 20, 28, 0.70) 0%, /* ← exactly same as default */
	rgba(5, 20, 28, 0.20) 50%, rgba(5, 20, 28, 0.00) 100% );
}

/* Teal top accent line */
.stream-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #107687;
	z-index: 3;
	transform: scaleX(0);
	transition: transform 0.35s ease;
	transform-origin: left;
}

.stream-card:hover::before {
	transform: scaleX(1);
}

/* Content */
.stream-card__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px 24px 26px;
	background-color: rgb(54 71 74 / 57%);
}

/* Badge */
.stream-badge {
	display: inline-block;
	background: rgba(16, 118, 135, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(6px);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 30px;
	border: 1px solid rgba(255,255,255,0.18);
	width: fit-content;
}

.stream-card__bottom {
}

.stream-card__title {
	font-family: 'Georgia', 'Times New Roman', serif;
	font-size: 1.45rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 8px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.stream-card__desc {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.78);
	line-height: 1.55;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Program pills */
.stream-programs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 6px;
}

	.stream-programs span {
		font-size: 0.7rem;
		font-weight: 700;
		letter-spacing: 0.06em;
		color: rgba(255,255,255,0.75);
		background: rgba(255,255,255,0.1);
		border: 1px solid rgba(255,255,255,0.2);
		padding: 3px 10px;
		border-radius: 20px;
		backdrop-filter: blur(4px);
	}

/* Explore link */
.stream-explore {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 2px solid #107687;
	width: fit-content;
	transition: gap 0.25s ease, color 0.25s ease;
}

	.stream-explore:hover {
		color: #4ecde0;
		gap: 12px;
		text-decoration: none;
	}

	.stream-explore svg {
		transition: transform 0.25s ease;
	}

	.stream-explore:hover svg {
		transform: translateX(3px);
	}

.stream-row {
	--bs-gutter-x: 1.2rem;
	--bs-gutter-y: 1.2rem;
}

@@media (max-width: 767px) {
	.stream-card {
		height: 340px;
	}

	.stream-section .section-title {
		font-size: 1.9rem;
	}
}




/*  Testimonials */

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #fff;
	color: #111;
}

/* ── SECTION ── */
.testimonials-section {
	/*padding: 60px 20px 80px;*/
	background: #fff;
}

/* ── HEADING ── */
.section-heading {
	text-align: center;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 700;
	margin-bottom: 48px;
	color: #111;
}

	.section-heading span {
		color: #c0392b;
	}

/* ── SWIPER ── */
.swiper {
	padding: 8px 4px 52px !important;
}

.swiper-slide {
	height: auto;
}

.swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: #ccc;
	opacity: 1;
	transition: all .3s;
}

.swiper-pagination-bullet-active {
	background: #c0392b;
	width: 28px;
	border-radius: 5px;
}

.swiper-button-prev,
.swiper-button-next {
	width: 42px;
	height: 42px;
	background: #fff;
	border: 1.5px solid #ddd;
	border-radius: 50%;
	color: #333 !important;
	box-shadow: 0 2px 10px rgba(0,0,0,.1);
	transition: all .2s;
	top: 40%;
}

	.swiper-button-prev::after,
	.swiper-button-next::after {
		font-size: 13px !important;
		font-weight: 800;
	}

	.swiper-button-prev:hover,
	.swiper-button-next:hover {
		background: #c0392b;
		color: #fff !important;
		border-color: #c0392b;
	}

/* ── CARD ── */
.t-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: box-shadow .25s, transform .25s;
}

	.t-card:hover {
		box-shadow: 0 8px 32px rgba(0,0,0,.13);
		transform: translateY(-3px);
	}

/* Thumbnail */
.t-thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: #000;
	flex-shrink: 0;
}

	.t-thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform .4s ease;
	}

.t-card:hover .t-thumb img {
	transform: scale(1.04);
}

/* Play button – white circle centered */
.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	background: rgba(255,255,255,0.88);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s, transform .2s;
	pointer-events: none;
}

	.play-btn svg {
		width: 22px;
		height: 22px;
		fill: #222;
		margin-left: 4px;
	}

.t-card:hover .play-btn {
	background: #fff;
	transform: translate(-50%, -50%) scale(1.1);
}

/* Card body */
.t-body {
	padding: 22px 22px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.t-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 3px;
}

.t-course {
	font-size: .82rem;
	color: #666;
	font-weight: 400;
	margin-bottom: 14px;
}

.t-text {
	font-size: .88rem;
	color: #444;
	line-height: 1.65;
	font-weight: 400;
}

/* ── MODAL ── */
#videoModal .modal-dialog {
	max-width: min(760px, 94vw);
	margin: auto;
}

#videoModal .modal-content {
	border-radius: 6px;
	overflow: visible;
	border: none;
	background: #000;
	box-shadow: 0 20px 60px rgba(0,0,0,.55);
	position: relative;
}

/* X close button top-right, exactly like Bennett */
.modal-close-btn {
	position: absolute;
	top: -15px;
	right: -15px;
	z-index: 10;
	width: 34px;
	height: 34px;
	background: #fff;
	border: none;
	border-radius: 50%;
	font-size: 1rem;
	font-weight: 800;
	color: #222;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0,0,0,.3);
	transition: background .15s;
	line-height: 1;
}

	.modal-close-btn:hover {
		background: #f0f0f0;
	}

/* Video embed */
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	background: #000;
	border-radius: 6px;
	overflow: hidden;
}

	.video-wrapper iframe {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border: none;
		display: block;
	}

/* Modal zoom animation */
#videoModal .modal-dialog {
	transform: scale(.9);
	transition: transform .28s cubic-bezier(.34,1.4,.64,1);
}

#videoModal.show .modal-dialog {
	transform: scale(1);
}

.modal-backdrop {
	--bs-backdrop-opacity: .72;
}

@@media (max-width: 575px) {
	.swiper-button-prev, .swiper-button-next {
		display: none;
	}
}

/* index page hero section */

/* ════════════════════════════════════════════
       YOUR EXACT EXISTING CSS — UNTOUCHED
    ════════════════════════════════════════════ */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'DM Sans', sans-serif;
}

.rtmnu-hero {
	position: relative;
	width: 100%;
	height: 92vh;
	min-height: 580px;
	overflow: hidden;
}

/* ── Slides ── */
.rh-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 1.2s ease, transform 7s ease;
	will-change: opacity, transform;
}

	.rh-slide.rh-active {
		opacity: 1;
		transform: scale(1);
	}

.rh-slide-1 {
	background-image: url('@Url.Content("~/assets/img/rtmnu/univ3.jpeg")');
}

.rh-slide-2 {
	background-image: url('@Url.Content("~/assets/img/rtmnu/univ5.jpeg")');
}

.rh-slide-3 {
	background-image: url('@Url.Content("~/assets/img/rtmnu/univ1.jpeg")');
}

.rh-slide-4 {
	background-image: url('@Url.Content("~/assets/img/rtmnu/univ2.jpeg")');
}

/* ── Overlay — teal-tinted dark, matches site palette ── */
.rh-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient( 135deg, rgba(10,60,56,0.72) 0%, rgba(10,60,56,0.48) 50%, rgba(10,60,56,0.68) 100% );
}

/* Badge */
.rh-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 6px 16px;
	border-radius: 40px;
	color: #fff;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
	width: fit-content;
}

.rh-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	animation: rhBlink 2s infinite;
}

@@keyframes rhBlink {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: .4;
		transform: scale(1.5);
	}
}

/* Heading */
.rh-title {
	font-size: clamp(32px, 4.8vw, 60px);
	font-weight: 800;
	color: #fff;
	line-height: 1.12;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

.rh-title-accent {
	color: #5eead4;
	text-decoration: underline;
	text-decoration-color: rgba(94,234,212,0.5);
	text-underline-offset: 6px;
}

/* Legacy title — Slide 4 special style */
.rh-title-legacy {
	font-family: 'Playfair Display', serif;
	font-weight: 900;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}

	.rh-title-legacy .years {
		display: block;
		font-size: clamp(4rem, 9vw, 7.5rem);
		color: #5eead4;
		line-height: 1;
		letter-spacing: -0.04em;
	}

	.rh-title-legacy .legacy-sub {
		display: block;
		font-size: clamp(1.3rem, 2.8vw, 2rem);
		font-style: italic;
		color: rgba(255,255,255,.9);
		margin-top: 6px;
	}

/* Subtext */
.rh-sub {
	font-size: clamp(14px, 1.4vw, 16.5px);
	color: rgba(255,255,255,0.82);
	line-height: 1.7;
	margin-bottom: 32px;
	font-weight: 400;
}

/* Buttons */
.rh-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.rh-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0f766e;
	color: #fff;
	padding: 12px 26px;
	border-radius: 8px;
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #0f766e;
	transition: background .2s, transform .15s, box-shadow .2s;
	box-shadow: 0 4px 18px rgba(15,118,110,.45);
}

	.rh-btn-primary:hover {
		background: #0d6560;
		transform: translateY(-2px);
		box-shadow: 0 8px 28px rgba(15,118,110,.55);
	}

.rh-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #fff;
	padding: 12px 26px;
	border-radius: 8px;
	font-size: 14.5px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: background .2s, border-color .2s, transform .15s;
}

	.rh-btn-outline:hover {
		background: rgba(255,255,255,0.12);
		border-color: rgba(255,255,255,0.85);
		transform: translateY(-2px);
	}

/* Stats */
.rh-stats {
	display: flex;
	align-items: center;
	gap: 0;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.22);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 18px 28px;
	width: fit-content;
}

.rh-stat {
	text-align: center;
	padding: 0 24px;
}

.rh-stat-num {
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.rh-stat-lbl {
	font-size: 11px;
	color: rgba(255,255,255,0.72);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 4px;
	font-weight: 500;
}

.rh-stat-divider {
	width: 1px;
	height: 40px;
	background: rgba(255,255,255,0.25);
	flex-shrink: 0;
}

/* Legacy pills (Slide 4 replacement for stats) */
.rh-legacy-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rh-legacy-pill {
	padding: 7px 16px;
	border: 1px solid rgba(94,234,212,0.45);
	border-radius: 40px;
	color: #5eead4;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .06em;
	backdrop-filter: blur(6px);
	background: rgba(94,234,212,0.08);
}

/* Arrows */
.rh-arrow {
	position: absolute;
	top: 50%;
	z-index: 20;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.28);
	color: #fff;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	cursor: pointer;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s, transform .2s;
}

	.rh-arrow:hover {
		background: rgba(15,118,110,0.55);
		transform: translateY(-50%) scale(1.1);
	}

.rh-arrow-prev {
	left: 20px;
}

.rh-arrow-next {
	right: 20px;
}

/* Dots */
.rh-dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	gap: 10px;
	align-items: center;
}

.rh-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.35);
	border: none;
	cursor: pointer;
	transition: background .3s, transform .3s, width .3s;
	padding: 0;
}

	.rh-dot.rh-dot-active {
		background: #5eead4;
		transform: scale(1.5);
	}

/* Progress bar */
.rh-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 20;
	background: rgba(255,255,255,0.1);
}

#rhBar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #0f766e, #5eead4);
	transition: width linear;
}

/* ════════════════════════════════════════════
       NEW: MULTI-PANEL SYSTEM
       (no changes to above CSS — additive only)
    ════════════════════════════════════════════ */

/* Container that holds all 4 content panels */
.rh-panels {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
}

/* Each panel = one slide's content */
.rh-panel {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 60px 7%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 1s ease;
}

	.rh-panel.rh-panel-active {
		opacity: 1;
		pointer-events: auto;
	}

	/* LEFT alignment (Slides 1 & 3) */
	.rh-panel.align-left {
		justify-content: flex-start;
	}

		.rh-panel.align-left .rh-content-box {
			text-align: left;
		}

	/* RIGHT alignment (Slides 2 & 4) */
	.rh-panel.align-right {
		justify-content: flex-end;
	}

		.rh-panel.align-right .rh-content-box {
			text-align: right;
		}

		.rh-panel.align-right .rh-badge {
			margin-left: auto;
		}

		.rh-panel.align-right .rh-actions {
			justify-content: flex-end;
		}

		.rh-panel.align-right .rh-stats,
		.rh-panel.align-right .rh-legacy-pills {
			margin-left: auto;
		}

		.rh-panel.align-right .rh-sub {
			margin-left: auto;
		}

/* The content box (same max-width as original .rh-content) */
.rh-content-box {
	max-width: 680px;
	width: 100%;
}

/* Staggered animate-in for content children */
.rh-panel .rh-badge,
.rh-panel .rh-title,
.rh-panel .rh-title-legacy,
.rh-panel .rh-sub,
.rh-panel .rh-actions,
.rh-panel .rh-stats,
.rh-panel .rh-legacy-pills {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .55s ease, transform .55s ease;
}

.rh-panel.rh-panel-active .rh-badge {
	opacity: 1;
	transform: none;
	transition-delay: .15s;
}

.rh-panel.rh-panel-active .rh-title,
.rh-panel.rh-panel-active .rh-title-legacy {
	opacity: 1;
	transform: none;
	transition-delay: .28s;
}

.rh-panel.rh-panel-active .rh-sub {
	opacity: 1;
	transform: none;
	transition-delay: .40s;
}

.rh-panel.rh-panel-active .rh-actions {
	opacity: 1;
	transform: none;
	transition-delay: .52s;
}

.rh-panel.rh-panel-active .rh-stats,
.rh-panel.rh-panel-active .rh-legacy-pills {
	opacity: 1;
	transform: none;
	transition-delay: .64s;
}

/* ── RIGHT-side overlay tweak (darker on right for readability) ── */
.rtmnu-hero.slide-right .rh-overlay {
	background: linear-gradient( 225deg, rgba(10,60,56,0.78) 0%, rgba(10,60,56,0.48) 50%, rgba(10,60,56,0.30) 100% );
}

/* Responsive */
@@media (max-width: 768px) {
	.rh-panel {
		padding: 50px 5%;
		align-items: flex-end;
		padding-bottom: 90px;
	}

		.rh-panel.align-right {
			justify-content: flex-start;
		}

			.rh-panel.align-right .rh-content-box {
				text-align: left;
			}

			.rh-panel.align-right .rh-badge {
				margin-left: 0;
			}

			.rh-panel.align-right .rh-actions {
				justify-content: flex-start;
			}

			.rh-panel.align-right .rh-stats,
			.rh-panel.align-right .rh-legacy-pills {
				margin-left: 0;
			}

	.rh-stats {
		padding: 14px 16px;
	}

	.rh-stat {
		padding: 0 14px;
	}

	.rh-arrow {
		display: none;
	}
}


/* Gallery Section */
* {
	box-sizing: border-box;
}

body {
	overflow-x: hidden;
}

.rtmnu-media-section {
	padding: 40px 3%;
	background: #f8fbff;
	overflow: hidden;
}

.custom-container {
	max-width: 1200px;
}

/* =====================================================
       TITLE
    ====================================================== */

.section-title {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 18px;
	color: #0B3D91;
	line-height: 1.1;
}

	.section-title span {
		color: #F4B400;
	}

/* =====================================================
       VIDEO CARD
    ====================================================== */

.video-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	height: 300px;
	width: 100%;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	background: #1a1a2e;
}

	.video-card iframe {
		width: 100%;
		height: 100%;
		border: 0;
		display: block;
	}

	.video-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transform: scale(1.01);
		transition: transform .8s ease;
		backface-visibility: hidden;
	}

	.video-card:hover img {
		transform: scale(1.07);
	}

.video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.80), rgba(0,0,0,0.10));
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(255,255,255,0.18);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255,255,255,0.30);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: .35s ease;
	text-decoration: none;
}

	.play-btn:hover {
		background: #F4B400;
		transform: translate(-50%,-50%) scale(1.1);
		border-color: #F4B400;
	}

	.play-btn svg {
		width: 22px;
		fill: white;
		margin-left: 3px;
	}

.video-content {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 10;
	color: white;
}

	.video-content h3 {
		font-size: 17px;
		font-weight: 700;
		margin-bottom: 4px;
	}

	.video-content p {
		font-size: 12px;
		opacity: .88;
	}

/* =====================================================
       GALLERY  —  2-column grid
    ====================================================== */

.swiper {
	overflow: hidden;
}

.swiper-slide {
	height: auto !important;
	transform: translate3d(0,0,0);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 12px;
	width: 100%;
}

.img-card {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	height: 300px;
	width: 100%;
	background: #c8d0e0;
	box-shadow: 0 6px 18px rgba(0,0,0,0.10);
	transform: translateZ(0);
}

	.img-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transform: scale(1.01);
		transition: transform .8s ease;
		backface-visibility: hidden;
	}

	.img-card:hover img {
		transform: scale(1.08);
	}

.img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.80), rgba(0,0,0,0.06));
}

.img-caption {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 12px;
	z-index: 10;
	color: white;
	font-size: 12px;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 9px;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(8px);
}

.zoom-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: .35s ease;
}

	.zoom-icon svg {
		width: 14px;
		fill: white;
	}

.img-card:hover .zoom-icon {
	background: #F4B400;
	transform: scale(1.1);
}

/* =====================================================
       SWIPER BUTTONS
    ====================================================== */

.swiper-button-next,
.swiper-button-prev {
	width: 38px !important;
	height: 38px !important;
	border-radius: 50%;
	background: #0B3D91 !important;
	color: white !important;
	box-shadow: 0 4px 12px rgba(11,61,145,0.25);
}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 13px !important;
		font-weight: bold;
	}

/* =====================================================
       RESPONSIVE
    ====================================================== */

@@media(max-width:1200px) {
	.video-card,
	.img-card {
		height: 260px;
	}
}

@@media(max-width:991px) {
	.video-card,
	.img-card {
		height: 220px;
	}
}

@@media(max-width:767px) {
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 22px;
	}

	.video-card,
	.img-card {
		height: 200px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		width: 32px !important;
		height: 32px !important;
	}
}

