h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
}

:root {
	--blue: #234189;
	--blue-dark: #172b5e;
	--blue-light: #3957ad;
	--yellow: #ffc617;
	--orange: #f58120;
	--ink: #0f1530;
	--muted: #5a6075;
	--line: #e6e8ef;
	--bg: #ffffff;
	--bg-soft: #f6f7fb;
	--bg-warm: #fff6e0;
	--radius: 14px;
	--shadow: 0 10px 30px rgba(15, 21, 48, 0.08);
	--shadow-lg: 0 24px 60px rgba(15, 21, 48, 0.14);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", system-ui, sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.8rem;
	-webkit-font-smoothing: antialiased;
	font-size: 14px;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 24px;
}

.serif {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.mono {
	font-family: "JetBrains Mono", monospace;
}

/* ========= TOP MARQUEE ========= */
.topbar {
	background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
	color: #fff;
	font-size: 13px;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	z-index: 123;
}

.topbar-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 10px 0;
	white-space: nowrap;
	animation: marquee 40s linear infinite;
}

.topbar-inner span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.topbar-inner .dot {
	width: 6px;
	height: 6px;
	background: var(--yellow);
	border-radius: 50%;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ========= HEADER ========= */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--line);
}

.header-inner {
	position: relative;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo img {
	height: 100px;
	width: 100%;
	display: block;
}

@media (max-width: 640px) {
	.logo img {
		height: 42px;
	}
}

.nav {
	display: flex;
	align-items: center;
	gap: 0;
}

.nav-item {
	position: static;
}

.nav-trigger {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ink);
	padding: 24px 5px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	position: relative;
	cursor: pointer;
	background: none;
	border: none;
	font-family: inherit;
	white-space: nowrap;
}

.nav-trigger svg {
	width: 12px;
	height: 12px;
	transition: transform 0.2s ease;
}

.nav-trigger:hover {
	color: var(--blue);
}

.nav-item.has-mega:hover .nav-trigger {
	color: var(--blue);
	background: var(--bg-soft);
}

.nav-item.has-mega:hover .nav-trigger svg {
	transform: rotate(180deg);
}

.nav-item.has-mega:hover .nav-trigger::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	background: var(--orange);
}

/* mega panel */
.mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: 0 24px 48px rgba(15, 21, 48, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s;
	z-index: 99;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

.nav-item.has-mega:hover .mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mega-inner {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 0;
	min-height: 380px;
}

.mega-cols {
	display: grid;
	grid-template-columns: repeat(var(--cols, 2), 1fr);
	gap: 8px 32px;
	padding: 32px 32px 32px 24px;
}

.mega-col h6 {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--line);
	font-family: "Inter", system-ui, sans-serif;
}

.mega-col li {
	list-style: none;
}

.mega-col a {
	display: block;
	padding: 7px 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	border-radius: 4px;
	transition:
		color 0.15s ease,
		padding 0.15s ease;
}

.mega-col a:hover {
	color: var(--blue);
	padding-left: 6px;
}

.mega-col a small {
	display: block;
	font-size: 11px;
	color: var(--muted);
	font-weight: 400;
	margin-top: 1px;
}

/* feature panel on right */
.mega-feature {
	background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
	color: #fff;
	padding: 32px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.mega-feature::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%,
			rgba(255, 198, 23, 0.25),
			transparent 55%),
		repeating-linear-gradient(135deg,
			rgba(255, 255, 255, 0.03) 0 10px,
			transparent 10px 22px);
}

/* .mega-feature.background_one {
    background: linear-gradient(160deg, rgb(35 65 137 / 90%) 0%, rgb(23 43 94 / 95%) 100%), url(assets/menu_one.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

/* .mega-feature.background_one:before {
	content:none;
} */

.mega-feature>* {
	position: relative;
}

.mega-feature h4 {
	font-size: 22px;
	letter-spacing: -0.4px;
	line-height: 1.2;
	margin-bottom: 6px;
}

.mega-feature h4 strong {
	display: block;
	color: var(--yellow);
	font-weight: 800;
}

.mega-feature p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	margin-bottom: 18px;
}

.mega-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: auto;
}

.mega-stat {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 14px;
}

.mega-stat strong {
	display: block;
	color: var(--yellow);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1;
}

.mega-stat span {
	display: block;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.mega-feature .btn {
	align-self: flex-start;
	margin-top: 18px;
}

.nav-link {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ink);
	padding: 24px 5px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	position: relative;
	white-space: nowrap;
}

.nav-link:hover {
	color: var(--blue);
}

.nav-link:hover::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: -1px;
	height: 3px;
	background: var(--orange);
}

.cta-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	transition:
		transform 0.15s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.btn-primary {
	background: var(--orange);
	color: #fff;
}

.btn-primary:hover {
	background: #e0700f;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(245, 129, 32, 0.35);
}

.btn-secondary {
	background: var(--blue);
	color: #fff;
}

.btn-secondary:hover {
	background: var(--blue-dark);
}

.btn-ghost {
	background: transparent;
	color: var(--blue);
	border: 1.5px solid var(--blue);
}

.btn-ghost:hover {
	background: var(--blue);
	color: #fff;
}

.btn-yellow {
	background: var(--yellow);
	color: var(--ink);
}

.btn-yellow:hover {
	background: #ffd449;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--blue);
	color: #fff;
	align-items: center;
	justify-content: center;
}

.menu-toggle svg {
	width: 22px;
	height: 22px;
}

/* ========= HERO ========= */
.hero {
	position: relative;
	background:
		radial-gradient(circle at 30% 40%, rgba(35, 65, 137, 0.6), transparent 60%),
		radial-gradient(circle at 70% 60%,
			rgba(245, 129, 32, 0.35),
			transparent 55%),
		linear-gradient(135deg, #0f1530 0%, #172b5e 50%, #234189 100%);
	overflow: hidden;
	isolation: isolate;
}

.hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 177.78vh;
	min-width: 100%;
	height: 56.25vw;
	min-height: 100%;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.hero-video::after {
	content: "";
	position: absolute;
	inset: 0;
	/*background: linear-gradient(to right,
			rgba(23, 43, 94, 0.65) 0%,
			rgba(23, 43, 94, 0) 100%);*/
}

.hero-grid {
	position: relative;
	z-index: 1;
}

.hero-left {
	color: #fff;
}

.hero h1 {
	color: #fff;
}

.hero h1 em {
	color: var(--yellow);
}

.hero h1 em::after {
	background: rgba(245, 129, 32, 0.4);
}

.hero p {
	color: rgba(255, 255, 255, 0.8);
}

.hero-eyebrow {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	backdrop-filter: blur(8px);
}

.hero-eyebrow .dot {
	box-shadow: 0 0 0 4px rgba(245, 129, 32, 0.3);
}

.hero-meta div small {
	color: rgba(255, 255, 255, 0.6);
}

.hero-meta div strong {
	color: var(--yellow);
}

.hero .btn-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-ghost:hover {
	background: #fff;
	color: var(--blue);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	padding: 80px 0 96px;
	align-items: center;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid var(--line);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--blue);
	text-transform: uppercase;
	letter-spacing: 1.2px;
	box-shadow: 0 4px 14px rgba(15, 21, 48, 0.05);
}

.hero-eyebrow .dot {
	width: 8px;
	height: 8px;
	background: var(--orange);
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(245, 129, 32, 0.18);
}

.hero h1 {
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
	letter-spacing: -1.5px;
	margin: 18px 0 20px;
	color: #fff;
}

.hero h1 em {
	font-style: normal;
	color: var(--yellow);
	position: relative;
	display: inline-block;
}

.hero h1 em::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 14px;
	background: rgba(245, 129, 32, 0.5);
	z-index: -1;
	border-radius: 4px;
}

.hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 17px;
	max-width: 520px;
	margin-bottom: 28px;
}

.hero-ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-meta {
	display: flex;
	gap: 32px;
	margin-top: 36px;
	flex-wrap: wrap;
}

.hero-meta div small {
	display: block;
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.hero-meta div strong {
	display: block;
	font-size: 22px;
	color: var(--blue);
	font-weight: 800;
	margin-top: 2px;
}

/* Admission card */
.admission-card {
	background: #fff;
	border-radius: 18px;
	padding: 28px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--line);
	position: relative;
}

.admission-card::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 24px;
	background: var(--orange);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 6px;
	letter-spacing: 1px;
	text-transform: uppercase;
	content: "Admissions Open 2026";
}

.admission-card h3 {
	font-size: 22px;
	margin-top: 14px;
	color: var(--blue);
	letter-spacing: -0.5px;
}

.admission-card .sub {
	color: var(--muted);
	font-size: 14px;
	margin: 6px 0 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 12px;
}

.field label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.field input,
.field select {
	width: 100%;
	padding: 11px 12px;
	border: 1.5px solid var(--line);
	border-radius: 8px;
	font: inherit;
	font-size: 14px;
	background: #fff;
	color: var(--ink);
	transition: border 0.15s ease;
}

.field input:focus,
.field select:focus {
	outline: none;
	border-color: var(--blue);
}

.form-submit {
	width: 100%;
	justify-content: center;
	margin-top: 8px;
	padding: 14px;
}

/* ── Section Wrapper ── */
.welcome-section {
	max-width: 1140px;
	margin: 0 auto;
	padding: 60px 24px 50px;
	text-align: center;
}

.welcome-section .header_classic_logo {
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 30px;
}

/* ── Heading ── */
.welcome-section h1 {
	font-size: 30px;
	line-height: 1.25;
	margin-bottom: 24px;
	color: var(--orange);
}

.welcome-section h1 .highlight {
	color: var(--blue);
	font-weight: 600;
}

.welcome-section h1 strong {
	color: var(--text);
	font-weight: 600;
}

/* ── Paragraph ── */
.welcome-section .intro {
	font-size: clamp(0.95rem, 1.8vw, 1.05rem);
	line-height: 1.8;
	text-align: left;
	/* max-width: 900px; */
	margin: 0 auto 48px;
	color: #000000;
	text-align: justify;
}

/* ── Sub-heading ── */
.welcome-section h2 {
	font-size: clamp(1.4rem, 3vw, 2rem);
	margin-bottom: 36px;
	color: var(--dark);
}

.welcome-section h2 .highlight {
	color: var(--blue);
	font-weight: 400;
}

.welcome-section h2 strong {
	color: var(--text);
	font-weight: 700;
}

/* ── Logos Grid ── */
.logos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 48px;
}

.logo-card {
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 28px 20px 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: #fff;
	transition:
		box-shadow 0.2s ease,
		transform 0.2s ease;
	min-height: 160px;
}

.logo-card:hover {
	box-shadow: 0 6px 24px rgba(26, 60, 143, 0.1);
	transform: translateY(-2px);
}

.logo-card img {
	max-width: 120px;
	max-height: 80px;
	object-fit: contain;
}

/* NAAC SVG placeholder */
.naac-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}

.naac-badge .naac-top {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.naac-badge .naac-label {
	font-family: "Merriweather", serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--blue);
}

.naac-badge .naac-grade {
	font-family: "Merriweather", serif;
	font-size: 2rem;
	font-weight: 900;
	color: var(--red);
	line-height: 1;
}

.naac-badge .naac-plus {
	font-size: 1.4rem;
	font-weight: 900;
	color: var(--red);
	line-height: 1;
}

.naac-badge .naac-bottom {
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--blue);
	text-align: center;
	border-top: 2px solid var(--blue);
	padding-top: 4px;
	margin-top: 4px;
}

.logo-card .logo-label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: center;
	color: #555;
	text-transform: uppercase;
	line-height: 1.4;
}

/* UGC SVG */
.ugc-emblem svg,
.bci-emblem svg,
.aiu-emblem svg {
	width: 80px;
	height: 80px;
}

/* ── CTA Button ── */
.cta-btn {
	display: inline-block;
	background: var(--red);
	color: #fff;
	text-decoration: none;
	font-family: "Source Sans 3", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 16px 44px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.15s ease,
		box-shadow 0.2s ease;
	box-shadow: 0 4px 14px rgba(224, 32, 32, 0.3);
}

.cta-btn:hover {
	background: #c01a1a;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(224, 32, 32, 0.4);
}

.cta-btn:active {
	transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.logos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (max-width: 520px) {
	.welcome-section {
		padding: 40px 16px 40px;
	}

	.logos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.logo-card {
		padding: 20px 12px 16px;
		min-height: 130px;
	}

	.naac-badge .naac-grade {
		font-size: 1.6rem;
	}

	.cta-btn {
		width: 100%;
		text-align: center;
	}
}

.about-hero {
	position: relative;
	height: 500px;
	background: url("assets/about_home.jpg") center/cover no-repeat;
	display: flex;
	align-items: center;
	color: #fff;
}

/* ========= STATS ========= */
.stats {
	background: #fff;
	padding: 80px 0 90px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	position: relative;
}

.stat {
	text-align: left;
	padding: 8px 22px 8px 0;
	border-right: 1px solid var(--line);
	position: relative;
}

.stat:last-child {
	border-right: none;
}

.stat strong {
	display: flex;
	align-items: baseline;
	font-size: clamp(48px, 5.5vw, 72px);
	color: var(--orange);
	font-weight: 800;
	letter-spacing: -2.5px;
	line-height: 0.95;
	font-family: "Inter", sans-serif;
}

.stat strong sup {
	color: var(--orange);
	font-size: 0.55em;
	font-weight: 800;
	letter-spacing: -1px;
	vertical-align: super;
	margin-left: 2px;
}

.stat .stat-label {
	display: block;
	font-size: 13px;
	color: var(--ink);
	margin-top: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 800;
}

.stat .stat-desc {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	line-height: 1.4;
	font-weight: 500;
	max-width: 180px;
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-size: clamp(28px, 3.5vw, 42px);
	letter-spacing: -1px;
	line-height: 1.1;
	color: var(--ink);
}

.section-title h2 em {
	font-style: normal;
	color: var(--orange);
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.section-title p {
	color: var(--ink);
	margin-top: 10px;
	font-size: 16px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 36px;
	margin-top: 8px;
}

.stat {
	text-align: left;
	padding: 0;
}

.stat strong {
	display: block;
	font-size: clamp(38px, 4.5vw, 56px);
	color: var(--orange);
	font-weight: 800;
	letter-spacing: -1.5px;
	line-height: 1;
	font-family: "Inter", sans-serif;
}

.header_classic_logo {
	margin-top: 10px;
}

.stat strong sup {
	color: var(--orange);
	font-size: 0.7em;
	vertical-align: baseline;
	font-weight: 800;
}

.stat .stat-label {
	display: block;
	font-size: 13px;
	color: var(--ink);
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 800;
}

.stat .stat-divider {
	display: block;
	width: 46px;
	height: 1px;
	background: var(--ink);
	margin: 14px 0;
	opacity: 0.85;
}

.stat .stat-desc {
	display: block;
	font-size: 15px;
	color: #282a2f;
	line-height: 1.45;
	font-weight: 500;
	max-width: 200px;
}

/* Section heading style — mixed weights like reference */
.stats .section-title {
	text-align: center;
	margin-bottom: 60px;
}

.stats .section-title h2 {
	font-weight: 400;
	font-size: clamp(30px, 3.6vw, 46px);
	letter-spacing: -1.2px;
	line-height: 1.15;
	color: var(--ink);
	font-family: "Inter", sans-serif;
}

.stats .section-title h2 b {
	font-weight: 800;
	font-style: normal;
}

.stats .section-title h2 em {
	font-style: normal;
	font-weight: 400;
	color: var(--ink);
	font-family: "Inter", sans-serif;
}

/* ========= FEATURE CARDS (videos placeholders) ========= */
.feature-cards {
	padding: 80px 0 80px;
}

.fc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.fc {
	position: relative;
	aspect-ratio: 16/9;
	border-radius: 18px;
	overflow: hidden;
	background: var(--blue);
	color: #fff;
	display: flex;
	align-items: flex-end;
	padding: 28px;
	box-shadow: var(--shadow);
}

.fc.warm {
	background: linear-gradient(135deg, #f58120, #e0570f);
}

.fc.cool {
	background: linear-gradient(135deg, #234189, #3957ad);
}

.fc::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.65) 100%);
}

.fc-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	display: grid;
	place-items: center;
	backdrop-filter: blur(6px);
	transition:
		transform 0.2s ease,
		background 0.2s ease;
}

.fc:hover .fc-play {
	transform: translate(-50%, -50%) scale(1.08);
	background: rgba(255, 255, 255, 0.25);
}

.fc-play svg {
	width: 24px;
	height: 24px;
	fill: #fff;
	margin-left: 4px;
}

.fc-content {
	position: relative;
	z-index: 1;
}

.fc-content small {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.18);
	padding: 4px 10px;
	border-radius: 4px;
}

.fc-content h4 {
	font-size: 22px;
	margin-top: 12px;
	letter-spacing: -0.4px;
	line-height: 1.2;
}

/* ========= RANKINGS ========= */
.rankings {
	background: var(--bg-warm);
	padding: 80px 0;
}

.rankings-list {
	display: grid;
	gap: 14px;
	margin-top: 32px;
}

.rank-row {
	display: grid;
	grid-template-columns: 200px 1fr 1fr;
	gap: 24px;
	background: #fff;
	padding: 22px 26px;
	border-radius: 12px;
	align-items: center;
	box-shadow: 0 6px 18px rgba(15, 21, 48, 0.05);
	transition: transform 0.15s ease;
}

.rank-row:hover {
	transform: translateY(-2px);
}

.rank-agency {
	font-weight: 800;
	color: var(--blue);
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.rank-agency .badge {
	width: 36px;
	height: 36px;
	background: var(--blue);
	color: #fff;
	border-radius: 8px;
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 800;
}

.rank-num {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.rank-num strong {
	color: var(--orange);
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -1px;
}

.rank-num span {
	color: var(--muted);
	font-size: 13px;
}

.accred {
	margin-top: 48px;
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	background: #fff;
	padding: 22px 26px;
	border-radius: 12px;
}

.accred h4 {
	font-size: 14px;
	color: var(--blue);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	margin-right: 8px;
}

.accred-item {
	padding: 8px 14px;
	border-radius: 6px;
	border: 1.5px solid var(--blue);
	color: var(--blue);
	font-weight: 700;
	font-size: 13px;
	background: #fff;
}

.accred-item.alt {
	background: var(--blue);
	color: #fff;
}

.accred-item.yellow {
	background: var(--yellow);
	border-color: var(--yellow);
	color: var(--ink);
}

/* ========= PLACEMENTS ========= */
.placements {
	background: var(--ink);
	color: #fff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.placements::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
	opacity: 0.25;
}

.placements .section-title h2 {
	color: #fff;
}

.placements .section-title h2 em {
	color: var(--yellow);
}

.placements .section-title p {
	color: rgba(255, 255, 255, 0.7);
}

.place-hero {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	margin-top: 48px;
	align-items: center;
}

.alumni-card {
	background: linear-gradient(180deg, #1a2547, #0f1530);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 32px;
	position: relative;
}

.alumni-quote {
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: -0.3px;
	color: #fff;
	margin-bottom: 24px;
}

.alumni-quote::before {
	content: "\201C";
	color: var(--yellow);
	font-size: 64px;
	line-height: 0;
	vertical-align: -0.4em;
	margin-right: 6px;
	font-family: "Montserrat", sans-serif;
}

.alumni-info {
	display: flex;
	align-items: center;
	gap: 14px;
}

.alumni-avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--yellow));
	display: grid;
	place-items: center;
	font-weight: 800;
	color: #fff;
	font-size: 20px;
}

.alumni-info strong {
	display: block;
	color: #fff;
}

.alumni-info span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

.place-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.place-stat {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 22px;
	border-radius: 12px;
}

.place-stat strong {
	display: block;
	font-size: 30px;
	color: var(--yellow);
	font-weight: 800;
	letter-spacing: -1px;
}

.place-stat span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	display: block;
	margin-top: 4px;
}

.recruiters {
	background: #fff;
	padding: 30px;
}

.recruiters h4 {
	text-align: center;
	font-size: 28px;
	text-transform: capitalize;
	letter-spacing: 0;
	color: var(--ink);
	font-weight: 700;
	margin-bottom: 40px;
	margin-top: 0px;
}

.recruiter-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.recruiter {
	padding: 0;
	border-radius: 0;
	text-align: center;
	font-weight: 700;
	color: #fff;
	font-size: 14px;
	transition: background 0.2s ease;
	max-height: 100px;
	overflow: hidden;
	align-items: center;
	display: flex;
	justify-content: center;
}

.recruiter img {
	max-height: 150px;
}

.recruiter:hover {}

/* ========= GLOBAL EDU ========= */
.global {
	padding: 80px 0;
	background: var(--bg-soft);
}

.global-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 32px;
	margin-top: 48px;
}

.global-hero {
	background: url(assets/multi_campus.jpg);
	background-size: cover;
	border-radius: 18px;
	padding: 36px;
	color: #fff;
	position: relative;
	overflow: hidden;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.global-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg,
			rgba(35, 65, 137, 1) 0%,
			rgba(35, 65, 137, 0.24) 100%);
}

.global-hero h3 {
	position: relative;
	font-size: 28px;
	letter-spacing: -0.5px;
	line-height: 1.15;
	margin-bottom: 8px;
}

.global-hero p {
	position: relative;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
	font-size: 14px;
}

.global-hero .btn {
	position: relative;
	align-self: flex-start;
}

.global-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.gf {
	background: #fff;
	border: 1px solid var(--line);
	padding: 24px;
	border-radius: 14px;
	transition:
		transform 0.15s ease,
		box-shadow 0.2s ease;
}

.gf:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.gf .num {
	font-family: "Montserrat", sans-serif;
	font-size: 42px;
	color: var(--orange);
	line-height: 1;
}

.gf h5 {
	font-size: 16px;
	margin: 14px 0 6px;
	color: var(--ink);
	letter-spacing: -0.2px;
}

.gf p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
}

/* ========= CAMPUS STRIP ========= */
.campus-strip {
	background: var(--orange);
	padding: 36px 0;
	position: relative;
	overflow: hidden;
}

.campus-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg,
			rgba(255, 255, 255, 0.05) 0 10px,
			transparent 10px 22px);
}

.strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	position: relative;
	flex-wrap: wrap;
}

.strip-inner h3 {
	color: #fff;
	font-size: clamp(22px, 3vw, 32px);
	letter-spacing: -0.5px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.strip-inner h3 strong {
	font-family: "Inter", sans-serif;
	font-weight: 800;
	display: block;
}

/* ========= CAMPUS GALLERY ========= */
.campus {
	padding: 80px 0;
}

.gallery {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 200px 200px;
	gap: 14px;
}

.gimg {
	border-radius: 14px;
	background: linear-gradient(135deg, #cdd5e8, #9aa6c8);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 18px;
	color: #fff;
	font-weight: 700;
}

.gimg::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(45deg,
			rgba(255, 255, 255, 0.04) 0 8px,
			transparent 8px 16px),
		linear-gradient(180deg, transparent 50%, rgba(15, 21, 48, 0.5) 100%);
}

.gimg .label {
	position: relative;
	font-size: 11px;
	background: rgba(0, 0, 0, 0.4);
	padding: 4px 10px;
	border-radius: 4px;
	backdrop-filter: blur(4px);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.g1 {
	grid-row: span 2;
	background: url(assets/library.jpg);
	background-size: cover;
}

.g2 {
	background: url(assets/playground.jpg);
	background-size: cover;
}

.g3 {
	background: url(assets/cateen.jpg);
	background-size: cover;
}

.g4 {
	background: url(assets/auditorium.jpg);
	background-size: cover;
}

.g5 {
	background: url(assets/transport.jpg);
	background-size: cover;
}

/* ========= WHY CHOOSE ========= */
.why {
	padding: 80px 0;
	background: #fff;
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 48px;
	margin-top: 40px;
}

.why-left h2 {
	font-size: clamp(28px, 3.5vw, 40px);
	letter-spacing: -1px;
	line-height: 1.1;
}

.why-left h2 em {
	font-style: normal;
	color: var(--orange);
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.why-left p {
	color: var(--muted);
	margin-top: 14px;
	max-width: 380px;
}

.why-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.why-item {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	gap: 18px;
	padding: 22px 4px;
	border-bottom: 1px solid var(--line);
	align-items: center;
	cursor: pointer;
	transition: padding 0.2s ease;
}

.why-item:hover {
	padding-left: 12px;
}

.why-item:hover .why-arrow {
	background: var(--orange);
	color: #fff;
	transform: translateX(4px);
}

.why-num {
	font-family: "Montserrat", sans-serif;
	color: var(--blue);
	font-size: 32px;
	line-height: 1;
}

.why-text strong {
	display: block;
	font-size: 18px;
	color: var(--ink);
	letter-spacing: -0.2px;
}

.why-text p {
	color: var(--muted);
	font-size: 14px;
	margin-top: 4px;
	max-width: 480px;
}

.why-arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--bg-soft);
	color: var(--blue);
	display: grid;
	place-items: center;
	transition: all 0.2s ease;
}

.why-arrow svg {
	width: 18px;
	height: 18px;
}

/* ========= RESEARCH ========= */
.research {
	background: linear-gradient(135deg, #234189 0%, #172b5e 100%);
	color: #fff;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.research::before {
	content: "";
	position: absolute;
	top: -200px;
	left: -200px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
	opacity: 0.15;
}

.research .section-title h2 {
	color: #fff;
}

.research .section-title h2 em {
	color: var(--yellow);
}

.research .section-title p {
	color: rgba(255, 255, 255, 0.7);
}

.research-stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	margin: 48px 0;
}

.rs {
	text-align: center;
	border-right: 1px dashed rgba(255, 255, 255, 0.15);
	padding: 0 12px;
}

.rs:last-child {
	border-right: none;
}

.rs strong {
	display: block;
	font-size: 38px;
	color: var(--yellow);
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1;
}

.rs span {
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.research-labs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.lab {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 24px;
	aspect-ratio: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: background 0.2s ease;
	position: relative;
	overflow: hidden;
}

.lab::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg,
			rgba(35, 65, 137, 1) 0%,
			rgba(35, 65, 137, 0.24) 100%);
}

.lab:hover {
	background: rgba(255, 198, 23, 0.1);
	border-color: var(--yellow);
}

.lab .lab-cat {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--yellow);
	position: relative;
	font-weight: 700;
}

.lab h5 {
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: -0.2px;
	position: relative;
	margin-top: 8px;
}

.lab .lab-meta {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	position: relative;
	gap: 6px;
}

/* ========= NEWS ========= */
.news {
	padding: 80px 0;
	background: var(--bg-soft);
}

.news-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.news-head h2 {
	font-size: clamp(28px, 3.5vw, 40px);
	letter-spacing: -1px;
	line-height: 1.1;
}

.news-head h2 em {
	font-style: normal;
	color: var(--orange);
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.news-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--line);
	transition:
		transform 0.15s ease,
		box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.news-image {
	aspect-ratio: 16/10;
	background: linear-gradient(135deg, #234189, #3957ad);
	position: relative;
}

.news-image.alt-1 {
	background: linear-gradient(135deg, #f58120, #e0570f);
}

.news-image.alt-2 {
	background: linear-gradient(135deg, #ffc617, #e0a30f);
}

.news-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg,
			rgba(255, 255, 255, 0.04) 0 8px,
			transparent 8px 16px);
}

.news-image .news-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #fff;
	color: var(--blue);
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.news-body {
	padding: 22px;
}

.news-date {
	font-size: 12px;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: 0.5px;
}

.news-body h4 {
	font-size: 17px;
	line-height: 1.35;
	margin: 8px 0 14px;
	letter-spacing: -0.2px;
	color: var(--ink);
}

.news-body a {
	color: var(--orange);
	font-weight: 700;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.news-body a:hover {
	color: #e0700f;
	gap: 10px;
	transition: gap 0.15s ease;
}

/* ========= VIRTUAL TOUR ========= */
.virtual {
	padding: 80px 0;
	background: #fff;
}

.tour-card {
	aspect-ratio: 21/9;
	border-radius: 18px;
	background: url(assets/about_home.jpg);
	background-size: cover;
	margin-top: 32px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tour-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 50%, rgb(35 65 137 / 22%), transparent 50%),
		radial-gradient(circle at 70% 50%,
			rgb(34 65 137 / 30%),
			rgb(34 65 137 / 40%) 30%),
		repeating-linear-gradient(135deg,
			rgba(255, 255, 255, 0.03) 0 12px,
			transparent 12px 24px);
}

.tour-inner {
	position: relative;
	text-align: center;
	color: #fff;
	z-index: 1;
}

.tour-play {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--orange);
	display: grid;
	place-items: center;
	margin: 0 auto 20px;
	box-shadow: 0 20px 50px rgba(245, 129, 32, 0.4);
	transition: transform 0.2s ease;
	cursor: pointer;
	border: 4px solid rgba(255, 255, 255, 0.2);
}

.tour-play:hover {
	transform: scale(1.08);
}

.tour-play svg {
	width: 32px;
	height: 32px;
	fill: #fff;
	margin-left: 4px;
}

.tour-inner h3 {
	font-size: 28px;
	letter-spacing: -0.5px;
}

.tour-inner p {
	color: rgba(255, 255, 255, 0.7);
	margin-top: 6px;
}

/* ========= FOOTER ========= */
footer {
	background: #0a174c;
	color: rgba(255, 255, 255, 0.7);
	padding: 64px 0 24px;
	font-size: 14px;
	margin-bottom: 47px;
}

.foot-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-brand .logo-mark {
	margin-bottom: 14px;
}

.foot-brand h4 {
	color: #fff;
	font-size: 18px;
	margin-bottom: 6px;
	letter-spacing: -0.3px;
}

.foot-brand p {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 14px;
}

.foot-brand .contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
}

.foot-brand .contact span {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.foot-brand .contact b {
	color: var(--yellow);
	font-weight: 600;
}

.foot-col h5 {
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 18px;
}

.foot-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.foot-col a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.15s ease;
	font-weight: 300;
}

.foot-col a:hover {
	color: var(--yellow);
}

.foot-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 12px;
}

.socials {
	display: flex;
	gap: 10px;
}

.socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: grid;
	place-items: center;
	color: #fff;
	transition:
		background 0.2s ease,
		transform 0.15s ease;
}

.socials a:hover {
	background: var(--orange);
	transform: translateY(-2px);
}

.socials svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

/* ========= SIDEBAR VERTICAL BUTTONS ========= */
.side-stack {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.side-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	min-height: 180px;
	padding: 18px 0;
	color: var(--ink);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: none;
	box-shadow: -4px 4px 14px rgba(15, 21, 48, 0.18);
	transition:
		transform 0.15s ease,
		width 0.15s ease;
	cursor: pointer;
}

.side-btn span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	white-space: nowrap;
	line-height: 1;
}

.side-btn::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 8px;
}

.side-btn.announce {
	background: var(--yellow);
	color: var(--ink);
	border: none;
}

/* .side-btn.announce::before{background:var(--orange)} */
.side-btn.enquire {
	background: var(--orange);
	color: #fff;
}

/* .side-btn.enquire::before{background:var(--blue)} */
.side-btn:hover {
	transform: translateX(-3px);
}

/* ========= ANNOUNCEMENTS PANEL ========= */
.ann-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 15, 36, 0.55);
	backdrop-filter: blur(3px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 998;
}

.ann-overlay.show {
	opacity: 1;
	pointer-events: auto;
}

.ann-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(420px, 92vw);
	background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
	color: #fff;
	z-index: 999;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: -20px 0 60px rgba(15, 21, 48, 0.35);
	border-left: 4px solid var(--yellow);
}

.ann-panel.open {
	transform: translateX(0);
}

.ann-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}

.ann-head h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.3px;
}

.ann-close {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background 0.15s ease;
	border: none;
}

.ann-close:hover {
	background: var(--orange);
}

.ann-close svg {
	width: 18px;
	height: 18px;
}

.ann-list {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.ann-list::-webkit-scrollbar {
	width: 6px;
}

.ann-list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
}

.ann-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 24px;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition:
		background 0.15s ease,
		padding 0.15s ease;
}

.ann-item:hover {
	background: rgba(255, 198, 23, 0.1);
	padding-left: 30px;
}

.ann-ico {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	display: grid;
	place-items: center;
	color: var(--yellow);
	transition: border-color 0.15s ease;
}

.ann-item:hover .ann-ico {
	border-color: var(--yellow);
}

.ann-ico svg {
	width: 16px;
	height: 16px;
}

.ann-item strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
}

.ann-item small {
	display: block;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-weight: 600;
}

.ann-foot {
	padding: 18px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}

/* ========= ENQUIRY MODAL ========= */
.enq-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 15, 36, 0.65);
	backdrop-filter: blur(4px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	z-index: 1000;
}

.enq-overlay.show {
	opacity: 1;
	pointer-events: auto;
}

.enq-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -46%) scale(0.96);
	width: min(560px, 94vw);
	max-height: 92vh;
	background: #fff;
	border-radius: 12px;
	z-index: 1001;
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(15, 21, 48, 0.4);
}

.enq-modal.open {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
}

.enq-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	border: none;
	z-index: 2;
	transition: background 0.15s ease;
}

.enq-close:hover {
	background: rgba(255, 255, 255, 0.32);
}

.enq-close svg {
	width: 16px;
	height: 16px;
}

.enq-head {
	background: var(--blue);
	color: #fff;
	padding: 28px 30px 24px;
	text-align: center;
}

.enq-head h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.4px;
}

.enq-head p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	margin-top: 6px;
}

.enq-form {
	padding: 22px 28px 26px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.enq-form input[type="text"],
.enq-form input[type="email"],
.enq-form input[type="tel"],
.enq-form select {
	width: 100%;
	padding: 13px 14px;
	border: 1.5px solid var(--line);
	border-radius: 6px;
	font: inherit;
	font-size: 14px;
	background: #fff;
	color: var(--ink);
	font-family: "Inter", sans-serif;
	transition: border 0.15s ease;
}

.enq-form input:focus,
.enq-form select:focus {
	outline: none;
	border-color: var(--blue);
}

.enq-form select {
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23234189' stroke-width='2'><polyline points='1 1 6 6 11 1'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.enq-row {
	display: flex;
	gap: 10px;
}

.enq-row.two>* {
	flex: 1;
	min-width: 0;
}

.enq-row.phone select {
	flex: 0 0 90px;
}

.enq-row.phone input {
	flex: 1;
	min-width: 0;
}

.enq-row.captcha {
	align-items: stretch;
}

.enq-row.captcha .captcha-box {
	flex: 0 0 160px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px 0 14px;
	border: 1.5px solid var(--line);
	border-radius: 6px;
	background: #f6f7fb;
}

.captcha-code {
	font-family: "JetBrains Mono", monospace;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--blue);
	text-decoration: line-through;
	text-decoration-color: rgba(245, 129, 32, 0.5);
	user-select: none;
}

.captcha-refresh {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: #fff;
	color: var(--blue);
	display: grid;
	place-items: center;
	cursor: pointer;
	border: 1px solid var(--line);
}

.captcha-refresh:hover {
	background: var(--blue);
	color: #fff;
}

.captcha-refresh svg {
	width: 14px;
	height: 14px;
}

.enq-row.captcha input {
	flex: 1;
	min-width: 0;
}

.enq-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 12px;
	color: var(--muted);
	line-height: 1.5;
	cursor: pointer;
	margin-top: 4px;
}

.enq-consent input {
	margin-top: 3px;
	accent-color: var(--blue);
}

.enq-submit {
	margin-top: 6px;
	background: var(--orange);
	color: #fff;
	padding: 14px;
	border-radius: 6px;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.15s ease;
}

.enq-submit:hover {
	background: #e0700f;
	transform: translateY(-1px);
}

@media (max-width: 520px) {
	.enq-head {
		padding: 22px 22px 20px;
	}

	.enq-head h3 {
		font-size: 22px;
	}

	.enq-form {
		padding: 18px 20px 22px;
	}

	.enq-row.two,
	.enq-row.captcha {
		flex-direction: column;
	}

	.enq-row.captcha .captcha-box {
		flex: 0 0 auto;
	}
}

/* ========= UTILITY TOP STRIP ========= */
.utility {
	background: #fff;
	border-bottom: 1px solid var(--line);
	font-size: 12px;
}

.utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	gap: 16px;
	flex-wrap: wrap;
}

.util-left {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.util-left a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-weight: 600;
	transition: color 0.15s ease;
}

.util-left a:hover {
	color: var(--blue);
}

.util-left a svg {
	width: 14px;
	height: 14px;
}

.util-left a.green {
	color: #25d366;
}

.util-left a.green:hover {
	color: #1ea952;
}

.util-right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.helpline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange);
	color: #fff;
	padding: 6px 14px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 12px;
}

.helpline svg {
	width: 13px;
	height: 13px;
	fill: #fff;
}

.util-socials {
	display: flex;
	gap: 6px;
}

.util-socials a {
	width: 26px;
	height: 26px;
	font-size: 18px;
	/* border-radius: 50%; */
	/* background: var(--bg-soft); */
	color: var(--blue);
	display: grid;
	place-items: center;
	transition:
		background 0.15s ease,
		color 0.15s ease;
}

.util-socials a:hover {
	color: var(--orange);
}

.util-socials svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* ========= ACHIEVEMENT SHOWCASE (placed students) ========= */
.achieve {
	padding: 80px 0 60px;
	background: #f1f1f1;
	position: relative;
}

.achieve-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.achieve-head h2 {
	font-size: clamp(28px, 3.5vw, 42px);
	letter-spacing: -1px;
	line-height: 1.1;
	/*max-width: 600px;*/
}

.achieve-head h2 em {
	font-style: normal;
	color: var(--orange);
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.achieve-head p {
	color: var(--ink);
	font-size: 16px;
	max-width: 650px;
	margin-top: 8px;
}

.achieve-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.ach-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	transition:
		transform 0.15s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.ach-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--orange);
}

.ach-portrait {
	aspect-ratio: 1/1.1;
	background: linear-gradient(180deg, #234189, #172b5e);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.ach-portrait .silhouette {
	position: relative;
	width: 75%;
	height: 78%;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 50% 50% 12% 12% / 60% 60% 8% 8%;
	margin-bottom: -10%;
}

.ach-portrait .silhouette::before {
	content: "";
	position: absolute;
	top: 18%;
	left: 50%;
	transform: translateX(-50%);
	width: 42%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: linear-gradient(180deg, #e8c9a8, #d4a877);
}

.ach-salary {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--yellow);
	color: var(--ink);
	padding: 6px 12px;
	border-radius: 6px;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: -0.2px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ach-salary.cr {
	background: var(--orange);
	color: #fff;
}

.ach-body {
	padding: 18px 20px 20px;
	background: #fff;
	position: relative;
	z-index: 1;
}

.ach-body strong {
	display: block;
	font-size: 17px;
	color: var(--ink);
	letter-spacing: -0.3px;
	line-height: 1.25;
}

.ach-body small {
	display: block;
	font-size: 13px;
	color: var(--ink);
	margin-top: 4px;
	font-weight: 500;
}

.ach-company {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed var(--line);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ach-company b {
	font-size: 13px;
	color: var(--blue);
	font-weight: 800;
}

.ach-company span {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

/* ========= OUR INSTITUTES ========= */
.institutes {
	padding: 60px 0 80px;
	background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.inst-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 48px;
}

.inst-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 24px;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 220px;
	text-align: center;
}

.inst-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: var(--orange);
	transition: width 0.25s ease;
}

.inst-card:hover {
	border-color: var(--orange);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.inst-card:hover::before {
	width: 100%;
}

.inst-icon {
	width: 80px;
	height: 80px;
	/* background: var(--bg-warm); */
	border-radius: 10px;
	display: grid;
	place-items: center;
	color: var(--orange);
	font-size: 22px;
	font-weight: 800;
	font-family: "Montserrat", sans-serif;
	margin: 0 auto;
}

.inst-card h4 {
	font-size: 16px;
	letter-spacing: -0.3px;
	line-height: 1.3;
	color: var(--ink);
}

.inst-card p {
	font-size: 14px;
	color: var(--ink);
	line-height: 1.5;
	flex: 1;
}

.inst-card .inst-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--blue);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-top: 1px solid var(--line);
	padding-top: 12px;
	margin-top: auto;
	justify-content: center;
}

.inst-card:hover .inst-cta {
	color: var(--orange);
	gap: 10px;
	transition:
		gap 0.15s ease,
		color 0.15s ease;
}

/* ========= HIGHLIGHTS / EVENTS ========= */
.highlights {
	padding: 80px 0 80px;
	background: #fff;
}

.highlights-wrap {
	position: relative;
}

.highlights-track {
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scroll-behavior: smooth;
	display: flex;
	gap: 24px;
	padding-bottom: 8px;
	scrollbar-width: none;
}

.highlights-track::-webkit-scrollbar {
	display: none;
}

.highlights-track>.hl-card {
	flex: 0 0 calc(50% - 12px);
	scroll-snap-align: start;
}

.hl-card {
	position: relative;
	aspect-ratio: 16/10;
	border-radius: 18px;
	overflow: hidden;
	color: #fff;
	isolation: isolate;
}

.hl-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, #1a2547, #0a1130);
}

.hl-bg.v1 {
	background: linear-gradient(135deg, #234189 0%, #0a1130 70%);
}

.hl-bg.v2 {
	background: linear-gradient(135deg, #1f2a4d 0%, #0a1130 100%);
}

.hl-bg.v3 {
	background: linear-gradient(135deg, #2a1c5e 0%, #0a1130 100%);
}

.hl-bg.v4 {
	background: linear-gradient(135deg, #3957ad 0%, #172b5e 100%);
}

.hl-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
			rgba(35, 65, 137, 0.24) 0%,
			rgba(35, 65, 137, 1) 100%);
}

.hl-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(0, 0, 0, 0.15) 0%,
			transparent 40%,
			rgba(0, 0, 0, 0.65) 100%);
}

.hl-silhouette {
	position: absolute;
	left: 8%;
	bottom: 0;
	width: 55%;
	height: 90%;
	z-index: 1;
	background:
		radial-gradient(ellipse 38% 22% at 50% 18%,
			rgba(255, 255, 255, 0.18) 0%,
			transparent 60%),
		radial-gradient(ellipse 55% 50% at 50% 78%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 65%);
	filter: blur(0.2px);
}

.hl-content {
	position: absolute;
	right: 6%;
	top: 10%;
	width: 48%;
	z-index: 2;
}

.hl-content h3 {
	font-size: clamp(18px, 1.6vw, 24px);
	font-weight: 800;
	letter-spacing: -0.3px;
	line-height: 1.25;
	margin-bottom: 14px;
}

.hl-content p {
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 22px;
	max-width: 90%;
}

.hl-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--orange);
	color: #fff;
	padding: 12px 20px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-radius: 4px;
	transition:
		transform 0.15s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.hl-cta:hover {
	background: #e0700f;
	transform: translateX(3px);
	box-shadow: 0 10px 24px rgba(245, 129, 32, 0.45);
}

.hl-cta svg {
	width: 14px;
	height: 14px;
}

.hl-foot {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 18px;
	z-index: 2;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.hl-foot .sep {
	opacity: 0.4;
}

.hl-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(15, 21, 48, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	z-index: 5;
	transition:
		background 0.2s ease,
		transform 0.15s ease;
}

.hl-arrow:hover {
	background: var(--orange);
	transform: translateY(-50%) scale(1.08);
}

.hl-arrow.prev {
	left: -22px;
}

.hl-arrow.next {
	right: -22px;
}

.hl-arrow svg {
	width: 18px;
	height: 18px;
}

@media (max-width: 900px) {
	.highlights-track>.hl-card {
		flex-basis: 88%;
	}

	.hl-content {
		width: 60%;
	}

	.hl-arrow.prev {
		left: 8px;
	}

	.hl-arrow.next {
		right: 8px;
	}
}

@media (max-width: 600px) {
	.hl-card {
		aspect-ratio: 4/5;
	}

	.hl-content {
		width: 80%;
		right: 10%;
	}

	.hl-content h3 {
		font-size: 18px;
	}

	.hl-content p {
		font-size: 13px;
		margin-bottom: 16px;
	}

	.hl-cta {
		padding: 10px 16px;
		font-size: 11px;
	}
}

/* slider */
.slider-track {
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scroll-behavior: smooth;
	display: flex;
	gap: 18px;
	padding-bottom: 8px;
	scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
	display: none;
}

.slider-track>* {
	flex: 0 0 calc(25% - 14px);
	scroll-snap-align: start;
}

.slider-ctrls {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 20px;
}

.slider-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--line);
	color: var(--blue);
	font-size: 18px;
	font-weight: 700;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.slider-btn:hover {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 900px) {
	.slider-track>* {
		flex-basis: calc(50% - 9px);
	}
}

@media (max-width: 600px) {
	.slider-track>* {
		flex-basis: 85%;
	}
}

/* ========= ANIMATIONS ========= */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeRight {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeLeft {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

@keyframes pulseGlow {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(245, 129, 32, 0.4);
	}

	50% {
		box-shadow: 0 0 0 12px rgba(245, 129, 32, 0);
	}
}

@keyframes spin {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.reveal {
	opacity: 0;
}

.reveal.in {
	animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal.in.delay-1 {
	animation-delay: 0.1s;
}

.reveal.in.delay-2 {
	animation-delay: 0.2s;
}

.reveal.in.delay-3 {
	animation-delay: 0.3s;
}

.reveal.in.delay-4 {
	animation-delay: 0.4s;
}

.reveal.in.delay-5 {
	animation-delay: 0.5s;
}

.reveal-right {
	opacity: 0;
}

.reveal-right.in {
	animation: fadeRight 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal-left {
	opacity: 0;
}

.reveal-left.in {
	animation: fadeLeft 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.reveal-scale {
	opacity: 0;
}

.reveal-scale.in {
	animation: scaleIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.stat strong.counting::after {
	content: "";
	display: inline-block;
	width: 0.6em;
	height: 0.1em;
	background: var(--orange);
	margin-left: 0.2em;
	animation: pulseGlow 1.5s infinite;
}

.hero-eyebrow {
	animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero h1 {
	animation: fadeUp 0.9s 0.15s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero p {
	animation: fadeUp 0.9s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-ctas {
	animation: fadeUp 0.9s 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-meta {
	animation: fadeUp 0.9s 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.admission-card {
	animation: fadeLeft 1s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.float-apply,
.side-btn.enquire {
	animation: pulseGlow 2s infinite;
}

.fc-play,
.tour-play {
	animation: float 3s ease-in-out infinite;
}

.ach-card,
.inst-card,
.rank-row,
.news-card,
.lab,
.gf,
.recruiter,
.place-stat,
.rs,
.stat,
.why-item,
.gimg {
	transition:
		transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
		box-shadow 0.3s ease,
		border-color 0.3s ease,
		background 0.2s ease;
}

.ach-portrait {
	overflow: hidden;
}

.ach-card:hover .silhouette {
	transform: translateY(-4px) scale(1.03);
	transition: transform 0.35s ease;
}

.silhouette {
	transition: transform 0.35s ease;
}

.news-image,
.fc {
	overflow: hidden;
}

.news-card:hover .news-image,
.fc:hover {
	transform: scale(1);
}

.news-image,
.fc::before {
	transition: transform 0.5s ease;
}

.news-card:hover .news-image::before {
	transform: scale(1.05);
}

/* Animated underline for nav-link */
.nav-trigger::before,
.nav-link::before {
	content: "";
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 0;
	height: 3px;
	background: var(--orange);
	transition:
		left 0.25s ease,
		right 0.25s ease;
}

.nav-link:hover::before {
	left: 14px;
	right: 14px;
}

/* Shimmer effect on key buttons */
.btn-primary {
	position: relative;
	overflow: hidden;
}

.btn-primary::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg,
			transparent 30%,
			rgba(255, 255, 255, 0.35) 50%,
			transparent 70%);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

.btn-primary:hover::after {
	transform: translateX(100%);
}

/* Marquee slow on hover */
.topbar-inner:hover {
	animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.reveal,
	.reveal-right,
	.reveal-left,
	.reveal-scale {
		opacity: 1;
	}
}

/* ========= MOBILE NAV PANEL ========= */
.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 1100;
	padding: 24px;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
	display: flex;
}

.mobile-nav-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.mobile-nav-head .logo img {
	height: 55px;
	width: auto;
}

.m-item {
	border-bottom: 1px solid var(--line);
}

.m-item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	cursor: pointer;
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	user-select: none;
}

.m-item-head .chev {
	color: var(--orange);
	font-size: 22px;
	font-weight: 400;
	transition: transform 0.25s ease;
	display: inline-block;
}

.m-item.open .m-item-head .chev {
	transform: rotate(90deg);
}

.m-sub {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.m-item.open .m-sub {
	max-height: 1200px;
}

.m-sub-inner {
	padding: 4px 0 14px 4px;
}

.m-sub h6 {
	font-size: 12px;
	font-weight: 800;
	color: var(--orange);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	margin: 12px 0 6px;
}

.m-sub a {
	display: block;
	padding: 9px 0;
	font-size: 14px;
	color: var(--ink);
	font-weight: 500;
	border-bottom: 1px dashed var(--line);
}

.m-sub a:last-child {
	border-bottom: none;
}

.mobile-nav>a {
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
	font-size: 17px;
	font-weight: 600;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav>a::after {
	content: "›";
	color: var(--orange);
	font-size: 22px;
	font-weight: 400;
}

.mobile-nav .close {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--bg-soft);
	display: grid;
	place-items: center;
	border: none;
	cursor: pointer;
}

.mobile-nav .mobile-cta {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-nav .mobile-cta .btn {
	justify-content: center;
	padding: 14px;
}

.mobile-nav .mobile-cta .btn::after {
	content: none;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 1180px) {
	.side-stack {
		display: none;
	}

	.nav {
		display: none;
	}

	.cta-group .btn-ghost,
	.cta-group .btn-secondary {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.header-inner {
		padding: 12px 0;
		gap: 10px;
	}

	.logo img {
		height: 48px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		padding: 48px 0;
	}

	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.stat:nth-child(3) {
		border-right: none;
	}

	.stat:nth-child(4),
	.stat:nth-child(5) {
		border-top: 1px dashed var(--line);
		padding-top: 24px;
	}

	.fc-grid {
		grid-template-columns: 1fr;
	}

	.rank-row {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.rank-agency {
		grid-column: 1/-1;
	}

	.place-hero {
		grid-template-columns: 1fr;
	}

	.recruiter-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.global-grid {
		grid-template-columns: 1fr;
	}

	.gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.g1 {
		grid-row: span 1;
	}

	.why-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.research-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.rs {
		border-right: none;
	}

	.research-labs {
		grid-template-columns: repeat(2, 1fr);
	}

	.news-grid {
		grid-template-columns: 1fr 1fr;
	}

	.foot-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.welcome-section .header_classic_logo {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.container {
		padding: 0 18px;
	}

	.header {
		padding: 5px 0px;
	}

	.hero {
		padding-bottom: 30px;
		padding-top: 30px;
	}

	.hero h1 {
		font-size: 36px;
		letter-spacing: -1px;
	}

	.hero p {
		font-size: 15px;
	}

	.hero-meta {
		gap: 20px;
	}

	.about-hero {
		height: 250px;
	}

	.stats {
		background: #fff;
		padding: 30px 0 30px;
	}

	.welcome-section .header_classic_logo {
		max-width: 100%;
	}

	.admission-card {
		padding: 22px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.slider-track {
		gap: 10px;
	}

	.rank-num {
		display: block;
		align-items: baseline;
		gap: 8px;
	}

	.rank-num strong {
		color: var(--orange);
		font-size: 25px;
		font-weight: 800;
		letter-spacing: -1px;
		display: block;
	}

	.highlights-track {
		gap: 10px;
	}

	.highlights-track>.hl-card {
		flex-basis: 100%;
	}

	.gimg {
		min-height: 250px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.stat {
		border-right: none !important;
		border-bottom: 1px dashed var(--line);
		padding: 18px 6px;
	}

	.stat:last-child {
		border-bottom: none;
	}

	.achieve-grid {
		grid-template-columns: 1fr 1fr;
	}

	.inst-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.utility-inner {
		justify-content: center;
		gap: 10px;
	}

	.util-left a span {
		display: none;
	}

	.helpline span {
		display: none;
	}

	.place-stats {
		grid-template-columns: 1fr 1fr;
	}

	.recruiter-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.global-features {
		grid-template-columns: 1fr;
	}

	.gallery {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.research-labs {
		grid-template-columns: repeat(1, 1fr);
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.foot-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.foot-bottom {
		flex-direction: column;
		text-align: center;
	}

	.tour-card {
		aspect-ratio: 4/3;
	}

	.tour-play {
		width: 64px;
		height: 64px;
	}

	.tour-inner h3 {
		font-size: 20px;
	}

	.side-stack {
		display: none;
	}

	.section-title {
		margin-bottom: 28px;
	}

	.alumni-quote {
		font-size: 17px;
	}

	.logo img {
		height: 55px;
	}

	.cta-group .btn-primary {
		padding: 9px 12px;
		font-size: 12px;
	}

	.menu-toggle {
		width: 38px;
		height: 38px;
	}

	.container {
		padding: 0 20px;
	}

	.hero h1 {
		padding-right: 8px;
	}
}

/*media hidden */

@-ms-viewport {
	width: device-width;
}

.visible-xs {
	display: none !important;
}

.visible-sm {
	display: none !important;
}

.visible-md {
	display: none !important;
}

.visible-lg {
	display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
	display: none !important;
}

@media (max-width: 767px) {
	.visible-xs {
		display: block !important;
	}

	table.visible-xs {
		display: table !important;
	}

	tr.visible-xs {
		display: table-row !important;
	}

	th.visible-xs,
	td.visible-xs {
		display: table-cell !important;
	}

	#mobile-menu-active {
		display: none;
	}
}

@media (max-width: 767px) {
	.visible-xs-block {
		display: block !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline {
		display: inline !important;
	}
}

@media (max-width: 767px) {
	.visible-xs-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm {
		display: block !important;
	}

	table.visible-sm {
		display: table !important;
	}

	tr.visible-sm {
		display: table-row !important;
	}

	th.visible-sm,
	td.visible-sm {
		display: table-cell !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-block {
		display: block !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline {
		display: inline !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md {
		display: block !important;
	}

	table.visible-md {
		display: table !important;
	}

	tr.visible-md {
		display: table-row !important;
	}

	th.visible-md,
	td.visible-md {
		display: table-cell !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-block {
		display: block !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline {
		display: inline !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline-block {
		display: inline-block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg {
		display: block !important;
	}

	table.visible-lg {
		display: table !important;
	}

	tr.visible-lg {
		display: table-row !important;
	}

	th.visible-lg,
	td.visible-lg {
		display: table-cell !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-block {
		display: block !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline {
		display: inline !important;
	}
}

@media (min-width: 1200px) {
	.visible-lg-inline-block {
		display: inline-block !important;
	}
}

@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

/* Courses */
/* ===================================
   COURSE PAGE COMMON CSS
=================================== */

.course-page {
	background: #fff;
	color: #333;
}

/* .course-container {
	width: 92%;
	max-width: 1400px;
	margin: auto;
} */

.course-section {
	padding: 80px 0;
}

.course-section:nth-child(even) {
	background: #f8f9fc;
}

/* Section Heading */

.section-heading {
	text-align: center;
	margin-bottom: 50px;
}

.section-heading h2 {
	color: #1d3674;
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
}

.section-heading h2:after {
	content: "";
	width: 80px;
	height: 4px;
	background: #f58120;
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.section-heading p {
	max-width: 850px;
	margin: auto;
	color: #666;
}

/* Hero Section */

.course-hero {
	position: relative;
	padding: 120px 0;
	color: #fff;
	background:
		linear-gradient(rgba(29, 54, 116, 0.85), rgba(29, 54, 116, 0.85)),
		url("banner.jpg") center center/cover;
}

.course-hero-content {
	max-width: 800px;
}

.course-hero h1 {
	color: #fff;
	margin-bottom: 20px;
}

.course-hero p {
	color: rgba(255, 255, 255, 0.9);
}

/* Cards */

.course-card {
	background: #fff;
	border-radius: 16px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
	height: 100%;
}

.course-card:hover {
	transform: translateY(-5px);
}

.course-card h3 {
	color: #1d3674;
	margin-bottom: 15px;
}

/* Grid */

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* HOD */

.hod-box {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 40px;
	align-items: center;
}

.hod-image img {
	width: 100%;
	border-radius: 15px;
}

.hod-content h3 {
	color: #1d3674;
}

.hod-content .quote {
	color: #f58120;
	font-style: italic;
	margin-bottom: 20px;
}

/* Table */

.course-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.course-table th {
	background: #1d3674;
	color: #fff;
	padding: 16px;
}

.course-table td {
	padding: 15px;
	border-bottom: 1px solid #eee;
}

.course-table tr:hover {
	background: #fafafa;
}

/* Lists */

.course-list {
	list-style: none;
	padding: 0;
}

.course-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}

.course-list li:before {
	content: "";
	width: 10px;
	height: 10px;
	background: #f58120;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
}

/* Timeline */

.timeline-item {
	border-left: 4px solid #f58120;
	padding-left: 25px;
	margin-bottom: 30px;
}

/* CTA */

.course-cta {
	background: #1d3674;
	color: #fff;
	text-align: center;
	border-radius: 20px;
	padding: 60px;
}

.course-cta h2,
.course-cta p {
	color: #fff;
}

/* Responsive */

@media (max-width: 991px) {

	.grid-2,
	.grid-3,
	.hod-box {
		grid-template-columns: 1fr;
	}
}

.tabs-wrapper {
	/*max-width:1100px;*/
	margin: auto;
	display: flex;
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-menu {
	width: 280px;

	display: flex;
	flex-direction: column;
}

.tab-btn {
	padding: 22px;
	border: none;
	background: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	text-align: left;
	transition: 0.3s;
	border-left: 5px solid transparent;
}

.tab-btn:hover {
	background: #23395d;
}

.tab-btn.active {
	background: #ffffff;
	color: #16213e;
	border-left: 5px solid #ff6b00;
	font-weight: bold;
}

.tab-content-area {
	flex: 1;
	padding: 20px;
}

.tab-content {
	display: none;
	animation: fade 0.5s;
}

.tab-content.active {
	display: block;
}

.tab-content h2 {
	margin-bottom: 15px;
	color: #16213e;
}

.tab-content p {
	line-height: 28px;
	color: #555;
}

@keyframes fade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.tabs-wrapper {
		flex-direction: column;
	}

	.tab-menu {
		width: 100%;
		flex-direction: row;
		overflow: auto;
	}

	.tab-btn {
		min-width: 180px;
		text-align: center;
		border-left: none;
		border-bottom: 4px solid transparent;
	}

	.tab-btn.active {
		border-left: none;
		border-bottom: 4px solid #ff6b00;
	}

	.tab-content-area {
		padding: 25px;
	}
}

/* ============================================================
   COMMON PAGE BANNER
============================================================ */

/* ============================================================
   COMMON PAGE BANNER
============================================================ */

.page-banner {
	position: relative;

	background: linear-gradient(135deg,
			var(--blue-dark) 0%,
			var(--blue) 55%,
			var(--orange) 100%);

	color: #fff;

	padding: 4.5rem 2.5rem 3.5rem;

	overflow: hidden;
	margin-bottom: 40px;
}

.page-banner__inner {
	max-width: 1100px;

	margin: 0 auto;

	position: relative;

	z-index: 2;

	animation: fadeUp 0.6s ease both;
}

/* Small Label */

.page-banner__eyebrow {
	display: inline-flex;

	align-items: center;

	gap: 0.5rem;

	font-size: 0.75rem;

	font-weight: 700;

	letter-spacing: 0.15em;

	text-transform: uppercase;

	color: rgba(255, 255, 255, 0.75);

	margin-bottom: 0.65rem;
}

.page-banner__eyebrow::before {
	content: "";

	width: 24px;

	height: 2px;

	background: var(--yellow);

	border-radius: 20px;
}

/* Title */

.page-banner__title {
	font-size: clamp(2.2rem, 5.5vw, 3.2rem);

	font-weight: 900;

	line-height: 1.08;

	letter-spacing: 1px;

	margin-bottom: 1.1rem;

	color: #fff;

	text-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
}

/* Chips */

.page-banner__meta {
	display: flex;

	flex-wrap: wrap;

	gap: 0.5rem;

	margin-bottom: 1.4rem;
}

.page-meta-chip {
	background: rgba(255, 255, 255, 0.15);

	border: 1px solid rgba(255, 255, 255, 0.35);

	color: #fff;

	font-size: 0.76rem;

	font-weight: 600;

	padding: 0.35rem 0.9rem;

	border-radius: 999px;

	backdrop-filter: blur(10px);

	letter-spacing: 0.03em;

	transition: 0.3s ease;
}

.page-meta-chip:hover {
	background: var(--yellow);

	color: var(--blue-dark);

	border-color: var(--yellow);
}

/* Description */

.page-banner__tagline {
	font-size: 1.05rem;

	color: rgba(255, 255, 255, 0.85);

	max-width: 650px;

	line-height: 1.7;
}

/* Decorative Shapes */

.page-banner__accent {
	position: absolute;

	inset: 0;

	pointer-events: none;

	z-index: 1;

	overflow: hidden;
}

.page-banner__accent::before,
.page-banner__accent::after {
	content: "";

	position: absolute;

	border-radius: 50%;

	animation: pageFloat 8s ease-in-out infinite;
}

.page-banner__accent::before {
	width: 430px;

	height: 430px;

	top: -150px;

	right: -120px;

	background: rgba(255, 255, 255, 0.08);
}

.page-banner__accent::after {
	width: 230px;

	height: 230px;

	bottom: -70px;

	right: 220px;

	background: rgba(255, 198, 23, 0.18);

	animation-delay: 3s;
}

@keyframes pageFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-22px);
	}
}

/* Mobile */

@media (max-width: 768px) {
	.page-banner {
		padding: 3.5rem 1.25rem 2.5rem;
	}

	.page-banner__title {
		font-size: 2rem;
	}

	.page-banner__tagline {
		font-size: 0.95rem;
	}
}



.vm-section {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
	font-family: inherit;
}

.vm-wrapper {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 40px;
	align-items: center;
}

.vm-image {
	position: relative;
}

.vm-image img {
	width: 100%;
	border-radius: 10px;
	display: block;
	box-shadow: 0 15px 40px rgba(14, 27, 113, 0.15);
}

.vm-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.vm-card {
	background: #ffffff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	transition: 0.3s ease;
}

.vm-card:hover {
	transform: translateY(-5px);
}

.vm-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 6px;
	height: 100%;
}

.vm-card.vision::before {
	background: #F58120;
}

.vm-card.mission::before {
	background: #0E1B71;
}

.vm-label {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 30px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #fff;
}

.vm-card.vision .vm-label {
	background: #F58120;
}

.vm-card.mission .vm-label {
	background: #0E1B71;
}

.vm-card h2 {
	color: #0E1B71;
	margin-bottom: 15px;
}

.vm-card p {
	line-height: 1.8;

	margin: 0;
}

.vm-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.vm-list li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 18px;
	line-height: 1.8;

}

.vm-list li:last-child {
	margin-bottom: 0;
}

.vm-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background: #e9e9e9;
	color: #0E1B71;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

@media (max-width: 991px) {
	.vm-wrapper {
		grid-template-columns: 1fr;
	}

	.vm-image {
		max-width: 450px;
		margin: auto;
	}
}

@media (min-width: 330px) and (max-width: 700px) {
.socials {
	display: flex;
	gap: 10px;
	max-width:260px;  
}

.socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: none;
	display: grid;
	place-items: center;
	color: #fff;
	transition:
		background 0.2s ease,
		transform 0.15s ease;
}

.socials a:hover {
	background: none;
	transform: translateY(-2px);
}

.program-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
      gap: 25px;
    }

}

@media (min-width: 396px) and (max-width: 554px) {
.container {
		padding: 0 30px;
	}

}