/* =============================================
   LANDING PAGE - Hero Section
   Uses site color scheme:
   --color-primary-bg: #8b2e2b (maroon)
   --color-cta-bg: #f4c542 (gold)
   --color-cta-hover: #e0a825
   --color-section-alt-bg: #a63a34
   ============================================= */

/* Hero Section */
.landing-hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--color-text-on-dark, #ffffff);
}

/* Video Background */
.hero-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-video-bg video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-image: url("../assets/img/hero_fallback.webp");
	background-position: center;
	background-size: cover;
}

/* Dark Overlay — maroon-tinted */
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(139, 46, 43, 0.6) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	z-index: 1;
}

/* Hero Content */
.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 2rem 1.5rem;
	animation: heroFadeUp 1s ease-out both;
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #ffffff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
	font-size: clamp(1.2rem, 3vw, 2rem);
	font-weight: 400;
	color: var(--color-cta-bg, #f4c542);
	margin-top: 0.5rem;
}

.hero-desc {
	font-size: clamp(0.95rem, 1.5vw, 1.15rem);
	line-height: 1.8;
	max-width: 750px;
	margin: 1.5rem auto 2rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
	display: inline-block;
	padding: 0.85rem 2.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	cursor: pointer;
}

.hero-btn-primary {
	background: linear-gradient(135deg, #f4c542 0%, #e0a825 100%);
	color: #1a1a1a;
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(244, 197, 66, 0.3);
}

.hero-btn-primary:hover {
	background: linear-gradient(135deg, #e0a825 0%, #f4c542 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(244, 197, 66, 0.5);
}

.hero-btn-secondary {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-btn-secondary:hover {
	background: var(--color-primary-bg, #8b2e2b);
	border-color: var(--color-primary-bg, #8b2e2b);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(139, 46, 43, 0.4);
}

/* Entrance Animation */
@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =============================================
   Responsive
   ============================================= */

@media screen and (max-width: 1024px) {
	.landing-hero {
		min-height: 85vh;
	}

	.hero-title {
		font-size: clamp(1.8rem, 4.5vw, 2.8rem);
	}
}

@media screen and (max-width: 768px) {
	.landing-hero {
		min-height: 0;
		height: auto;
		aspect-ratio: 16 / 9;
		margin-top: calc(74px + env(safe-area-inset-top, 0px));
		background: #000;
	}

	.hero-video-bg video {
		object-fit: contain;
		object-position: center;
	}

	.hero-content {
		padding: 1.5rem 1rem;
	}

	.hero-desc {
		font-size: 0.95rem;
	}

	.hero-btn-primary,
	.hero-btn-secondary {
		padding: 0.75rem 1.8rem;
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 480px) {
	.landing-hero {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.hero-btn-primary,
	.hero-btn-secondary {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}
}

/* =============================================
   INTRO WELCOME SECTION
   ============================================= */

.intro-welcome {
	position: relative;
	padding: 100px 20px;
	text-align: center;
	overflow: hidden;
	background: var(--color-primary-bg, #8b2e2b);
}

.intro-welcome::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -120px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	pointer-events: none;
}

.intro-welcome::after {
	content: "";
	position: absolute;
	bottom: -60px;
	left: -100px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.025);
	pointer-events: none;
}

.intro-welcome-content {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto;
	animation: heroFadeUp 1s ease-out both;
}

.intro-welcome-badge {
	display: inline-block;
	padding: 0.4rem 1.4rem;
	border: 1px solid rgba(244, 197, 66, 0.4);
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--color-cta-bg, #f4c542);
	margin-bottom: 1.5rem;
}

.intro-welcome-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.intro-highlight {
	color: var(--color-cta-bg, #f4c542);
}

.intro-welcome-divider {
	width: 80px;
	height: 4px;
	background: var(--color-cta-bg, #f4c542);
	border-radius: 2px;
	margin: 0 auto 1.75rem;
}

.intro-welcome-desc {
	font-size: clamp(0.95rem, 1.4vw, 1.1rem);
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.88);
	max-width: 700px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.intro-welcome-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.intro-btn-primary {
	display: inline-block;
	padding: 0.85rem 2.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	cursor: pointer;
	background: linear-gradient(135deg, #f4c542 0%, #e0a825 100%);
	color: #1a1a1a;
	border: 2px solid transparent;
	box-shadow: 0 4px 15px rgba(244, 197, 66, 0.3);
}

.intro-btn-primary:hover {
	background: linear-gradient(135deg, #e0a825 0%, #f4c542 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(244, 197, 66, 0.5);
}

.intro-btn-secondary {
	display: inline-block;
	padding: 0.85rem 2.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	cursor: pointer;
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.intro-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
	.intro-welcome {
		padding: 70px 16px;
	}

	.intro-welcome-title {
		font-size: clamp(1.6rem, 5vw, 2.4rem);
	}

	.intro-btn-primary,
	.intro-btn-secondary {
		padding: 0.75rem 1.8rem;
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 480px) {
	.intro-welcome {
		padding: 55px 14px;
	}

	.intro-welcome-cta {
		flex-direction: column;
		align-items: center;
	}

	.intro-btn-primary,
	.intro-btn-secondary {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}
}

/* =============================================
   MISSION SECTION (Guided by our mission)
   ============================================= */

.mission-section {
	position: relative;
	padding: 120px 20px;
	text-align: center;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mission-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.mission-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mission-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.88);
	z-index: 1;
}

.mission-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
	animation: heroFadeUp 1s ease-out both;
}

.mission-header {
	margin-bottom: 1.5rem;
}

.mission-motto {
	display: block;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	color: var(--color-primary-bg, #8b2e2b);
	margin-bottom: 0.25rem;
	letter-spacing: 1px;
}

.mission-motto-translation {
	display: block;
	font-size: 1rem;
	font-style: italic;
	color: #666;
	margin-bottom: 1rem;
}

.mission-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	text-transform: uppercase;
	color: var(--color-primary-bg, #8b2e2b);
	line-height: 1.1;
}

.mission-body p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #333;
	margin-bottom: 1.5rem;
}

.mission-btn {
	display: inline-block;
	padding: 0.85rem 2.5rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	background: transparent;
	color: var(--color-primary-bg, #8b2e2b);
	border: 2px solid var(--color-primary-bg, #8b2e2b);
	transition: all 0.3s ease;
}

.mission-btn:hover {
	background: var(--color-primary-bg, #8b2e2b);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(139, 46, 43, 0.3);
}

@media screen and (max-width: 768px) {
	.mission-section {
		padding: 80px 20px;
		min-height: 400px;
	}

	.mission-title {
		font-size: clamp(1.6rem, 4vw, 2.5rem);
	}

	.mission-body p {
		font-size: 0.95rem;
	}
}

/* =============================================
   THE BRD EXPERIENCE SECTION
   ============================================= */

.experience-panel {
	background: var(--color-primary-bg, #8b2e2b);
	padding: 100px 0 0;
	color: #fff;
	overflow: hidden;
}

.experience-content {
	text-align: center;
	margin-bottom: 3rem;
}

.experience-header {
	max-width: 700px;
	margin: 0 auto;
}

.experience-eyebrow {
	display: block;
	font-size: 1.15rem;
	font-weight: 400;
	font-style: italic;
	color: var(--color-cta-bg, #f4c542);
	margin-bottom: 0.5rem;
}

.experience-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	margin-bottom: 1.25rem;
	letter-spacing: 2px;
}

.experience-desc {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
}

.experience-accent {
	width: 200px;
	height: 5px;
	background: var(--color-cta-bg, #f4c542);
	border-radius: 3px;
	margin: 0 auto;
}

/* Gallery */
.experience-gallery {
	display: flex;
	width: 100%;
	gap: 0;
}

.experience-img-wrapper {
	flex: 1;
	position: relative;
	overflow: hidden;
	min-height: 350px;
}

.experience-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition:
		filter 0.4s ease,
		transform 0.4s ease;
}

.experience-img-wrapper:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* Color Bar Accent */
.experience-img-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 6px;
}

.bar-gold {
	background: var(--color-cta-bg, #f4c542);
}

.bar-green {
	background: var(--color-section-alt-bg, #a63a34);
}

/* Responsive */
@media screen and (max-width: 992px) {
	.experience-panel {
		padding: 80px 0 0;
	}

	.experience-img-wrapper {
		min-height: 280px;
	}
}

@media screen and (max-width: 768px) {
	.experience-panel {
		padding: 60px 0 0;
	}

	.experience-gallery {
		flex-wrap: wrap;
	}

	.experience-img-wrapper {
		flex: 1 1 50%;
		min-height: 200px;
	}

	.experience-img-wrapper:last-child {
		flex: 1 1 100%;
	}
}

@media screen and (max-width: 480px) {
	.experience-title {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.experience-img-wrapper {
		flex: 1 1 100%;
		min-height: 180px;
	}
}

/* =============================================
   SIGNATURE PROGRAMMES SECTION
   ============================================= */

.programs-panel {
	background: var(--color-primary-bg, #8b2e2b);
	padding: 100px 0 120px;
	color: #fff;
	overflow: hidden;
}

.programs-header {
	margin-bottom: 3rem;
}

.programs-eyebrow {
	font-size: 1.15rem;
	font-weight: 400;
	font-style: italic;
	color: var(--color-cta-bg, #f4c542);
	margin-bottom: 0.25rem;
}

.programs-title {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	margin-bottom: 1.25rem;
}

.programs-desc {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 1.5rem;
}

.programs-accent {
	width: 220px;
	height: 5px;
	background: var(--color-cta-bg, #f4c542);
	border-radius: 3px;
}

/* Carousel */
.programs-carousel-wrap {
	position: relative;
}

.programs-track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 1rem;
}

.programs-track::-webkit-scrollbar {
	display: none;
}

/* Nav Arrows */
.programs-nav {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.programs-arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	color: #fff;
	font-size: 1.25rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.programs-arrow:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
}

/* Card */
.programs-card {
	flex: 0 0 280px;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	color: #1a1a1a;
	display: flex;
	flex-direction: column;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	border-bottom: 4px solid var(--color-cta-bg, #f4c542);
}

.programs-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.programs-card-img {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.programs-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.programs-card:hover .programs-card-img img {
	transform: scale(1.05);
}

.programs-card-body {
	padding: 1.25rem;
	flex: 1;
}

.programs-card-body h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-primary-bg, #8b2e2b);
}

.programs-card-body p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.programs-panel {
		padding: 60px 0 80px;
	}

	.programs-card {
		flex: 0 0 250px;
	}

	.programs-card-img {
		height: 170px;
	}
}

@media screen and (max-width: 480px) {
	.programs-title {
		font-size: clamp(1.8rem, 6vw, 2.5rem);
	}

	.programs-card {
		flex: 0 0 230px;
	}
}

/* =============================================
   BRD By the Numbers Section
   ============================================= */

.homepage-facts {
	position: relative;
	width: 100%;
	padding: 80px 0 0;
	overflow: hidden;
	background: #ffffff;
}

.facts-content {
	position: relative;
	z-index: 2;
	padding-bottom: 60px;
}

.facts-header {
	text-align: center;
	margin-bottom: 50px;
}

.facts-eyebrow {
	display: block;
	font-size: 1.1rem;
	font-style: italic;
	font-weight: 400;
	color: var(--color-primary-bg, #8b2e2b);
	margin-bottom: 0.5rem;
}

.facts-title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1.25rem;
	color: var(--color-primary-bg, #8b2e2b);
}

.facts-desc {
	font-size: 1rem;
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
	color: #555;
}

.facts-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px 30px;
}

.fact-box {
	text-align: center;
	padding: 20px 15px;
}

.fact-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.fact-icon svg {
	width: 40px;
	height: 40px;
	color: var(--color-primary-bg, #8b2e2b);
	opacity: 0.7;
}

.fact-number {
	display: block;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--color-primary-bg, #8b2e2b);
	line-height: 1.1;
	margin-bottom: 0.5rem;
}

.fact-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	color: #555;
	line-height: 1.4;
}

/* Campus Image at Bottom */
.facts-image {
	position: relative;
	width: 100%;
	height: 360px;
	overflow: hidden;
}

.facts-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 0.6) 30%,
		rgba(255, 255, 255, 0) 60%
	);
	z-index: 1;
	pointer-events: none;
}

.facts-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
}

/* =============================================
   ACCREDITATIONS, AFFILIATIONS & APPROVALS
   ============================================= */

.recognitions {
	padding: 85px 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(250, 245, 242, 1) 100%
	);
}

.recognitions .sub-heading-content {
	max-width: 860px;
	margin: 0 auto;
}

.recognitions .sub-heading {
	font-size: clamp(2rem, 4.2vw, 3.2rem);
	letter-spacing: 1px;
	margin-bottom: 1rem;
	color: var(--color-primary-bg, #8b2e2b);
}

.recognitions .sub-text {
	display: block;
	max-width: 720px;
	margin: 0.25rem auto 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #5a5a5a;
}

.recognitions .rec-carousel {
	--rec-gap: 22px;
	--rec-visible: 3;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	padding: 4px;
	overflow: hidden;
}

.recognitions .rec-track {
	display: flex;
	gap: var(--rec-gap);
}

.recognitions .rec-logo-item {
	min-height: 190px;
	aspect-ratio: auto;
	border-radius: 14px;
	border: 1px solid rgba(139, 46, 43, 0.12);
	background: #ffffff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
	padding: 22px 16px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.recognitions .rec-logo-item:hover {
	transform: translateY(-4px);
	border-color: rgba(139, 46, 43, 0.28);
	box-shadow: 0 14px 30px rgba(139, 46, 43, 0.14);
}

.recognitions .rec-logo-img {
	width: 100%;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
}

.recognitions .rec-logo-img::after {
	display: none;
}

.recognitions .rec-logo-img img {
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0;
}

.recognitions .rec-text {
	position: static;
	inset: auto;
	width: auto;
	height: auto;
	margin-top: 14px;
	padding: 0;
	visibility: visible;
	opacity: 1;
	transform: none;
	background: transparent;
	font-size: 0.98rem;
	font-weight: 600;
	color: #2d2d2d;
	line-height: 1.35;
}

.recognitions .rec-text span {
	max-width: 100%;
	text-shadow: none;
}

.recognitions .rec-logo-item:hover .rec-logo-img {
	filter: none;
}

@media (max-width: 992px) {
	.recognitions {
		padding: 70px 0;
	}

	.recognitions .rec-carousel {
		--rec-visible: 2;
		--rec-gap: 16px;
	}

	.recognitions .rec-logo-item {
		min-height: 175px;
	}
}

@media (max-width: 576px) {
	.recognitions {
		padding: 55px 0;
	}

	.recognitions .sub-heading {
		font-size: clamp(1.5rem, 7vw, 2rem);
	}

	.recognitions .sub-text {
		font-size: 0.92rem;
	}

	.recognitions .rec-carousel {
		--rec-visible: 1;
		--rec-gap: 14px;
	}

	.recognitions .rec-logo-item {
		min-height: 165px;
		padding: 20px 14px;
	}

	.recognitions .rec-logo-img {
		height: 82px;
	}

	.recognitions .rec-text {
		font-size: 0.92rem;
	}
}

@media screen and (max-width: 992px) {
	.facts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
	}
}

@media screen and (max-width: 576px) {
	.homepage-facts {
		padding: 60px 0 0;
	}

	.facts-header {
		margin-bottom: 30px;
	}

	.facts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px 15px;
	}

	.fact-box {
		padding: 15px 10px;
	}

	.fact-icon svg {
		width: 32px;
		height: 32px;
	}

	.facts-image {
		height: 200px;
	}
}

/* =============================================
   (continued responsive)
   ============================================= */

/* duplicate guard removed – mission responsive below is kept */
@media screen and (max-width: 768px) {
	.mission-body p {
		font-size: 0.95rem;
	}
}

/* =============================================
   PLACEMENT SECTION — Aloha-inspired card grid
   ============================================= */

.placement-area {
	padding: 80px 0 60px;
	background: #fff;
}

/* Header */
.placement-header {
	text-align: center;
	margin-bottom: 40px;
}

.placement-title {
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.15;
	margin: 0 0 14px;
}

.placement-subtitle {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #555;
}

/* Stats Bar */
.placement-stats-bar {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 48px;
	border-top: 2px solid var(--color-primary-bg, #8b2e2b);
	border-bottom: 2px solid var(--color-primary-bg, #8b2e2b);
}

.placement-stat {
	flex: 1;
	text-align: center;
	padding: 22px 16px;
	position: relative;
}

.placement-stat:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 18%;
	height: 64%;
	width: 1px;
	background: rgba(139, 46, 43, 0.25);
}

.placement-stat strong {
	display: block;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--color-primary-bg, #8b2e2b);
	line-height: 1.15;
}

.placement-stat span {
	display: block;
	margin-top: 4px;
	font-size: 0.88rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #666;
}

/* ---- Placement Card Grid (Aloha-style) ---- */
.placement-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	margin-bottom: 56px;
}

.placement-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	cursor: pointer;
}

.placement-card--large {
	aspect-ratio: 4 / 5;
}

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

.placement-card:hover > img {
	transform: scale(1.06);
}

/* Default overlay — name + batch at bottom */
.placement-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.72) 0%,
		rgba(0, 0, 0, 0.15) 45%,
		transparent 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px 22px;
	transition: opacity 0.35s ease;
	z-index: 2;
}

.placement-card__name {
	font-size: clamp(1.15rem, 2vw, 1.5rem);
	font-weight: 800;
	color: #fff;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.placement-card__overlay .placement-card__batch {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	margin-top: 3px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Hover details panel */
.placement-card__details {
	position: absolute;
	inset: 0;
	background: rgba(139, 46, 43, 0.92);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 28px 22px;
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 3;
}

.placement-card:hover .placement-card__details {
	opacity: 1;
}

.placement-card:hover .placement-card__overlay {
	opacity: 0;
}

.placement-card__details h3 {
	font-size: clamp(1.1rem, 2vw, 1.45rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 4px;
}

.placement-card__details .placement-card__batch {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
	display: block;
	margin-bottom: 16px;
}

.placement-card__details p {
	font-size: 0.95rem;
	line-height: 1.55;
	color: #fff;
	margin: 0 0 6px;
	max-width: 260px;
}

.placement-card__loc {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	display: block;
	margin-bottom: 18px;
}

.placement-card__logo {
	max-height: 40px;
	max-width: 140px;
	width: auto;
	height: auto;
	object-fit: contain;
	background: #fff;
	border-radius: 8px;
	padding: 6px 10px;
}

/* ---- Company Logos Marquee ---- */
.placement-logos-marquee {
	overflow: hidden;
	position: relative;
	padding: 12px 0 0;
}

.placement-logos-marquee::before,
.placement-logos-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.placement-logos-marquee::before {
	left: 0;
	background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.placement-logos-marquee::after {
	right: 0;
	background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.placement-logos-track {
	display: flex;
	gap: 48px;
	animation: placementMarquee 30s linear infinite;
	width: max-content;
}

.placement-logo-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	height: 64px;
	padding: 0 10px;
	border: 1px solid #ececec;
	border-radius: 10px;
	background: #fff;
}

.placement-logo-item img {
	max-height: 40px;
	max-width: 130px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(25%);
	opacity: 0.92;
	transition:
		filter 0.3s,
		opacity 0.3s;
}

.placement-logo-item img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

@keyframes placementMarquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* ---- Placement Responsive ---- */
@media screen and (max-width: 1100px) {
	.placement-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 5px;
	}

	.placement-stats-bar {
		flex-wrap: wrap;
	}

	.placement-stat {
		flex: 1 1 50%;
	}

	.placement-stat:nth-child(2)::after {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.placement-area {
		padding: 60px 0 40px;
	}

	.placement-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4px;
	}

	.placement-card {
		aspect-ratio: 3 / 4;
	}

	.placement-card--large {
		aspect-ratio: 3 / 4;
	}

	.placement-stats-bar {
		margin-bottom: 32px;
	}

	.placement-stat {
		padding: 16px 10px;
	}

	.placement-stat strong {
		font-size: 1.3rem;
	}

	.placement-card__overlay {
		padding: 16px 14px;
	}

	.placement-card__name {
		font-size: 1rem;
	}

	.placement-card__details p {
		font-size: 0.85rem;
	}
}

@media screen and (max-width: 576px) {
	.placement-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3px;
	}

	.placement-stats-bar {
		flex-direction: column;
		border: none;
		gap: 0;
	}

	.placement-stat {
		border-bottom: 1px solid rgba(139, 46, 43, 0.15);
		padding: 14px 10px;
	}

	.placement-stat:not(:last-child)::after {
		display: none;
	}

	.placement-stat:first-child {
		border-top: 2px solid var(--color-primary-bg, #8b2e2b);
	}

	.placement-stat:last-child {
		border-bottom: 2px solid var(--color-primary-bg, #8b2e2b);
	}

	.placement-card__details {
		padding: 18px 14px;
	}

	.placement-card__details h3 {
		font-size: 0.95rem;
	}

	.placement-card__logo {
		max-height: 28px;
	}
}

/* =============================================
   OUR CAMPUS SECTION
   Inspired by Berkshire design with BRD colors
   ============================================= */

.our-campus-section {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	min-height: 600px;
	overflow: hidden;
}

/* Background Image with Parallax Effect */
.our-campus-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.our-campus-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease-out;
}

/* Gradient overlay for readability */
.our-campus-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.3) 50%,
			rgba(255, 255, 255, 0.95) 100%
		),
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.95) 0%,
			rgba(255, 255, 255, 0.3) 15%,
			rgba(255, 255, 255, 0) 30%
		);
	z-index: 2;
	pointer-events: none;
}

/* Content Container */
.our-campus-content {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-height: 600px;
	padding: 50px 20px;
}

@media (min-width: 800px) {
	.our-campus-content {
		padding: 100px 60px;
	}
}

@media (min-width: 1200px) {
	.our-campus-content {
		padding: 130px 100px;
	}
}

/* Floating Content Box */
.our-campus-box {
	position: relative;
	background-color: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	max-width: 550px;
	padding: 40px 30px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
}

@media (min-width: 1200px) {
	.our-campus-box {
		padding: 50px 60px;
	}
}

/* Header with accent bar */
.our-campus-header {
	text-align: center;
	position: relative;
	padding-top: 25px;
	margin-bottom: 25px;
}

.our-campus-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 6px;
	background: linear-gradient(
		90deg,
		var(--color-cta-bg, #f4c542) 0%,
		var(--color-primary-bg, #8b2e2b) 100%
	);
	border-radius: 3px;
}

@media (min-width: 1200px) {
	.our-campus-header {
		text-align: left;
	}

	.our-campus-header::before {
		left: 0;
		transform: none;
	}
}

/* Eyebrow text */
.our-campus-eyebrow {
	display: block;
	font-family: "Georgia", serif;
	font-size: 1rem;
	font-style: italic;
	font-weight: 400;
	color: #666;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

@media (min-width: 800px) {
	.our-campus-eyebrow {
		font-size: 1.15rem;
	}
}

/* Main Title */
.our-campus-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--color-primary-bg, #8b2e2b);
	line-height: 1.2;
	margin: 0;
}

/* Body Content */
.our-campus-body {
	margin-bottom: 30px;
}

.our-campus-body p {
	font-size: 1rem;
	line-height: 1.8;
	color: #444;
	margin: 0;
}

@media (min-width: 800px) {
	.our-campus-body p {
		font-size: 1.05rem;
	}
}

@media (min-width: 1200px) {
	.our-campus-body p {
		text-align: left;
	}
}

/* Footer Links */
.our-campus-footer {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

@media (min-width: 600px) {
	.our-campus-footer {
		flex-direction: row;
		gap: 20px;
	}
}

.campus-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 24px;
	background: linear-gradient(
		135deg,
		var(--color-primary-bg, #8b2e2b) 0%,
		#a63a34 100%
	);
	color: #ffffff;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(139, 46, 43, 0.3);
}

.campus-link:hover {
	background: linear-gradient(
		135deg,
		#a63a34 0%,
		var(--color-primary-bg, #8b2e2b) 100%
	);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(139, 46, 43, 0.4);
}

.campus-link svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.campus-link:hover svg {
	transform: translateX(4px);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.our-campus-section {
		min-height: 500px;
	}

	.our-campus-content {
		justify-content: center;
		min-height: 500px;
	}

	.our-campus-box {
		max-width: 100%;
		margin: 0 auto;
	}

	.our-campus-header {
		text-align: center;
	}

	.our-campus-header::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.our-campus-body p {
		text-align: center;
	}

	.our-campus-footer {
		justify-content: center;
	}
}

@media screen and (max-width: 576px) {
	.our-campus-section {
		min-height: 450px;
	}

	.our-campus-content {
		padding: 40px 15px;
		min-height: 450px;
	}

	.our-campus-box {
		padding: 30px 20px;
	}

	.campus-link {
		padding: 10px 20px;
		font-size: 0.9rem;
		justify-content: center;
		width: 100%;
	}
}
