* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans',sans-serif;
	color: var(--navy);
	overflow-x: hidden;
	background: var(--white);
}

:root {
	--saffron: #e8681a;
	--saffron-dark: #c0520e;
	--saffron-light: #f5a354;
	--saffron-pale: #fff4eb;
	--gold: #d4a017;
	--gold-light: #f0c844;
	--maroon: #7b1c1c;
	--cream: #fdf6ec;
	--white: #ffffff;
	--navy: #1a1a2e;
	--gray: #6b7280;
	--green: #2d6a4f;
}


::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: var(--maroon);
}

::-webkit-scrollbar-thumb {
	background: var(--saffron);
	border-radius: 3px;
}



/* ===== NAV ===== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(16px);
	box-shadow: 0 2px 20px rgba(232,104,26,0.1);
	transition: all 0.3s;
}

.nav-inner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	height: 74px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 13px;
	text-decoration: none;
}

.logo-img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--saffron), var(--gold));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	box-shadow: 0 4px 16px rgba(232,104,26,0.35);
	border: 2px solid rgba(212,160,23,0.4);
	overflow: hidden;
}

	.logo-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 50%;
	}

.logo-txt strong {
	display: block;
	font-family: 'Playfair Display',serif;
	font-size: 1.1rem;
	color: var(--maroon);
	line-height: 1.1;
	font-weight: 900;
}

.logo-txt span {
	font-size: 0.68rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--saffron);
	font-weight: 600;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
}

	.nav-links a {
		color: var(--navy);
		text-decoration: none;
		font-size: 0.84rem;
		font-weight: 600;
		padding: 0.45rem 0.85rem;
		border-radius: 6px;
		transition: all 0.25s;
		position: relative;
	}

		.nav-links a::after {
			content: '';
			position: absolute;
			bottom: 2px;
			left: 50%;
			right: 50%;
			height: 2px;
			background: var(--saffron);
			border-radius: 1px;
			transition: all 0.3s;
		}

		.nav-links a:hover {
			color: var(--saffron);
		}

			.nav-links a:hover::after {
				left: 0.85rem;
				right: 0.85rem;
			}

.nav-admit {
	background: linear-gradient(135deg,var(--saffron),var(--saffron-dark)) !important;
	color: white !important;
	border-radius: 25px !important;
	font-weight: 700 !important;
	padding: 0.5rem 1.3rem !important;
	box-shadow: 0 4px 14px rgba(232,104,26,0.3);
}

	.nav-admit::after {
		display: none !important;
	}

	.nav-admit:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 22px rgba(232,104,26,0.4) !important;
		color: white !important;
	}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

	.hamburger span {
		width: 24px;
		height: 2px;
		background: var(--saffron);
		border-radius: 2px;
		display: block;
		transition: 0.3s;
	}

/* MOBILE MENU */
.mob-menu {
	display: none;
	position: fixed;
	top: 74px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(20px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	z-index: 999;
}

	.mob-menu.open {
		display: flex;
	}

	.mob-menu a {
		color: var(--maroon);
		font-size: 1.3rem;
		text-decoration: none;
		font-weight: 700;
		transition: color 0.2s;
	}

		.mob-menu a:hover {
			color: var(--saffron);
		}

/* ===== HERO SLIDER ===== */
.hero {
	position: relative;
	height: 100vh;
	min-height: 620px;
	overflow: hidden;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
	display: flex;
	align-items: flex-end;
}

	.slide.active {
		opacity: 1;
	}

.slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.06);
	transition: transform 9s ease;
}

.slide.active .slide-bg {
	transform: scale(1);
}

.slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26,6,6,0.88) 0%, rgba(26,6,6,0.4) 50%, rgba(26,6,6,0.1) 100%);
}

.slide-body {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem 5.5rem;
}

.s-badge {
	display: inline-block;
	background: linear-gradient(135deg,var(--gold),var(--gold-light));
	color: var(--maroon);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 0.32rem 1rem;
	border-radius: 20px;
	margin-bottom: 1.1rem;
	opacity: 0;
	transform: translateY(16px);
	transition: all 0.8s ease 0.3s;
}

.slide.active .s-badge {
	opacity: 1;
	transform: translateY(0);
}

.s-title {
	font-family: 'Playfair Display',serif;
	font-size: clamp(2.5rem,5vw,4.6rem);
	font-weight: 900;
	color: white;
	line-height: 1.08;
	max-width: 700px;
	margin-bottom: 1.1rem;
	opacity: 0;
	transform: translateY(26px);
	transition: all 0.85s ease 0.5s;
}

.slide.active .s-title {
	opacity: 1;
	transform: translateY(0);
}

.s-title em {
	font-style: italic;
	color: var(--gold-light);
}

.s-desc {
	font-size: 1rem;
	color: rgba(255,255,255,0.8);
	max-width: 490px;
	line-height: 1.72;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(16px);
	transition: all 0.85s ease 0.7s;
}

.slide.active .s-desc {
	opacity: 1;
	transform: translateY(0);
}

.s-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(16px);
	transition: all 0.85s ease 0.9s;
}

.slide.active .s-btns {
	opacity: 1;
	transform: translateY(0);
}

.btn-saffron {
	background: linear-gradient(135deg,var(--saffron),var(--saffron-dark));
	color: white;
	padding: 0.88rem 1.9rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.92rem;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 6px 20px rgba(232,104,26,0.4);
}

	.btn-saffron:hover {
		transform: translateY(-3px);
		box-shadow: 0 14px 30px rgba(232,104,26,0.45);
	}

.btn-outline {
	border: 2px solid rgba(255,255,255,0.5);
	color: white;
	padding: 0.88rem 1.9rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
	transition: all 0.3s;
	backdrop-filter: blur(8px);
}

	.btn-outline:hover {
		border-color: var(--gold-light);
		color: var(--gold-light);
		transform: translateY(-3px);
	}

.s-arrows {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 1.2rem;
	transform: translateY(-50%);
	z-index: 10;
	pointer-events: none;
}

.s-arr {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.25);
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.s-arr:hover {
		background: var(--saffron);
		border-color: var(--saffron);
	}

.s-dots {
	position: absolute;
	bottom: 2.2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 0.55rem;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.35);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

	.dot.active {
		background: var(--gold-light);
		transform: scale(1.4);
	}

.scroll-hint {
	position: absolute;
	bottom: 2rem;
	right: 2.5rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	animation: bob 2.2s ease infinite;
}

	.scroll-hint span {
		font-size: 0.6rem;
		letter-spacing: 3px;
		text-transform: uppercase;
		color: rgba(255,255,255,0.4);
	}

.scroll-hint-line {
	width: 1px;
	height: 44px;
	background: linear-gradient(to bottom,rgba(255,255,255,0.4),transparent);
}

@keyframes bob {
	0%,100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(7px)
	}
}

/* ===== NOTICE TICKER ===== */
.ticker {
	background: linear-gradient(90deg,var(--maroon),#a02828);
	color: white;
	padding: 0.6rem 0;
	overflow: hidden;
	position: relative;
}

.ticker-label {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	background: var(--saffron);
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	white-space: nowrap;
}

.ticker-wrap {
	margin-left: 160px;
	overflow: hidden;
}

.ticker-track {
	display: flex;
	gap: 4rem;
	animation: ticker-scroll 28s linear infinite;
	width: max-content;
}

	.ticker-track span {
		white-space: nowrap;
		font-size: 0.8rem;
		color: rgba(255,255,255,0.85);
	}

		.ticker-track span::before {
			content: '✦';
			color: var(--gold-light);
			margin-right: 0.8rem;
		}

@keyframes ticker-scroll {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

/* ===== STATS ===== */
.stats {
	background: var(--maroon);
	padding: 2.2rem 0;
}

.stats-grid {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1.5rem;
}

.stat {
	text-align: center;
	padding: 1rem;
	border-right: 1px solid rgba(255,255,255,0.1);
	transition: transform 0.3s;
}

	.stat:last-child {
		border-right: none;
	}

	.stat:hover {
		transform: translateY(-4px);
	}

.snum {
	font-family: 'Bebas Neue';
	font-size: 2.8rem;
	color: var(--gold-light);
	display: block;
	line-height: 1;
}

.slbl {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.55);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 0.3rem;
}

/* ===== SECTION HELPERS ===== */
.wrap {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
}

.stag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--saffron);
	margin-bottom: 0.6rem;
	display: block;
}

.sh {
	font-family: 'Playfair Display',serif;
	font-size: clamp(1.9rem,3.5vw,2.75rem);
	font-weight: 900;
	line-height: 1.15;
}

	.sh em {
		font-style: italic;
		color: var(--saffron);
	}

.ss {
	font-size: 0.98rem;
	color: var(--gray);
	line-height: 1.78;
	margin-top: 0.8rem;
	max-width: 540px;
}

section {
	padding: 5.5rem 0;
}

/* REVEAL */
.rv {
	opacity: 0;
	transform: translateY(32px);
	transition: all 0.72s ease;
}

	.rv.in {
		opacity: 1;
		transform: translateY(0);
	}

.d1 {
	transition-delay: 0.1s
}

.d2 {
	transition-delay: 0.2s
}

.d3 {
	transition-delay: 0.3s
}

.d4 {
	transition-delay: 0.4s
}

/* ===== ABOUT ===== */
.about {
	background: var(--cream);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.about-imgwrap {
	position: relative;
}

.about-main {
	width: 100%;
	height: 490px;
	object-fit: contain;
	border-radius: 20px;
	display: block;
	box-shadow: 0 28px 70px rgba(123,28,28,0.14);
	transition: transform 0.4s;
	background: linear-gradient(160deg,#fff8f0 0%,#fde8cc 100%);
	padding: 10px;
}

	.about-main:hover {
		transform: scale(1.02);
	}

.about-sm {
	position: absolute;
	bottom: -26px;
	right: -26px;
	width: 170px;
	height: 135px;
	object-fit: cover;
	border-radius: 14px;
	border: 4px solid white;
	box-shadow: 0 14px 40px rgba(123,28,28,0.18);
	transition: transform 0.4s;
}

	.about-sm:hover {
		transform: scale(1.06) rotate(-2deg);
	}

.about-badge {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 108px;
	height: 108px;
	border-radius: 50%;
	background: linear-gradient(135deg,var(--saffron),var(--gold));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	box-shadow: 0 10px 28px rgba(232,104,26,0.4);
}

	.about-badge strong {
		font-family: 'Bebas Neue';
		font-size: 2rem;
		line-height: 1;
	}

	.about-badge span {
		font-size: 0.55rem;
		font-weight: 800;
		letter-spacing: 1.5px;
		text-transform: uppercase;
	}

.feat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem;
}

.feat {
	background: white;
	border-radius: 13px;
	overflow: hidden;
	border: 1px solid rgba(232,104,26,0.12);
	transition: all 0.3s;
	cursor: default;
}

	.feat:hover {
		border-color: var(--saffron);
		transform: translateY(-4px);
		box-shadow: 0 12px 32px rgba(232,104,26,0.1);
	}

.feat-img {
	width: 100%;
	height: 78px;
	object-fit: cover;
	display: block;
}

.feat-body {
	padding: 0.8rem 1rem;
}

	.feat-body h4 {
		font-size: 0.86rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 0.2rem;
	}

	.feat-body p {
		font-size: 0.76rem;
		color: var(--gray);
		line-height: 1.5;
	}

/* ===== PROGRAMS ===== */
.programs {
	background: white;
}

.prg-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.prg-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.5rem;
}

.prg-card {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	height: 330px;
	cursor: pointer;
	transition: all 0.4s;
}

	.prg-card:hover {
		transform: translateY(-9px);
		box-shadow: 0 28px 65px rgba(123,28,28,0.2);
	}

.prg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.prg-card:hover .prg-img {
	transform: scale(1.08);
}

.prg-ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,rgba(26,6,6,0.93) 0%,rgba(26,6,6,0.15) 65%);
}

.prg-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.7rem;
	z-index: 2;
}

.prg-tag {
	display: inline-block;
	background: rgba(232,104,26,0.25);
	border: 1px solid rgba(232,104,26,0.45);
	color: var(--saffron-light);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0.22rem 0.7rem;
	border-radius: 20px;
	margin-bottom: 0.7rem;
	transition: all 0.3s;
}

.prg-card:hover .prg-tag {
	background: var(--saffron);
	color: white;
}

.prg-body h3 {
	font-family: 'Playfair Display',serif;
	font-size: 1.2rem;
	color: white;
	margin-bottom: 0.4rem;
	line-height: 1.3;
}

.prg-body p {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.62);
	line-height: 1.6;
	margin-bottom: 0.85rem;
}

.prg-lnk {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--gold-light);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.3s;
}

.prg-card:hover .prg-lnk {
	gap: 10px;
}

/* SECTION HEADER STYLES (same as original) */
.fac-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.stag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--saffron);
	margin-bottom: 0.6rem;
	display: block;
}

.sh {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.9rem, 3.5vw, 2.75rem);
	font-weight: 900;
	line-height: 1.15;
}

	.sh em {
		font-style: italic;
		color: var(--saffron);
	}

.ss {
	font-size: 0.98rem;
	color: var(--gray);
	line-height: 1.78;
	margin-top: 0.8rem;
}

.fac-head .ss {
	margin: 0.7rem auto 0;
	text-align: center;
}
/* ----- HORIZONTAL SCROLL ROW (AUTO SCROLL) ----- */
.facilities {
	background: var(--cream);
	padding: 5rem 0;
	overflow-x: clip; /* prevent global scroll weirdness */
}

/* Scroll container: horizontal carousel with smooth auto-scroll */
.fac-grid-scroll {
	width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	scroll-behavior: smooth;
	cursor: grab;
	scrollbar-width: thin;
	scrollbar-color: var(--saffron) var(--cream);
	padding-bottom: 1rem;
}

	.fac-grid-scroll::-webkit-scrollbar {
		height: 6px;
	}

	.fac-grid-scroll::-webkit-scrollbar-track {
		background: #f0e4d4;
		border-radius: 10px;
	}

	.fac-grid-scroll::-webkit-scrollbar-thumb {
		background: var(--saffron);
		border-radius: 10px;
	}

/* Flex row – all cards in one line, no wrapping */
.fac-row {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	padding: 0.5rem 0.5rem 1rem 0.5rem;
	width: max-content;
}

/* Faculty card (same style as original .fac-card) */
.fac-card {
	flex: 0 0 auto;
	width: 260px;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(123, 28, 28, 0.06);
	transition: all 0.4s ease;
	cursor: pointer;
}

	.fac-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 22px 55px rgba(123, 28, 28, 0.12);
	}

.fac-img-wrap {
	height: 260px;
	overflow: hidden;
	position: relative;
	background: #f2e8da;
}

	.fac-img-wrap img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
		display: block;
	}

.fac-card:hover .fac-img-wrap img {
	transform: scale(1.07);
}

.fac-info {
	padding: 1.4rem;
	text-align: center;
}

	.fac-info h4 {
		font-family: 'Playfair Display', serif;
		font-size: 1.1rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 0.4rem;
	}

	.fac-info p {
		font-size: 0.85rem;
		color: var(--gray);
		line-height: 1.45;
		margin-bottom: 0;
	}

/* animation for initial reveal (rv class) */
.rv {
	opacity: 0;
	transform: translateY(32px);
	transition: all 0.72s ease;
}

	.rv.in {
		opacity: 1;
		transform: translateY(0);
	}

/* Navigation buttons (optional but nice for manual override) */
.scroll-nav {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}

.scroll-btn {
	background: var(--saffron-pale);
	border: 1px solid var(--saffron);
	color: var(--saffron);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.2s;
}

	.scroll-btn:hover {
		background: var(--saffron);
		color: white;
		border-color: var(--saffron);
		transform: scale(1.05);
	}

/* Responsive: on smaller screens the row remains scrollable */
@media (max-width: 768px) {
	.fac-row {
		gap: 1rem;
	}

	.fac-card {
		width: 230px;
	}

	.fac-img-wrap {
		height: 230px;
	}

	.wrap {
		padding: 0 1.2rem;
	}

	.scroll-nav {
		margin-bottom: 1rem;
	}
}

@media (max-width: 560px) {
	.fac-card {
		width: 210px;
	}

	.fac-img-wrap {
		height: 210px;
	}

	.fac-info h4 {
		font-size: 1rem;
	}

	.fac-info p {
		font-size: 0.78rem;
	}
}

/* drag-scroll active (to prevent accidental text selection while grabbing) */
.fac-grid-scroll.dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	user-select: none;
}

/* ===== GALLERY ===== */
.gallery {
	background: var(--maroon);
	padding: 5rem 0;
}

	.gallery .sh {
		color: white;
	}

	.gallery .stag {
		color: var(--gold-light);
	}

.gallery-head {
	text-align: center;
	margin-bottom: 3rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-template-rows: 200px 200px;
	gap: 1rem;
}

.g-item {
	border-radius: 13px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

	.g-item:first-child {
		grid-column: 1/3;
		grid-row: 1/3;
	}

	.g-item:nth-child(2) {
		grid-column: 3;
		grid-row: 1;
	}

	.g-item:nth-child(3) {
		grid-column: 4;
		grid-row: 1;
	}

	.g-item:nth-child(4) {
		grid-column: 3;
		grid-row: 2;
	}

	.g-item:nth-child(5) {
		grid-column: 4;
		grid-row: 2;
	}

	.g-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

	.g-item:hover img {
		transform: scale(1.1);
	}

.g-cap {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,rgba(123,28,28,0.8),transparent 55%);
	opacity: 0;
	transition: opacity 0.35s;
	display: flex;
	align-items: flex-end;
	padding: 1rem;
}

.g-item:hover .g-cap {
	opacity: 1;
}

.g-cap span {
	color: white;
	font-size: 0.82rem;
	font-weight: 600;
}

/* ===== FACULTY ===== */
.faculty {
	background: white;
}

.fac-t-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1.4rem;
	margin-top: 3rem;
}

.ft-card {
	background: var(--cream);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s;
}

	.ft-card:hover {
		transform: translateY(-9px);
		box-shadow: 0 22px 55px rgba(123,28,28,0.1);
	}

.ft-img {
	height: 240px;
	overflow: hidden;
	position: relative;
}

	.ft-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

.ft-card:hover .ft-img img {
	transform: scale(1.07);
}

.ft-ov {
	position: absolute;
	inset: 0;
	background: rgba(123,28,28,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	opacity: 0;
	transition: opacity 0.35s;
}

.ft-card:hover .ft-ov {
	opacity: 1;
}

.ft-soc {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--saffron);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.3s;
}

	.ft-soc:hover {
		transform: scale(1.2);
	}

.ft-info {
	padding: 1.2rem;
	text-align: center;
}

	.ft-info h4 {
		font-family: 'Playfair Display',serif;
		font-size: 1rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 0.22rem;
	}

.ft-role {
	font-size: 0.7rem;
	color: var(--saffron);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.ft-dept {
	font-size: 0.78rem;
	color: var(--gray);
	margin-top: 0.2rem;
}

/* ===== ADMISSIONS ===== */
.admissions {
	background: linear-gradient(135deg,var(--maroon) 0%,#a02828 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

	.admissions::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");
	}

	.admissions .sh {
		color: white;
	}

.adm-desc {
	font-size: 1rem;
	color: rgba(255,255,255,0.65);
	max-width: 580px;
	margin: 0.8rem auto 3rem;
	line-height: 1.75;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1.4rem;
	position: relative;
}

	.steps::before {
		content: '';
		position: absolute;
		top: 31px;
		left: 12.5%;
		right: 12.5%;
		height: 1.5px;
		background: rgba(212,160,23,0.3);
	}

.step-c {
	text-align: center;
	position: relative;
	z-index: 1;
	transition: transform 0.3s;
}

	.step-c:hover {
		transform: translateY(-7px);
	}

.step-num {
	width: 62px;
	height: 62px;
	background: linear-gradient(135deg,var(--gold),var(--gold-light));
	color: var(--maroon);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Bebas Neue';
	font-size: 1.7rem;
	margin: 0 auto 1rem;
	box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}

.step-c h4 {
	font-size: 0.94rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.4rem;
}

.step-c p {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.55);
	line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testi {
	background: var(--saffron-pale);
	overflow: hidden;
}

.testi-head {
	text-align: center;
	margin-bottom: 2.8rem;
}

	.testi-head .ss {
		margin: 0.7rem auto 0;
		text-align: center;
	}

.testi-track {
	display: flex;
	gap: 1.4rem;
	animation: scrolll 38s linear infinite;
	width: max-content;
}

	.testi-track:hover {
		animation-play-state: paused;
	}

@keyframes scrolll {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

.tc {
	background: white;
	border: 1px solid rgba(232,104,26,0.12);
	border-radius: 16px;
	padding: 1.8rem;
	width: 340px;
	flex-shrink: 0;
	transition: all 0.3s;
	cursor: default;
}

	.tc:hover {
		border-color: var(--saffron);
		transform: translateY(-4px);
		box-shadow: 0 14px 36px rgba(232,104,26,0.1);
	}

.stars {
	color: var(--gold);
	font-size: 0.9rem;
	margin-bottom: 0.9rem;
	letter-spacing: 2px;
}

.ttext {
	font-size: 0.88rem;
	color: var(--navy);
	line-height: 1.74;
	font-style: italic;
	font-family: 'Playfair Display',serif;
	margin-bottom: 1.3rem;
}

.tauth {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.tavatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--saffron);
	display: block;
}

.tname {
	font-weight: 700;
	font-size: 0.86rem;
	color: var(--maroon);
}

.tmeta {
	font-size: 0.72rem;
	color: var(--gray);
}

/* ===== EVENTS ===== */
.events {
	background: white;
}

.ev-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.ev-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
}

.ev-card {
	background: var(--cream);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	border: 1px solid rgba(232,104,26,0.1);
	transition: all 0.3s;
}

	.ev-card:hover {
		border-color: var(--saffron);
		transform: translateX(7px);
		box-shadow: 0 10px 26px rgba(232,104,26,0.1);
	}

.ev-img {
	width: 115px;
	flex-shrink: 0;
	overflow: hidden;
}

	.ev-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

.ev-card:hover .ev-img img {
	transform: scale(1.08);
}

.ev-body {
	padding: 1.3rem;
	flex: 1;
}

.ev-date {
	display: inline-block;
	background: rgba(123,28,28,0.08);
	color: var(--maroon);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 0.25rem 0.7rem;
	border-radius: 20px;
	margin-bottom: 0.55rem;
}

.ev-body h4 {
	font-size: 0.96rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 0.3rem;
}

.ev-body p {
	font-size: 0.79rem;
	color: var(--gray);
	line-height: 1.6;
}

.ev-type {
	display: inline-block;
	margin-top: 0.6rem;
	background: rgba(232,104,26,0.1);
	color: var(--saffron);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0.2rem 0.7rem;
	border-radius: 20px;
}

/* ===== NEWS ===== */
.news {
	background: var(--cream);
}

.news-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.6rem;
}

.nc {
	border-radius: 14px;
	overflow: hidden;
	background: white;
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.4s;
	cursor: pointer;
}

	.nc:hover {
		transform: translateY(-9px);
		box-shadow: 0 22px 55px rgba(123,28,28,0.1);
	}

.nc-img {
	height: 195px;
	overflow: hidden;
	position: relative;
}

	.nc-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

.nc:hover .nc-img img {
	transform: scale(1.07);
}

.nc-cat {
	position: absolute;
	top: 0.9rem;
	left: 0.9rem;
	background: var(--saffron);
	color: white;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0.22rem 0.7rem;
	border-radius: 20px;
}

.nc-body {
	padding: 1.4rem;
}

.nc-date {
	font-size: 0.74rem;
	color: var(--gray);
	margin-bottom: 0.5rem;
}

.nc-body h4 {
	font-family: 'Playfair Display',serif;
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 0.55rem;
	line-height: 1.4;
}

.nc-body p {
	font-size: 0.8rem;
	color: var(--gray);
	line-height: 1.62;
}

.readmore {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--saffron);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
	margin-top: 0.85rem;
	transition: gap 0.3s;
}

.nc:hover .readmore {
	gap: 10px;
}

/* ===== CONTACT ===== */
.contact {
	background: white;
}

.con-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 4.5rem;
	align-items: start;
}

.con-info h3 {
	font-family: 'Playfair Display',serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 1rem;
}

.con-info p {
	font-size: 0.94rem;
	color: var(--gray);
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.cdet {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--cream);
	border-radius: 11px;
	border: 1px solid rgba(232,104,26,0.1);
	transition: all 0.3s;
}

	.cdet:hover {
		border-color: var(--saffron);
		transform: translateX(5px);
	}

.cdet-ico {
	width: 42px;
	height: 42px;
	border-radius: 9px;
	background: var(--maroon);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.cdet strong {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 0.15rem;
}

.cdet span {
	font-size: 0.79rem;
	color: var(--gray);
}

.con-map {
	width: 100%;
	height: 200px;
	border-radius: 13px;
	overflow: hidden;
	margin-top: 1.4rem;
	border: 3px solid var(--saffron-pale);
}

	.con-map img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.4s;
	}

	.con-map:hover img {
		transform: scale(1.05);
	}

.cform {
	background: var(--cream);
	border-radius: 18px;
	padding: 2.4rem;
	box-shadow: 0 18px 55px rgba(123,28,28,0.07);
	border: 1px solid rgba(232,104,26,0.12);
}

	.cform h3 {
		font-family: 'Playfair Display',serif;
		font-size: 1.35rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 1.6rem;
	}

.frow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.fg {
	margin-bottom: 1rem;
}

	.fg label {
		display: block;
		font-size: 0.78rem;
		font-weight: 600;
		color: var(--maroon);
		margin-bottom: 0.4rem;
		letter-spacing: 0.3px;
	}

	.fg input, .fg select, .fg textarea {
		width: 100%;
		padding: 0.8rem 1rem;
		border: 1.5px solid rgba(123,28,28,0.12);
		border-radius: 9px;
		font-family: 'DM Sans',sans-serif;
		font-size: 0.88rem;
		color: var(--navy);
		background: white;
		outline: none;
		transition: all 0.3s;
	}

		.fg input:focus, .fg select:focus, .fg textarea:focus {
			border-color: var(--saffron);
			box-shadow: 0 0 0 3px rgba(232,104,26,0.1);
		}

	.fg textarea {
		resize: vertical;
		min-height: 100px;
	}

.fsub {
	width: 100%;
	background: linear-gradient(135deg,var(--saffron),var(--saffron-dark));
	color: white;
	border: none;
	padding: 0.95rem;
	border-radius: 10px;
	font-family: 'DM Sans',sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	letter-spacing: 0.3px;
}

	.fsub:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 28px rgba(232,104,26,0.35);
	}

/* ===== FOOTER ===== */
footer {
	background: var(--maroon);
	color: white;
	padding: 4.5rem 0 0;
}

.foot-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
}

.foot-about p {
	font-size: 0.83rem;
	color: rgba(255,255,255,0.5);
	line-height: 1.78;
	margin-top: 1rem;
	max-width: 260px;
}

.foot-soc {
	display: flex;
	gap: 0.65rem;
	margin-top: 1.4rem;
}

.fsoc {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.88rem;
	text-decoration: none;
	transition: all 0.3s;
}

	.fsoc:hover {
		background: var(--saffron);
		border-color: var(--saffron);
		transform: translateY(-3px);
	}

.foot-col h5 {
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 1.1rem;
}

.flinks {
	list-style: none;
}

	.flinks li {
		margin-bottom: 0.65rem;
	}

	.flinks a {
		color: rgba(255,255,255,0.5);
		text-decoration: none;
		font-size: 0.84rem;
		transition: all 0.25s;
		display: flex;
		align-items: center;
		gap: 5px;
	}

		.flinks a:hover {
			color: var(--gold-light);
			padding-left: 5px;
		}

.foot-bot {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 1.5rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.77rem;
	color: rgba(255,255,255,0.38);
}

	.foot-bot a {
		color: var(--gold-light);
		text-decoration: none;
	}

/* UTILITY */
.btn-maroon {
	background: linear-gradient(135deg,var(--maroon),#9a2424);
	color: white;
	padding: 0.82rem 1.8rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 5px 16px rgba(123,28,28,0.3);
}

	.btn-maroon:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 28px rgba(123,28,28,0.38);
	}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
	.prg-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.fac-t-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.fac-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}

	.steps {
		grid-template-columns: repeat(2,1fr);
	}

		.steps::before {
			display: none;
		}
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.about-grid, .con-grid {
		grid-template-columns: 1fr;
	}

	.about-sm {
		display: none;
	}

	.about-badge {
		top: 1rem;
		left: 1rem;
	}

	.prg-grid {
		grid-template-columns: 1fr;
	}

	.ev-grid {
		grid-template-columns: 1fr;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.stat:nth-child(2) {
		border-right: none;
	}

	.foot-grid {
		grid-template-columns: 1fr;
	}

	.frow {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.g-item:first-child {
		grid-column: 1/3;
		grid-row: auto;
		height: 220px;
	}

	.g-item {
		height: 160px;
	}

	.ticker-label {
		display: none;
	}

	.ticker-wrap {
		margin-left: 0;
	}

	.topbar-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media(max-width:500px) {
	.fac-t-grid {
		grid-template-columns: 1fr;
	}

	.steps {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.stat {
		border-right: none;
	}

	.fac-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== RESULTS TABS ===== */
.results-tabs {
	background: var(--cream);
	padding: 5.5rem 0;
}

.tab-nav {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 0.75rem 2rem;
	border-radius: 50px;
	border: 2px solid var(--saffron);
	background: white;
	color: var(--saffron);
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	font-family: 'DM Sans', sans-serif;
}

	.tab-btn:hover, .tab-btn.active {
		background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
		color: white;
		box-shadow: 0 6px 20px rgba(232,104,26,0.35);
		transform: translateY(-2px);
	}

.tab-pane {
	display: none;
}

	.tab-pane.active {
		display: block;
	}

.result-banner-img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(123,28,28,0.15);
	display: block;
	transition: transform 0.4s;
}

	.result-banner-img:hover {
		transform: scale(1.01);
	}
/* ========== NEW RIGHT LOGO (added) ========== */
.right-logo {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
}

.right-logo-img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fdf6ec;
	border: 2px solid #e8681a;
	box-shadow: 0 2px 10px rgba(232, 104, 26, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.right-logo-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.right-logo-img:hover {
		transform: scale(1.03);
		box-shadow: 0 5px 15px rgba(232, 104, 26, 0.3);
	}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans',sans-serif;
	color: var(--navy);
	overflow-x: hidden;
	background: var(--white);
}

:root {
	--saffron: #e8681a;
	--saffron-dark: #c0520e;
	--saffron-light: #f5a354;
	--saffron-pale: #fff4eb;
	--gold: #d4a017;
	--gold-light: #f0c844;
	--maroon: #7b1c1c;
	--cream: #fdf6ec;
	--white: #ffffff;
	--navy: #1a1a2e;
	--gray: #6b7280;
	--green: #2d6a4f;
}


::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: var(--maroon);
}

::-webkit-scrollbar-thumb {
	background: var(--saffron);
	border-radius: 3px;
}



/* ===== NAV ===== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(16px);
	box-shadow: 0 2px 20px rgba(232,104,26,0.1);
	transition: all 0.3s;
}

.nav-inner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	height: 74px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 13px;
	text-decoration: none;
}

.logo-img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--saffron), var(--gold));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	box-shadow: 0 4px 16px rgba(232,104,26,0.35);
	border: 2px solid rgba(212,160,23,0.4);
	overflow: hidden;
}

	.logo-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 50%;
	}

.logo-txt strong {
	display: block;
	font-family: 'Playfair Display',serif;
	font-size: 1.1rem;
	color: var(--maroon);
	line-height: 1.1;
	font-weight: 900;
}

.logo-txt span {
	font-size: 0.68rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--saffron);
	font-weight: 600;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 0.15rem;
	list-style: none;
}

	.nav-links a {
		color: var(--navy);
		text-decoration: none;
		font-size: 0.84rem;
		font-weight: 600;
		padding: 0.45rem 0.85rem;
		border-radius: 6px;
		transition: all 0.25s;
		position: relative;
	}

		.nav-links a::after {
			content: '';
			position: absolute;
			bottom: 2px;
			left: 50%;
			right: 50%;
			height: 2px;
			background: var(--saffron);
			border-radius: 1px;
			transition: all 0.3s;
		}

		.nav-links a:hover {
			color: var(--saffron);
		}

			.nav-links a:hover::after {
				left: 0.85rem;
				right: 0.85rem;
			}

.nav-admit {
	background: linear-gradient(135deg,var(--saffron),var(--saffron-dark)) !important;
	color: white !important;
	border-radius: 25px !important;
	font-weight: 700 !important;
	padding: 0.5rem 1.3rem !important;
	box-shadow: 0 4px 14px rgba(232,104,26,0.3);
}

	.nav-admit::after {
		display: none !important;
	}

	.nav-admit:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 22px rgba(232,104,26,0.4) !important;
		color: white !important;
	}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

	.hamburger span {
		width: 24px;
		height: 2px;
		background: var(--saffron);
		border-radius: 2px;
		display: block;
		transition: 0.3s;
	}

/* MOBILE MENU */
.mob-menu {
	display: none;
	position: fixed;
	top: 74px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(20px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	z-index: 999;
}

	.mob-menu.open {
		display: flex;
	}

	.mob-menu a {
		color: var(--maroon);
		font-size: 1.3rem;
		text-decoration: none;
		font-weight: 700;
		transition: color 0.2s;
	}

		.mob-menu a:hover {
			color: var(--saffron);
		}

/* ===== HERO SLIDER ===== */
.hero {
	position: relative;
	height: 100vh;
	min-height: 620px;
	overflow: hidden;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
	display: flex;
	align-items: flex-end;
}

	.slide.active {
		opacity: 1;
	}

.slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.06);
	transition: transform 9s ease;
}

.slide.active .slide-bg {
	transform: scale(1);
}

.slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26,6,6,0.88) 0%, rgba(26,6,6,0.4) 50%, rgba(26,6,6,0.1) 100%);
}

.slide-body {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem 5.5rem;
}

.s-badge {
	display: inline-block;
	background: linear-gradient(135deg,var(--gold),var(--gold-light));
	color: var(--maroon);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 0.32rem 1rem;
	border-radius: 20px;
	margin-bottom: 1.1rem;
	opacity: 0;
	transform: translateY(16px);
	transition: all 0.8s ease 0.3s;
}

.slide.active .s-badge {
	opacity: 1;
	transform: translateY(0);
}

.s-title {
	font-family: 'Playfair Display',serif;
	font-size: clamp(2.5rem,5vw,4.6rem);
	font-weight: 900;
	color: white;
	line-height: 1.08;
	max-width: 700px;
	margin-bottom: 1.1rem;
	opacity: 0;
	transform: translateY(26px);
	transition: all 0.85s ease 0.5s;
}

.slide.active .s-title {
	opacity: 1;
	transform: translateY(0);
}

.s-title em {
	font-style: italic;
	color: var(--gold-light);
}

.s-desc {
	font-size: 1rem;
	color: rgba(255,255,255,0.8);
	max-width: 490px;
	line-height: 1.72;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(16px);
	transition: all 0.85s ease 0.7s;
}

.slide.active .s-desc {
	opacity: 1;
	transform: translateY(0);
}

.s-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(16px);
	transition: all 0.85s ease 0.9s;
}

.slide.active .s-btns {
	opacity: 1;
	transform: translateY(0);
}

.btn-saffron {
	background: linear-gradient(135deg,var(--saffron),var(--saffron-dark));
	color: white;
	padding: 0.88rem 1.9rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.92rem;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 6px 20px rgba(232,104,26,0.4);
}

	.btn-saffron:hover {
		transform: translateY(-3px);
		box-shadow: 0 14px 30px rgba(232,104,26,0.45);
	}

.btn-outline {
	border: 2px solid rgba(255,255,255,0.5);
	color: white;
	padding: 0.88rem 1.9rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.92rem;
	transition: all 0.3s;
	backdrop-filter: blur(8px);
}

	.btn-outline:hover {
		border-color: var(--gold-light);
		color: var(--gold-light);
		transform: translateY(-3px);
	}

.s-arrows {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 1.2rem;
	transform: translateY(-50%);
	z-index: 10;
	pointer-events: none;
}

.s-arr {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.25);
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.s-arr:hover {
		background: var(--saffron);
		border-color: var(--saffron);
	}

.s-dots {
	position: absolute;
	bottom: 2.2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 0.55rem;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.35);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

	.dot.active {
		background: var(--gold-light);
		transform: scale(1.4);
	}

.scroll-hint {
	position: absolute;
	bottom: 2rem;
	right: 2.5rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	animation: bob 2.2s ease infinite;
}

	.scroll-hint span {
		font-size: 0.6rem;
		letter-spacing: 3px;
		text-transform: uppercase;
		color: rgba(255,255,255,0.4);
	}

.scroll-hint-line {
	width: 1px;
	height: 44px;
	background: linear-gradient(to bottom,rgba(255,255,255,0.4),transparent);
}

@keyframes bob {
	0%,100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(7px)
	}
}

/* ===== NOTICE TICKER ===== */
.ticker {
	background: linear-gradient(90deg,var(--maroon),#a02828);
	color: white;
	padding: 0.6rem 0;
	overflow: hidden;
	position: relative;
}

.ticker-label {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	background: var(--saffron);
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	white-space: nowrap;
}

.ticker-wrap {
	margin-left: 160px;
	overflow: hidden;
}

.ticker-track {
	display: flex;
	gap: 4rem;
	animation: ticker-scroll 28s linear infinite;
	width: max-content;
}

	.ticker-track span {
		white-space: nowrap;
		font-size: 0.8rem;
		color: rgba(255,255,255,0.85);
	}

		.ticker-track span::before {
			content: '✦';
			color: var(--gold-light);
			margin-right: 0.8rem;
		}

@keyframes ticker-scroll {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

/* ===== STATS ===== */
.stats {
	background: var(--maroon);
	padding: 2.2rem 0;
}

.stats-grid {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1.5rem;
}

.stat {
	text-align: center;
	padding: 1rem;
	border-right: 1px solid rgba(255,255,255,0.1);
	transition: transform 0.3s;
}

	.stat:last-child {
		border-right: none;
	}

	.stat:hover {
		transform: translateY(-4px);
	}

.snum {
	font-family: 'Bebas Neue';
	font-size: 2.8rem;
	color: var(--gold-light);
	display: block;
	line-height: 1;
}

.slbl {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.55);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 0.3rem;
}

/* ===== SECTION HELPERS ===== */
.wrap {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 2rem;
}

.stag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--saffron);
	margin-bottom: 0.6rem;
	display: block;
}

.sh {
	font-family: 'Playfair Display',serif;
	font-size: clamp(1.9rem,3.5vw,2.75rem);
	font-weight: 900;
	line-height: 1.15;
}

	.sh em {
		font-style: italic;
		color: var(--saffron);
	}

.ss {
	font-size: 0.98rem;
	color: var(--gray);
	line-height: 1.78;
	margin-top: 0.8rem;
	max-width: 540px;
}

section {
	padding: 5.5rem 0;
}

/* REVEAL */
.rv {
	opacity: 0;
	transform: translateY(32px);
	transition: all 0.72s ease;
}

	.rv.in {
		opacity: 1;
		transform: translateY(0);
	}

.d1 {
	transition-delay: 0.1s
}

.d2 {
	transition-delay: 0.2s
}

.d3 {
	transition-delay: 0.3s
}

.d4 {
	transition-delay: 0.4s
}

/* ===== ABOUT ===== */
.about {
	background: var(--cream);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.about-imgwrap {
	position: relative;
}

.about-main {
	width: 100%;
	height: 490px;
	object-fit: contain;
	border-radius: 20px;
	display: block;
	box-shadow: 0 28px 70px rgba(123,28,28,0.14);
	transition: transform 0.4s;
	background: linear-gradient(160deg,#fff8f0 0%,#fde8cc 100%);
	padding: 10px;
}

	.about-main:hover {
		transform: scale(1.02);
	}

.about-sm {
	position: absolute;
	bottom: -26px;
	right: -26px;
	width: 170px;
	height: 135px;
	object-fit: cover;
	border-radius: 14px;
	border: 4px solid white;
	box-shadow: 0 14px 40px rgba(123,28,28,0.18);
	transition: transform 0.4s;
}

	.about-sm:hover {
		transform: scale(1.06) rotate(-2deg);
	}

.about-badge {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 108px;
	height: 108px;
	border-radius: 50%;
	background: linear-gradient(135deg,var(--saffron),var(--gold));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	box-shadow: 0 10px 28px rgba(232,104,26,0.4);
}

	.about-badge strong {
		font-family: 'Bebas Neue';
		font-size: 2rem;
		line-height: 1;
	}

	.about-badge span {
		font-size: 0.55rem;
		font-weight: 800;
		letter-spacing: 1.5px;
		text-transform: uppercase;
	}

.feat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem;
}

.feat {
	background: white;
	border-radius: 13px;
	overflow: hidden;
	border: 1px solid rgba(232,104,26,0.12);
	transition: all 0.3s;
	cursor: default;
}

	.feat:hover {
		border-color: var(--saffron);
		transform: translateY(-4px);
		box-shadow: 0 12px 32px rgba(232,104,26,0.1);
	}

.feat-img {
	width: 100%;
	height: 78px;
	object-fit: cover;
	display: block;
}

.feat-body {
	padding: 0.8rem 1rem;
}

	.feat-body h4 {
		font-size: 0.86rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 0.2rem;
	}

	.feat-body p {
		font-size: 0.76rem;
		color: var(--gray);
		line-height: 1.5;
	}

/* ===== PROGRAMS ===== */
.programs {
	background: white;
}

.prg-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.prg-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.5rem;
}

.prg-card {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	height: 330px;
	cursor: pointer;
	transition: all 0.4s;
}

	.prg-card:hover {
		transform: translateY(-9px);
		box-shadow: 0 28px 65px rgba(123,28,28,0.2);
	}

.prg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.prg-card:hover .prg-img {
	transform: scale(1.08);
}

.prg-ov {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,rgba(26,6,6,0.93) 0%,rgba(26,6,6,0.15) 65%);
}

.prg-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.7rem;
	z-index: 2;
}

.prg-tag {
	display: inline-block;
	background: rgba(232,104,26,0.25);
	border: 1px solid rgba(232,104,26,0.45);
	color: var(--saffron-light);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0.22rem 0.7rem;
	border-radius: 20px;
	margin-bottom: 0.7rem;
	transition: all 0.3s;
}

.prg-card:hover .prg-tag {
	background: var(--saffron);
	color: white;
}

.prg-body h3 {
	font-family: 'Playfair Display',serif;
	font-size: 1.2rem;
	color: white;
	margin-bottom: 0.4rem;
	line-height: 1.3;
}

.prg-body p {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.62);
	line-height: 1.6;
	margin-bottom: 0.85rem;
}

.prg-lnk {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--gold-light);
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.3s;
}

.prg-card:hover .prg-lnk {
	gap: 10px;
}

/* SECTION HEADER STYLES (same as original) */
.fac-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.stag {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--saffron);
	margin-bottom: 0.6rem;
	display: block;
}

.sh {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.9rem, 3.5vw, 2.75rem);
	font-weight: 900;
	line-height: 1.15;
}

	.sh em {
		font-style: italic;
		color: var(--saffron);
	}

.ss {
	font-size: 0.98rem;
	color: var(--gray);
	line-height: 1.78;
	margin-top: 0.8rem;
}

.fac-head .ss {
	margin: 0.7rem auto 0;
	text-align: center;
}
/* ----- HORIZONTAL SCROLL ROW (AUTO SCROLL) ----- */
.facilities {
	background: var(--cream);
	padding: 5rem 0;
	overflow-x: clip; /* prevent global scroll weirdness */
}

/* Scroll container: horizontal carousel with smooth auto-scroll */
.fac-grid-scroll {
	width: 100%;
	overflow-x: auto;
	overflow-y: visible;
	scroll-behavior: smooth;
	cursor: grab;
	scrollbar-width: thin;
	scrollbar-color: var(--saffron) var(--cream);
	padding-bottom: 1rem;
}

	.fac-grid-scroll::-webkit-scrollbar {
		height: 6px;
	}

	.fac-grid-scroll::-webkit-scrollbar-track {
		background: #f0e4d4;
		border-radius: 10px;
	}

	.fac-grid-scroll::-webkit-scrollbar-thumb {
		background: var(--saffron);
		border-radius: 10px;
	}

/* Flex row – all cards in one line, no wrapping */
.fac-row {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	padding: 0.5rem 0.5rem 1rem 0.5rem;
	width: max-content;
}

/* Faculty card (same style as original .fac-card) */
.fac-card {
	flex: 0 0 auto;
	width: 260px;
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(123, 28, 28, 0.06);
	transition: all 0.4s ease;
	cursor: pointer;
}

	.fac-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 22px 55px rgba(123, 28, 28, 0.12);
	}

.fac-img-wrap {
	height: 260px;
	overflow: hidden;
	position: relative;
	background: #f2e8da;
}

	.fac-img-wrap img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
		display: block;
	}

.fac-card:hover .fac-img-wrap img {
	transform: scale(1.07);
}

.fac-info {
	padding: 1.4rem;
	text-align: center;
}

	.fac-info h4 {
		font-family: 'Playfair Display', serif;
		font-size: 1.1rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 0.4rem;
	}

	.fac-info p {
		font-size: 0.85rem;
		color: var(--gray);
		line-height: 1.45;
		margin-bottom: 0;
	}

/* animation for initial reveal (rv class) */
.rv {
	opacity: 0;
	transform: translateY(32px);
	transition: all 0.72s ease;
}

	.rv.in {
		opacity: 1;
		transform: translateY(0);
	}

/* Navigation buttons (optional but nice for manual override) */
.scroll-nav {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	margin-bottom: 1.5rem;
	margin-top: 0.5rem;
}

.scroll-btn {
	background: var(--saffron-pale);
	border: 1px solid var(--saffron);
	color: var(--saffron);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.2s;
}

	.scroll-btn:hover {
		background: var(--saffron);
		color: white;
		border-color: var(--saffron);
		transform: scale(1.05);
	}

/* Responsive: on smaller screens the row remains scrollable */
@media (max-width: 768px) {
	.fac-row {
		gap: 1rem;
	}

	.fac-card {
		width: 230px;
	}

	.fac-img-wrap {
		height: 230px;
	}

	.wrap {
		padding: 0 1.2rem;
	}

	.scroll-nav {
		margin-bottom: 1rem;
	}
}

@media (max-width: 560px) {
	.fac-card {
		width: 210px;
	}

	.fac-img-wrap {
		height: 210px;
	}

	.fac-info h4 {
		font-size: 1rem;
	}

	.fac-info p {
		font-size: 0.78rem;
	}
}

/* drag-scroll active (to prevent accidental text selection while grabbing) */
.fac-grid-scroll.dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	user-select: none;
}

/* ===== GALLERY ===== */
.gallery {
	background: var(--maroon);
	padding: 5rem 0;
}

	.gallery .sh {
		color: white;
	}

	.gallery .stag {
		color: var(--gold-light);
	}

.gallery-head {
	text-align: center;
	margin-bottom: 3rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-template-rows: 200px 200px;
	gap: 1rem;
}

.g-item {
	border-radius: 13px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

	.g-item:first-child {
		grid-column: 1/3;
		grid-row: 1/3;
	}

	.g-item:nth-child(2) {
		grid-column: 3;
		grid-row: 1;
	}

	.g-item:nth-child(3) {
		grid-column: 4;
		grid-row: 1;
	}

	.g-item:nth-child(4) {
		grid-column: 3;
		grid-row: 2;
	}

	.g-item:nth-child(5) {
		grid-column: 4;
		grid-row: 2;
	}

	.g-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

	.g-item:hover img {
		transform: scale(1.1);
	}

.g-cap {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,rgba(123,28,28,0.8),transparent 55%);
	opacity: 0;
	transition: opacity 0.35s;
	display: flex;
	align-items: flex-end;
	padding: 1rem;
}

.g-item:hover .g-cap {
	opacity: 1;
}

.g-cap span {
	color: white;
	font-size: 0.82rem;
	font-weight: 600;
}

/* ===== FACULTY ===== */
.faculty {
	background: white;
}

.fac-t-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1.4rem;
	margin-top: 3rem;
}

.ft-card {
	background: var(--cream);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s;
}

	.ft-card:hover {
		transform: translateY(-9px);
		box-shadow: 0 22px 55px rgba(123,28,28,0.1);
	}

.ft-img {
	height: 240px;
	overflow: hidden;
	position: relative;
}

	.ft-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

.ft-card:hover .ft-img img {
	transform: scale(1.07);
}

.ft-ov {
	position: absolute;
	inset: 0;
	background: rgba(123,28,28,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	opacity: 0;
	transition: opacity 0.35s;
}

.ft-card:hover .ft-ov {
	opacity: 1;
}

.ft-soc {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--saffron);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.3s;
}

	.ft-soc:hover {
		transform: scale(1.2);
	}

.ft-info {
	padding: 1.2rem;
	text-align: center;
}

	.ft-info h4 {
		font-family: 'Playfair Display',serif;
		font-size: 1rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 0.22rem;
	}

.ft-role {
	font-size: 0.7rem;
	color: var(--saffron);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.ft-dept {
	font-size: 0.78rem;
	color: var(--gray);
	margin-top: 0.2rem;
}

/* ===== ADMISSIONS ===== */
.admissions {
	background: linear-gradient(135deg,var(--maroon) 0%,#a02828 100%);
	color: white;
	text-align: center;
	position: relative;
	overflow: hidden;
}

	.admissions::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");
	}

	.admissions .sh {
		color: white;
	}

.adm-desc {
	font-size: 1rem;
	color: rgba(255,255,255,0.65);
	max-width: 580px;
	margin: 0.8rem auto 3rem;
	line-height: 1.75;
}

.steps {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1.4rem;
	position: relative;
}

	.steps::before {
		content: '';
		position: absolute;
		top: 31px;
		left: 12.5%;
		right: 12.5%;
		height: 1.5px;
		background: rgba(212,160,23,0.3);
	}

.step-c {
	text-align: center;
	position: relative;
	z-index: 1;
	transition: transform 0.3s;
}

	.step-c:hover {
		transform: translateY(-7px);
	}

.step-num {
	width: 62px;
	height: 62px;
	background: linear-gradient(135deg,var(--gold),var(--gold-light));
	color: var(--maroon);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Bebas Neue';
	font-size: 1.7rem;
	margin: 0 auto 1rem;
	box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}

.step-c h4 {
	font-size: 0.94rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.4rem;
}

.step-c p {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.55);
	line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testi {
	background: var(--saffron-pale);
	overflow: hidden;
}

.testi-head {
	text-align: center;
	margin-bottom: 2.8rem;
}

	.testi-head .ss {
		margin: 0.7rem auto 0;
		text-align: center;
	}

.testi-track {
	display: flex;
	gap: 1.4rem;
	animation: scrolll 38s linear infinite;
	width: max-content;
}

	.testi-track:hover {
		animation-play-state: paused;
	}

@keyframes scrolll {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-50%)
	}
}

.tc {
	background: white;
	border: 1px solid rgba(232,104,26,0.12);
	border-radius: 16px;
	padding: 1.8rem;
	width: 340px;
	flex-shrink: 0;
	transition: all 0.3s;
	cursor: default;
}

	.tc:hover {
		border-color: var(--saffron);
		transform: translateY(-4px);
		box-shadow: 0 14px 36px rgba(232,104,26,0.1);
	}

.stars {
	color: var(--gold);
	font-size: 0.9rem;
	margin-bottom: 0.9rem;
	letter-spacing: 2px;
}

.ttext {
	font-size: 0.88rem;
	color: var(--navy);
	line-height: 1.74;
	font-style: italic;
	font-family: 'Playfair Display',serif;
	margin-bottom: 1.3rem;
}

.tauth {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.tavatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--saffron);
	display: block;
}

.tname {
	font-weight: 700;
	font-size: 0.86rem;
	color: var(--maroon);
}

.tmeta {
	font-size: 0.72rem;
	color: var(--gray);
}

/* ===== EVENTS ===== */
.events {
	background: white;
}

.ev-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.ev-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
}

.ev-card {
	background: var(--cream);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	border: 1px solid rgba(232,104,26,0.1);
	transition: all 0.3s;
}

	.ev-card:hover {
		border-color: var(--saffron);
		transform: translateX(7px);
		box-shadow: 0 10px 26px rgba(232,104,26,0.1);
	}

.ev-img {
	width: 115px;
	flex-shrink: 0;
	overflow: hidden;
}

	.ev-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

.ev-card:hover .ev-img img {
	transform: scale(1.08);
}

.ev-body {
	padding: 1.3rem;
	flex: 1;
}

.ev-date {
	display: inline-block;
	background: rgba(123,28,28,0.08);
	color: var(--maroon);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 0.25rem 0.7rem;
	border-radius: 20px;
	margin-bottom: 0.55rem;
}

.ev-body h4 {
	font-size: 0.96rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 0.3rem;
}

.ev-body p {
	font-size: 0.79rem;
	color: var(--gray);
	line-height: 1.6;
}

.ev-type {
	display: inline-block;
	margin-top: 0.6rem;
	background: rgba(232,104,26,0.1);
	color: var(--saffron);
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0.2rem 0.7rem;
	border-radius: 20px;
}

/* ===== NEWS ===== */
.news {
	background: var(--cream);
}

.news-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.6rem;
}

.nc {
	border-radius: 14px;
	overflow: hidden;
	background: white;
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.4s;
	cursor: pointer;
}

	.nc:hover {
		transform: translateY(-9px);
		box-shadow: 0 22px 55px rgba(123,28,28,0.1);
	}

.nc-img {
	height: 195px;
	overflow: hidden;
	position: relative;
}

	.nc-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s;
		display: block;
	}

.nc:hover .nc-img img {
	transform: scale(1.07);
}

.nc-cat {
	position: absolute;
	top: 0.9rem;
	left: 0.9rem;
	background: var(--saffron);
	color: white;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0.22rem 0.7rem;
	border-radius: 20px;
}

.nc-body {
	padding: 1.4rem;
}

.nc-date {
	font-size: 0.74rem;
	color: var(--gray);
	margin-bottom: 0.5rem;
}

.nc-body h4 {
	font-family: 'Playfair Display',serif;
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 0.55rem;
	line-height: 1.4;
}

.nc-body p {
	font-size: 0.8rem;
	color: var(--gray);
	line-height: 1.62;
}

.readmore {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--saffron);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
	margin-top: 0.85rem;
	transition: gap 0.3s;
}

.nc:hover .readmore {
	gap: 10px;
}

/* ===== CONTACT ===== */
.contact {
	background: white;
}

.con-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 4.5rem;
	align-items: start;
}

.con-info h3 {
	font-family: 'Playfair Display',serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 1rem;
}

.con-info p {
	font-size: 0.94rem;
	color: var(--gray);
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.cdet {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--cream);
	border-radius: 11px;
	border: 1px solid rgba(232,104,26,0.1);
	transition: all 0.3s;
}

	.cdet:hover {
		border-color: var(--saffron);
		transform: translateX(5px);
	}

.cdet-ico {
	width: 42px;
	height: 42px;
	border-radius: 9px;
	background: var(--maroon);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.cdet strong {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 0.15rem;
}

.cdet span {
	font-size: 0.79rem;
	color: var(--gray);
}

.con-map {
	width: 100%;
	height: 200px;
	border-radius: 13px;
	overflow: hidden;
	margin-top: 1.4rem;
	border: 3px solid var(--saffron-pale);
}

	.con-map img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.4s;
	}

	.con-map:hover img {
		transform: scale(1.05);
	}

.cform {
	background: var(--cream);
	border-radius: 18px;
	padding: 2.4rem;
	box-shadow: 0 18px 55px rgba(123,28,28,0.07);
	border: 1px solid rgba(232,104,26,0.12);
}

	.cform h3 {
		font-family: 'Playfair Display',serif;
		font-size: 1.35rem;
		font-weight: 700;
		color: var(--maroon);
		margin-bottom: 1.6rem;
	}

.frow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

.fg {
	margin-bottom: 1rem;
}

	.fg label {
		display: block;
		font-size: 0.78rem;
		font-weight: 600;
		color: var(--maroon);
		margin-bottom: 0.4rem;
		letter-spacing: 0.3px;
	}

	.fg input, .fg select, .fg textarea {
		width: 100%;
		padding: 0.8rem 1rem;
		border: 1.5px solid rgba(123,28,28,0.12);
		border-radius: 9px;
		font-family: 'DM Sans',sans-serif;
		font-size: 0.88rem;
		color: var(--navy);
		background: white;
		outline: none;
		transition: all 0.3s;
	}

		.fg input:focus, .fg select:focus, .fg textarea:focus {
			border-color: var(--saffron);
			box-shadow: 0 0 0 3px rgba(232,104,26,0.1);
		}

	.fg textarea {
		resize: vertical;
		min-height: 100px;
	}

.fsub {
	width: 100%;
	background: linear-gradient(135deg,var(--saffron),var(--saffron-dark));
	color: white;
	border: none;
	padding: 0.95rem;
	border-radius: 10px;
	font-family: 'DM Sans',sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	letter-spacing: 0.3px;
}

	.fsub:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 28px rgba(232,104,26,0.35);
	}

/* ===== FOOTER ===== */
footer {
	background: var(--maroon);
	color: white;
	padding: 4.5rem 0 0;
}

.foot-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
}

.foot-about p {
	font-size: 0.83rem;
	color: rgba(255,255,255,0.5);
	line-height: 1.78;
	margin-top: 1rem;
	max-width: 260px;
}

.foot-soc {
	display: flex;
	gap: 0.65rem;
	margin-top: 1.4rem;
}

.fsoc {
	width: 38px;
	height: 38px;
	border-radius: 9px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.88rem;
	text-decoration: none;
	transition: all 0.3s;
}

	.fsoc:hover {
		background: var(--saffron);
		border-color: var(--saffron);
		transform: translateY(-3px);
	}

.foot-col h5 {
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 1.1rem;
}

.flinks {
	list-style: none;
}

	.flinks li {
		margin-bottom: 0.65rem;
	}

	.flinks a {
		color: rgba(255,255,255,0.5);
		text-decoration: none;
		font-size: 0.84rem;
		transition: all 0.25s;
		display: flex;
		align-items: center;
		gap: 5px;
	}

		.flinks a:hover {
			color: var(--gold-light);
			padding-left: 5px;
		}

.foot-bot {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 1.5rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.77rem;
	color: rgba(255,255,255,0.38);
}

	.foot-bot a {
		color: var(--gold-light);
		text-decoration: none;
	}

/* UTILITY */
.btn-maroon {
	background: linear-gradient(135deg,var(--maroon),#9a2424);
	color: white;
	padding: 0.82rem 1.8rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	box-shadow: 0 5px 16px rgba(123,28,28,0.3);
}

	.btn-maroon:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 28px rgba(123,28,28,0.38);
	}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
	.prg-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.fac-t-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.fac-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}

	.steps {
		grid-template-columns: repeat(2,1fr);
	}

		.steps::before {
			display: none;
		}
}

@media(max-width:768px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.about-grid, .con-grid {
		grid-template-columns: 1fr;
	}

	.about-sm {
		display: none;
	}

	.about-badge {
		top: 1rem;
		left: 1rem;
	}

	.prg-grid {
		grid-template-columns: 1fr;
	}

	.ev-grid {
		grid-template-columns: 1fr;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.stat:nth-child(2) {
		border-right: none;
	}

	.foot-grid {
		grid-template-columns: 1fr;
	}

	.frow {
		grid-template-columns: 1fr;
	}

	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.g-item:first-child {
		grid-column: 1/3;
		grid-row: auto;
		height: 220px;
	}

	.g-item {
		height: 160px;
	}

	.ticker-label {
		display: none;
	}

	.ticker-wrap {
		margin-left: 0;
	}

	.topbar-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media(max-width:500px) {
	.fac-t-grid {
		grid-template-columns: 1fr;
	}

	.steps {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.stat {
		border-right: none;
	}

	.fac-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== RESULTS TABS ===== */
.results-tabs {
	background: var(--cream);
	padding: 5.5rem 0;
}

.tab-nav {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.tab-btn {
	padding: 0.75rem 2rem;
	border-radius: 50px;
	border: 2px solid var(--saffron);
	background: white;
	color: var(--saffron);
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	font-family: 'DM Sans', sans-serif;
}

	.tab-btn:hover, .tab-btn.active {
		background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
		color: white;
		box-shadow: 0 6px 20px rgba(232,104,26,0.35);
		transform: translateY(-2px);
	}

.tab-pane {
	display: none;
}

	.tab-pane.active {
		display: block;
	}

.result-banner-img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(123,28,28,0.15);
	display: block;
	transition: transform 0.4s;
}

	.result-banner-img:hover {
		transform: scale(1.01);
	}
/* ========== NEW RIGHT LOGO (added) ========== */
.right-logo {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
}

.right-logo-img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fdf6ec;
	border: 2px solid #e8681a;
	box-shadow: 0 2px 10px rgba(232, 104, 26, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.right-logo-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.right-logo-img:hover {
		transform: scale(1.03);
		box-shadow: 0 5px 15px rgba(232, 104, 26, 0.3);
	}

/* ========== NEW: FAQ SECTION ========== */
.faq-section {
	background: white;
	padding: 5rem 1.5rem;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.stag {
	display: inline-block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	color: var(--saffron);
	background: rgba(232, 104, 26, 0.08);
	padding: 0.3rem 1rem;
	border-radius: 40px;
	margin-bottom: 1rem;
}

.sh {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--maroon);
	margin-bottom: 0.75rem;
}

	.sh em {
		font-style: normal;
		color: var(--saffron);
		border-bottom: 2px solid var(--saffron);
		display: inline-block;
		padding-bottom: 2px;
	}

.ss {
	color: var(--gray);
	font-size: 1rem;
	line-height: 1.5;
	opacity: 0.85;
}

/* FAQ grid / list */
.faq-grid {
	max-width: 1000px;
	margin: 2.5rem auto 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: var(--cream);
	border-radius: 20px;
	border: 1px solid var(--soft-border);
	overflow: hidden;
	transition: all 0.25s ease;
}

	.faq-item:hover {
		border-color: var(--saffron);
		box-shadow: 0 8px 20px rgba(232, 104, 26, 0.08);
	}

.faq-question {
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	padding: 1.4rem 2rem;
	font-family: 'DM Sans', 'Inter', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--maroon);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
}

	.faq-question span:first-child {
		flex: 1;
		padding-right: 1rem;
	}

.faq-icon {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--saffron);
	transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	display: inline-block;
	line-height: 1;
}

/* Rotate plus sign to multiplication when active */
.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	padding: 0 2rem;
	overflow: hidden;
	transition: max-height 0.45s ease-in-out, padding 0.35s ease;
	background: white;
	border-top: 1px solid rgba(232, 104, 26, 0.08);
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.65;
}

.faq-item.active .faq-answer {
	max-height: 380px; /* enough space for longer answers */
	padding: 1.2rem 2rem 1.6rem;
}

/* subtle focus ring for accessibility */
.faq-question:focus-visible {
	outline: 2px solid var(--saffron);
	outline-offset: -2px;
	border-radius: 20px;
}

/* responsive touch */
@media (max-width: 680px) {
	.faq-section {
		padding: 3rem 1rem;
	}

	.faq-question {
		padding: 1rem 1.2rem;
		font-size: 0.95rem;
	}

	.faq-icon {
		font-size: 1.3rem;
	}

	.faq-item.active .faq-answer {
		padding: 1rem 1.2rem 1.4rem;
	}

	.faq-answer {
		padding: 0 1.2rem;
	}

	.sh {
		font-size: 1.8rem;
	}
}

/* additional polish */
.faq-answer p {
	margin-bottom: 0.5rem;
}

	.faq-answer p:last-child {
		margin-bottom: 0;
	}

@media (max-width: 640px) {
	.faq-question {
		padding: 1rem 1.4rem;
		font-size: 0.95rem;
	}

	.faq-item.active .faq-answer {
		padding: 1rem 1.4rem 1.2rem;
	}
}

/* ========== NEW: BANNER SECTION ========== */

.banner {
	top:50px;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

	.banner::before {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
	}

.banner-content {
	position: relative;
	z-index: 1;
	color: #fff;
	max-width: 700px;
	padding: 20px;
}

	.banner-content h1 {
		font-size: 3rem;
		margin-bottom: 15px;
	}

	.banner-content p {
		font-size: 1.2rem;
		margin-bottom: 25px;
	}

.banner-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #ff6b00;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: 0.3s;
}

	.banner-btn:hover {
		background: #e55d00;
	}

/* Mobile Responsive */
@media (max-width: 768px) {
	.banner {
		height: 350px;
	}

	.banner-content h1 {
		font-size: 2rem;
	}

	.banner-content p {
		font-size: 1rem;
	}
}