@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-Thin.otf") format("opentype");
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-ThinItalic.otf") format("opentype");
	font-weight: 100;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-ExtraLight.otf") format("opentype");
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-ExtraLightItalic.otf") format("opentype");
	font-weight: 200;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-Light.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-LightItalic.otf") format("opentype");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-RegularItalic.otf") format("opentype");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-Medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-MediumItalic.otf") format("opentype");
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-SemiBold.otf") format("opentype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-SemiBoldItalic.otf") format("opentype");
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-BoldItalic.otf") format("opentype");
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-ExtraBold.otf") format("opentype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-ExtraBoldItalic.otf") format("opentype");
	font-weight: 800;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-Black.otf") format("opentype");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Metropolis";
	src: url("fonts/Metropolis-BlackItalic.otf") format("opentype");
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

* {
	transition: all 0.4s;
}

:root {
	font-family: "Metropolis", sans-serif;
}

body {
	font-family: "Metropolis", sans-serif;
}

.container-3xl {
	max-width: 1440px;
}

/* Top Bar */
.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1001;
	background: #ffffff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar-home {
	background: #0d1c35;
}

.top-bar.hidden {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

.top-bar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.top-bar-left {
	flex: 1;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.top-bar-email,
.top-bar-phone {
	color: #ffffff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	transition: opacity 0.3s ease;
}

.top-bar:not(.top-bar-home) .top-bar-email,
.top-bar:not(.top-bar-home) .top-bar-phone {
	color: #0d1c35;
}

.top-bar-email:hover,
.top-bar-phone:hover {
	opacity: 0.7;
}

.top-bar-phone {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #00ff7f;
	font-weight: 500;
}

.top-bar:not(.top-bar-home) .top-bar-phone {
	color: #0d1c35;
}

.top-bar-phone i {
	font-size: 0.85rem;
}

.top-bar-search {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 1.1rem;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.top-bar:not(.top-bar-home) .top-bar-search {
	color: #0d1c35;
}

.top-bar-search:hover {
	opacity: 0.7;
}

header {
	position: fixed;
	top: 40px;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	transition: background 0.3s ease, top 0.3s ease;
	background: white;
	padding-top: 10px;
	padding-bottom: 15px;
}

header.top-hidden {
	top: 0;
}

.header-home:has(.menu-item-wrapper:hover) {
	/* background: rgba(22, 44, 77, 0.95); */
	background: white;
}

.header-home:has(.menu-item-wrapper:hover) a {
	color: black;
}

.header-home:has(.menu-item-wrapper:hover) .white-logo,
.header-home:has(.menu-item-wrapper:hover) .hamburger-menu-link .white-icon {
	display: none;
}

.header-home:has(.menu-item-wrapper:hover) .dark-logo,
.header-home:has(.menu-item-wrapper:hover) .hamburger-menu-link .dark-icon {
	display: block;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.center-menu-links {
	display: flex;
	align-items: center;
	gap: 6rem;
}

.header .white-logo,
.header .white-icon {
	display: none;
}

.header .dark-logo,
.header .dark-icon {
	display: block;
}

.header-home .dark-logo,
.header-home .dark-icon {
	display: none;
}

.header-home .white-logo,
.header-home .white-icon {
	display: block;
}

a.header-menu-link {
	margin: 0px 10px;
	font-size: 19px;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
}

a.header-menu-link:hover {
	color: #00ff7f;
}

.header-home a,
.header-home button {
	background: none;
	color: white;
	border: none;
}

/* Mega Menu */
.menu-item-wrapper {
	position: relative;
	display: inline-block;
}

.mega-menu {
	position: fixed;
	top: 105px;
	left: 0;
	right: 0;
	width: 100%;
	/* max-height: 50vh; */
	overflow-y: auto;
	background: rgba(22, 44, 77, 0.95);
	padding: 2rem 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 999;
}

.menu-item-wrapper:hover .mega-menu,
.mega-menu:hover {
	opacity: 1;
	visibility: visible;
}

.mega-menu-grid {
	color: white;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.mega-menu-column {
	padding: 0 0.5rem;
	/* width: 100%; */
	max-width: 250px;
}

.mega-menu-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #00ff7f;
	letter-spacing: 0.05em;
}

.mega-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mega-menu-list li {
	margin-bottom: 0.2rem;
	max-width: 250px;
	width: 100%;
}

.mega-menu-list a {
	color: white;
	text-decoration: none;
	font-size: 0.875rem;
	line-height: 1.4;
	transition: color 0.2s ease;
	display: block;
}

.mega-menu-list a:hover {
	color: #00ff7f;
}

.hamburger-menu-link {
	/* display: none; */
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.hamburger-menu-link img {
	height: 30px;
	width: auto;
}

@media (max-width: 1440px) {
	.center-menu-links {
		display: none;
	}

	.hamburger-menu-link {
		display: block;
	}
}

@media (max-width: 992px) {
	.mega-menu {
		display: none;
	}
}

/* Fullscreen Menu */
.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	display: flex;
	flex-direction: column;
}

.fullscreen-menu.fullscreen-menu-home {
	/* background: #0d1c35; */
}

.fullscreen-menu.active {
	opacity: 1;
	visibility: visible;
}

.fullscreen-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	flex-shrink: 0;
}

.fullscreen-menu.fullscreen-menu-home .fullscreen-menu-header {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.fullscreen-menu-logo {
	height: 60px;
}

.fullscreen-menu-logo img {
	height: 100%;
	width: auto;
}

.fullscreen-menu .white-logo {
	display: none;
}

.fullscreen-menu .dark-logo {
	display: block;
}

.fullscreen-menu.fullscreen-menu-home .white-logo {
	display: block;
}

.fullscreen-menu.fullscreen-menu-home .dark-logo {
	display: none;
}

.fullscreen-menu-close {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	font-size: 2rem;
	color: #000000;
	cursor: pointer;
	transition: color 0.3s ease;
}

.fullscreen-menu.fullscreen-menu-home .fullscreen-menu-close {
	/* color: #ffffff; */
}

.fullscreen-menu-close:hover {
	color: #00ff7f;
}

.fullscreen-menu-nav {
	flex: 1;
	overflow-y: auto;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.fullscreen-menu-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 1.5rem;
}

.fullscreen-menu.fullscreen-menu-home .fullscreen-menu-item {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.fullscreen-menu-link {
	font-size: 1.5rem;
	font-weight: 600;
	color: #000000;
	text-decoration: none;
	display: block;
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.fullscreen-menu.fullscreen-menu-home .fullscreen-menu-link {
	/* color: #ffffff; */
}

.fullscreen-menu-link:hover {
	color: #00ff7f;
}

.fullscreen-submenu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 1.5rem;
}

.fullscreen-submenu-column {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.fullscreen-submenu-title {
	font-size: 1rem;
	font-weight: 700;
	color: #00ff7f;
	margin-bottom: 0.75rem;
	letter-spacing: 0.05em;
}

.fullscreen-submenu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.fullscreen-submenu-list a {
	color: #666666;
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.fullscreen-menu.fullscreen-menu-home .fullscreen-submenu-list a {
	/* color: rgba(255, 255, 255, 0.8); */
}

.fullscreen-submenu-list a:hover {
	color: #00ff7f;
}

@media (max-width: 768px) {
	.fullscreen-menu-header {
		padding: 1.5rem;
	}

	.fullscreen-menu-nav {
		padding: 1.5rem;
	}

	.fullscreen-menu-link {
		font-size: 1.25rem;
	}

	.fullscreen-submenu {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* Hero Slider */
.hero-slider {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-slider .swiper {
	width: 100%;
	height: 100%;
}

.hero-slider .swiper-slide {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-slider .hero-slide-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 2rem;
	text-align: center;
	color: white;
}

.hero-slider .swiper-pagination {
	bottom: 2rem;
}

.hero-slider .swiper-pagination-bullet {
	width: 40px;
	height: 4px;
	background: white;
	opacity: 1;
	border-radius: 0;
}

.hero-slider .swiper-pagination-bullet-active {
	background: #00ff7f;
}

@media (max-width: 768px) {
	.hero-slider .hero-slide-content {
		padding: 1rem;
		max-width: 90%;
	}
}

/* Video Hero Slider */
.video-hero-slider {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.video-hero-slider .video-background {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: 1;
	object-fit: cover;
}

.video-hero-slider .video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 2;
}

.video-hero-slider .video-hero-swiper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.video-hero-slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.video-hero-slider .video-hero-content {
	position: relative;
	z-index: 4;
	max-width: 1200px;
	padding: 2rem;
	color: white;
	animation: fadeInUp 1s ease-out;
}

.video-hero-slider .video-hero-title {
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.video-hero-slider .video-hero-subtitle {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.6;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	margin: 0;
}

.video-hero-slider .swiper-pagination {
	bottom: 2rem;
	z-index: 5;
}

.video-hero-slider .swiper-pagination-bullet {
	width: 40px;
	height: 4px;
	background: white;
	opacity: 1;
	border-radius: 0;
}

.video-hero-slider .swiper-pagination-bullet-active {
	background: #00ff7f;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.video-hero-slider .video-hero-title {
		font-size: 3rem;
	}

	.video-hero-slider .video-hero-subtitle {
		font-size: 1.25rem;
	}
}

@media (max-width: 768px) {
	.video-hero-slider .video-hero-content {
		padding: 1rem;
		max-width: 90%;
	}

	.video-hero-slider .video-hero-title {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.video-hero-slider .video-hero-subtitle {
		font-size: 1rem;
	}
}

/* Counter Section */
.counter-section {
	padding: 6rem 6rem;
	position: relative;
	overflow: hidden;
	background: white;
}

.counter-description {
	text-align: center;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 3rem;
	color: #1a1a1a;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.counter-subtitle {
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.4rem;
	color: #666;
	margin-bottom: 2rem;
}

.counter-progress-container {
	position: relative;
	width: 100%;
	padding: 6rem 0 2rem;
}

.counter-progress-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	background: #d9d9d9;
	transform: translateY(-50%);
	z-index: 1;
}

.counter-progress-bar {
	position: absolute;
	top: 50%;
	left: 0;
	height: 8px;
	background: #000000;
	width: 0%;
	transform: translateY(-50%);
	transition: width 0.1s linear;
	z-index: 2;
}

.counter-milestones {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transform: translateY(-50%);
	z-index: 3;
}

.counter-milestone {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0.3;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.counter-milestone.passed,
.counter-milestone.active {
	opacity: 1;
}

.counter-milestone.passed {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.counter-milestone.passed:hover {
	cursor: pointer;
}

.counter-milestone.active {
	transform: scale(1.15);
}


.counter-milestone-marker {
	width: 32px;
	height: 32px;
	margin-bottom: 0;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: grayscale(1);
}

.milestone-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
	transition: filter 0.3s ease;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

.counter-milestone-content {
	text-align: center;
	margin-top: 2.5rem;
}

.counter-number {
	font-size: 3rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 0.5rem;
}

.counter-label {
	font-size: 1.2rem;
	font-weight: 600;
	color: #23262a;
}

.counter-milestone.active .counter-number {
	color: #23262a;
}

.counter-milestone.active .counter-label {
	color: #23262a;
}

@media (max-width: 768px) {
	.counter-description {
		font-size: 1.5rem;
		min-height: 100px;
	}

	.counter-number {
		font-size: 2rem;
	}

	.counter-label {
		font-size: 0.75rem;
	}

	.counter-milestone-marker {
		width: 24px;
		height: 24px;
	}

	.counter-milestone-content {
		margin-top: 2rem;
	}

	.counter-desktop {
		display: none;
	}

	.counter-mobile {
		display: block;
	}
}

@media (min-width: 769px) {
	.counter-desktop {
		display: block;
	}

	.counter-mobile {
		display: none;
	}
}

/* Mobile Counter */
.counter-mobile {
	padding: 2rem 0;
}

.counter-mobile .counter-subtitle {
	text-align: left;
	margin-bottom: 3rem;
}

.counter-mobile-container {
	position: relative;
	padding-left: 3rem;
	min-height: 600px;
}

.counter-mobile-track {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: #d9d9d9;
	z-index: 1;
}

.counter-mobile-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 8px;
	background: #000000;
	height: 0%;
	transition: height 0.1s linear;
	z-index: 2;
}

.counter-mobile-milestones {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.counter-mobile-milestone {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.counter-mobile-marker {
	position: absolute;
	left: -3rem;
	top: 0;
	width: 32px;
	height: 32px;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: grayscale(1);
}

.counter-mobile-milestone.passed .counter-mobile-marker {
	filter: grayscale(0);
}

.counter-mobile-marker .milestone-icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.counter-mobile-content {
	flex: 1;
}

.counter-mobile-number {
	font-size: 2.5rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 0.25rem;
}

.counter-mobile-label {
	font-size: 1rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 1rem;
}

.counter-mobile-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #666666;
	opacity: 0.3;
	transition: opacity 0.5s ease;
}

.counter-mobile-milestone.passed .counter-mobile-description {
	opacity: 1;
}

/* Video Player Section */
.video-player-section {
	/* padding: 4rem 0; */
	background-color: white;
}

.video-player-wrapper {
	position: relative;
	/* width: 100%; */
	/* max-width: 1200px; */
	/* margin: 0 auto; */
}

.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	background-color: #000;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	z-index: 10;
	display: flex;
	align-items: center;
	padding: 3rem;
	transition: opacity 0.3s ease;
}

.video-play-button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.video-play-button:hover {
	transform: scale(1.1);
}

.play-icon {
	width: 80px;
	height: 80px;
	display: block;
}

.video-text {
	color: #ffffff;
	text-align: left;
}

.video-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.video-description {
	font-size: 1.2rem;
	font-weight: 400;
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.video-player-section {
		padding: 2rem 0;
		background: white;
		border: none;
	}

	.video-overlay {
		padding: 1.5rem;
	}

	.video-overlay-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.play-icon {
		width: 60px;
		height: 60px;
	}

	.video-title {
		font-size: 1.8rem;
	}

	.video-description {
		font-size: 1rem;
	}
}

.counter-milestone {
	max-width: fit-content;
}

.counter-milestone.passed .counter-milestone-marker {
	filter: none;
}

.passed .counter-milestone-marker {
	filter: none;
}

.counter-milestone.first-marker {
	transform: translateX(-50%);
}

.counter-milestone.last-marker {
	transform: translateX(50%);
}

button.hamburger-menu-link {
	background: none;
	border: none;
}

header.header.header-home {
	background: none;
}

button#videoPlayButton {
	margin-bottom: 2rem;
}

.header .mega-menu {
	background: rgba(255, 255, 255, 0.95);
}

.header .mega-menu-list a {
	color: black;
}

.header-home .mega-menu {
	/* background: rgba(22, 44, 77, 0.95); */
	top: 145px;
	/* padding-top: 0; */
}

.header-home .mega-menu-list a {
	/* color: white; */
}

/* News Section */
.news-section {
	padding: 6rem 0;
	background-color: #ffffff;
	padding-bottom: 0;
}

.news-main-title {
	font-size: 3rem;
	font-weight: 200;
	margin-bottom: 2rem;
	color: #23262a;
}

.featured-news {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.featured-news-image {
	width: 100%;
	height: auto;
	max-height: 600px;
	display: block;
	object-fit: cover;
}

.featured-news-overlay {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40%;
	max-height: 400px;
	background-color: #23262a;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #ffffff;
}

.featured-news-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.featured-news-description {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.featured-news-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.featured-news-link:hover {
	gap: 1rem;
}

.featured-news-link .arrow-icon {
	color: #06d870;
}

.arrow-icon {
	display: inline-block;
	transition: transform 0.3s ease;
}

.more-news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.more-news-title {
	font-size: 20px;
	font-weight: 700;
	color: #23262a;
	margin: 0;
}

.read-more-news-link {
	color: #23262a;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.read-more-news-link:hover {
	gap: 1rem;
}

.news-slider-container {
	width: 100%;
}

.news-card {
	background-color: #ffffff;
	padding: 1.5rem 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-date {
	color: #ff0000;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.news-card-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 1.5rem;
	line-height: 1.4;
	flex-grow: 1;
	padding-bottom: 1rem;
	text-decoration-line: underline;
	text-decoration-color: #00ff7f;
}

.news-details-link {
	color: #23262a;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	align-self: flex-end;
	transition: color 0.3s ease;
}

.news-details-link:hover {
	color: #00ff7f;
}

@media (max-width: 1024px) {
	.featured-news-overlay {
		width: 50%;
		padding: 2rem;
	}

	.featured-news-title {
		font-size: 1.5rem;
	}

	.featured-news-description {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.news-section {
		padding: 3rem 0;
	}

	.news-main-title {
		font-size: 2rem;
	}

	.featured-news-overlay {
		position: static;
		width: 100%;
		padding: 2rem;
		transform: none;
	}

	.more-news-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.more-news-title {
		font-size: 1.5rem;
	}

	.news-card-title {
		font-size: 1.1rem;
	}

	a.header-logo img {
		max-height: 40px;
	}

	header {
		max-height: 100px;
		min-height: 100px;
	}

	button#hamburgerMenuBtn img {
		max-height: 24px;
	}

	.featured-news-image {
		width: auto;
		height: 50vh;
	}

}

.more-news-header .arrow-icon {
	color: #ff2b0c;
	font-size: 2rem;
}

/* Events and Announcements Section */
.events-announcements-section {
	background-color: #ffffff;
	padding: 6rem 0;
}

.events-announcements-section .container {
	background-color: #23262a;
	padding: 2rem;
	color: #ffffff;
}

.events-wrapper,
.announcements-wrapper {
	/* margin-bottom: 4rem; */
}

.announcements-wrapper {
	margin-bottom: 0;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #ffffff;
	margin: 0;
}

.section-month {
	font-size: 2rem;
	font-weight: 300;
	color: #00ff7f;
}

.events-grid,
.announcements-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	/* margin-bottom: 2rem; */
}

.event-item,
.announcement-item {
	display: flex;
	gap: 1.5rem;
	padding-top: 1.5rem;
	padding-bottom: .5rem;
	border-top: 2px solid #00ff7f;
	align-items: flex-start;
}

.event-date-wrapper,
.announcement-date-wrapper {
	flex-shrink: 0;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.event-day,
.announcement-day {
	font-size: 1.2rem;
	font-weight: 400;
	color: #ffffff;
	text-transform: uppercase;
}

.event-month,
.announcement-month {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
}

.event-date,
.announcement-date {
	font-size: 3rem;
	font-weight: 700;
	color: #00ff7f;
	line-height: 1;
	order: 2;
}

.event-day-month-wrapper,
.announcement-day-month-wrapper {
	display: flex;
	flex-direction: column;
	order: 1;
	line-height: 1;
}

.event-content,
.announcement-content {
	flex: 1;
}

.event-image {
	width: 100%;
	height: auto;
	margin-bottom: 0.75rem;
	object-fit: cover;
}

.event-title,
.announcement-title {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #ffffff;
	margin: 0;
	text-align: right;
}

.section-footer {
	text-align: right;
	/* padding-top: 1rem; */
}

.events-announcements-section .read-more-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.events-announcements-section .read-more-link:hover {
	gap: 1rem;
}

.events-announcements-section .arrow-icon {
	color: #06d870;
}

@media (max-width: 1024px) {

	.events-grid,
	.announcements-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.events-announcements-section {
		padding: 3rem 0;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.section-month {
		font-size: 1.5rem;
	}

	.events-grid,
	.announcements-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.event-date,
	.announcement-date {
		font-size: 2rem;
	}
}

/* Technopark and Hospitals Section */
.technopark-hospitals-section {
	padding: 6rem 0;
	background-color: #ffffff;
}

.th-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
}

.th-item {
	text-decoration: none;
	display: block;
	transition: transform 0.3s ease;
}

.th-item:hover {
	transform: translateY(-5px);
}

.th-image-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.th-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.th-title-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	padding: 0.5rem 1rem;
}

.th-title {
	font-size: 1.5rem;
	font-weight: 300;
	color: #23262a;
	margin: 0;
	text-transform: uppercase;
}

.th-arrow-overlay {
	position: absolute;
	bottom: 1rem;
	right: 2rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.th-item:hover .th-arrow-overlay {
	opacity: 1;
}

.th-arrow {
	font-size: 2rem;
	color: #00ff7f;
	font-weight: bold;
}

.th-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #23262a;
	margin: 0;
}

@media (max-width: 768px) {
	.technopark-hospitals-section {
		padding: 3rem 0;
	}

	.th-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.th-title {
		font-size: 1.2rem;
	}

	.th-title-overlay {
		padding: 0.75rem 1.5rem;
	}
}

/* Research Video Section */
.research-video-section {
	padding: 4rem 0;
	background-color: #f8f9fa;
}

.research-video-wrapper {
	position: relative;
	width: 100%;
	/* max-width: 1200px; */
	margin: 0 auto;
}

.research-video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	background-color: #000;
	overflow: hidden;
}

.research-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.research-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	z-index: 10;
	display: flex;
	align-items: center;
	transition: opacity 0.3s ease;
}

/* .research-video-overlay-content removed - empty ruleset */

.research-video-play-button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	margin-bottom: 2rem;
}

.research-video-play-button:hover {
	transform: scale(1.1);
}

.research-video-text {
	color: #ffffff;
	text-align: left;
	max-width: 600px;
}

.research-video-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.research-video-description {
	font-size: 1.2rem;
	font-weight: 400;
	margin: 0 0 2rem 0;
	line-height: 1.6;
}

.research-action-button {
	display: inline-block;
	background-color: #00ff7f;
	color: #23262a;
	padding: 1rem 2rem;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.research-action-button:hover {
	background-color: #06d870;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.research-video-section {
		padding: 2rem 0;
	}

	.research-video-overlay {
		padding: 1.5rem;
	}

	.research-video-overlay-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.research-video-title {
		font-size: 1.8rem;
	}

	.research-video-description {
		font-size: 1rem;
	}

	.research-action-button {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}
}

/* Rector Quote Section */
.rector-quote-section {
	padding: 6rem 0;
	background-color: #ffffff;
}

.rector-quote-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.rector-image-wrapper {
	width: 100%;
}

.rector-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.rector-quote-content {
	position: relative;
}

.quote-icon {
	margin-bottom: 1rem;
}

.quote-icon-image {
	width: 60px;
	height: auto;
	display: block;
}

.rector-quote-text {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	color: #23262a;
	margin: 0 0 2rem 0;
	border: none;
	padding: 0;
}

.rector-info {
	margin-bottom: 2rem;
}

.rector-name {
	font-size: 1rem;
	font-weight: 600;
	color: #23262a;
	margin: 0 0 0.25rem 0;
}

.rector-title {
	font-size: 1rem;
	font-weight: 400;
	color: #23262a;
	margin: 0;
}

.rector-link {
	color: #fe6021;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}

.rector-link:hover {
	gap: 1rem;
}

.rector-link .arrow-icon {
	color: #fe6021;
}

@media (max-width: 1024px) {
	.rector-quote-wrapper {
		gap: 3rem;
	}

	.rector-quote-text {
		font-size: 1.6rem;
	}
}

@media (max-width: 768px) {
	.rector-quote-section {
		padding: 3rem 0;
	}

	.rector-quote-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.quote-icon-image {
		width: 60px;
	}

	.rector-quote-text {
		font-size: 1.3rem;
	}
}

/* Simple Quote Section (Our Strategy) */
.simple-quote-section {
	padding: 6rem 0;
	background-color: #ffffff;
}

.simple-quote-wrapper {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.simple-quote-content {
	position: relative;
}

.simple-quote-content .quote-icon {
	margin: 0 auto 1rem;
	display: flex;
	justify-content: center;
}

.simple-quote-content .quote-icon-image {
	width: 60px;
	height: auto;
	display: block;
}

.simple-quote-text {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	color: #23262a;
	margin: 0 0 2rem 0;
	border: none;
	padding: 0;
	text-align: center;
}

.simple-quote-info {
	margin-bottom: 0;
}

.quote-author-name {
	font-size: 1rem;
	font-weight: 600;
	color: #23262a;
	margin: 0 0 0.25rem 0;
}

.quote-author-title {
	font-size: 1rem;
	font-weight: 400;
	color: #23262a;
	margin: 0;
}

@media (max-width: 1024px) {
	.simple-quote-text {
		font-size: 1.6rem;
	}
}

@media (max-width: 768px) {
	.simple-quote-section {
		padding: 3rem 0;
	}

	.simple-quote-content .quote-icon-image {
		width: 50px;
	}

	.simple-quote-text {
		font-size: 1.3rem;
	}
}

/* Mission & Vision Section (Our Strategy) */
.mission-vision-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.split-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 0;
}

.mission-bg {
	width: 50%;
	background-color: #23262a;
}

.vision-bg {
	width: 50%;
	background-color: #404040;
}

.mission-vision-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.content-wrapper {
	display: flex;
	gap: 60px;
}

.mission-box,
.vision-box {
	width: 50%;
	color: #fff;
	text-align: center;
}

.box-title {
	font-size: 36px;
	font-weight: 300;
	margin: 0 0 25px 0;
	color: #fff;
}

.box-description {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

@media (max-width: 992px) {
	.mission-vision-section {
		padding: 80px 0;
	}

	.content-wrapper {
		flex-direction: column;
		gap: 50px;
	}

	.mission-box,
	.vision-box {
		width: 100%;
	}

	.split-background {
		flex-direction: column;
	}

	.mission-bg,
	.vision-bg {
		width: 100%;
		height: 50%;
	}

	.box-title {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	.mission-vision-section {
		padding: 60px 0;
	}

	.box-title {
		font-size: 26px;
		margin-bottom: 20px;
	}

	.box-description {
		font-size: 15px;
	}
}

/* Core Values Section (Our Strategy) */
.core-values-section {
	padding: 100px 0;
	background: #f8f9fa;
}

.core-values-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 40px;
}

.value-item {
	text-align: center;
	padding: 30px 20px;
	background: #fff;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.value-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.value-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 15px 0;
}

.value-description {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	margin: 0;
}

@media (max-width: 992px) {
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 30px;
	}
}

@media (max-width: 768px) {
	.core-values-section {
		padding: 60px 0;
	}

	.values-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.value-item {
		padding: 25px 15px;
	}

	.value-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}

	.value-title {
		font-size: 20px;
	}

	.value-description {
		font-size: 14px;
	}
}

/* Accordion Section (Our Strategy) */
.accordion-section {
	padding: 100px 0;
	background: #fff;
}

.accordion-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.accordion-section .section-title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #23262a;
	margin: 0 0 50px 0;
	text-align: left;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.accordion-item {
	border: none;
	border-bottom: 1px solid #e0e0e0;
	border-radius: 0;
	overflow: visible;
	background: transparent;
}

.accordion-item:last-child {
	border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
	margin: 0;
}

.accordion-button {
	width: 100%;
	padding: 25px 0;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: none;
	text-align: left;
}

.accordion-button:hover {
	background: transparent;
}

.accordion-button.collapsed .accordion-icon svg {
	transform: rotate(0deg);
}

.accordion-button:not(.collapsed) .accordion-icon svg {
	transform: rotate(45deg);
}

.accordion-title-text {
	font-size: 1.125rem;
	font-weight: 400;
	color: #23262a;
}

.accordion-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.accordion-icon svg {
	transition: transform 0.3s ease;
	stroke: #fe6021;
	width: 20px;
	height: 20px;
}

.accordion-collapse {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.accordion-collapse.show {
	max-height: 1000px;
}

.accordion-body {
	padding: 0 0 25px 0;
	border-top: none;
	max-height: 350px;
	overflow: auto;
	padding: 1rem;
}

.accordion-body p {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin: 0;
}

@media (max-width: 768px) {
	.accordion-section {
		padding: 60px 0;
	}

	.accordion-section .section-title {
		font-size: 2rem;
		margin-bottom: 40px;
	}

	.accordion-button {
		padding: 20px 0;
	}

	.accordion-title-text {
		font-size: 1rem;
	}

	.accordion-body {
		padding: 0 0 20px 0;
	}

	.accordion-body p {
		font-size: 0.938rem;
	}
}

/* Media Coverage Section */
.media-coverage-section {
	padding: 6rem 0;
	background-color: #ffffff;
}

.media-coverage-header {
	margin-bottom: 3rem;
}

.media-coverage-title {
	font-size: 3rem;
	font-weight: 200;
	color: #23262a;
	margin: 0;
}

.media-coverage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.media-coverage-item {
	display: flex;
	flex-direction: column;
}

.media-coverage-image-wrapper {
	width: 100%;
	margin-bottom: 1.5rem;
	overflow: hidden;
	min-height: 330px;
}

.media-coverage-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.media-coverage-item:hover .media-coverage-image {
	transform: scale(1.05);
}

.media-coverage-content {
	display: flex;
	flex-direction: column;
}

.media-coverage-date {
	color: #ff0000;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.media-coverage-item-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #23262a;
	margin: 0 0 1.5rem 0;
	line-height: 1.4;
	flex-grow: 1;
	text-decoration-line: underline;
	text-decoration-color: #00ff7f;
	text-decoration-thickness: 3px;
	text-underline-offset: 0.5rem;
}

.media-coverage-details-link {
	color: #23262a;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	align-self: flex-end;
	transition: color 0.3s ease;
}

.media-coverage-details-link:hover {
	color: #00ff7f;
}

.media-coverage-footer {
	text-align: center;
}

.more-news-button {
	display: inline-block;
	background-color: #00ff7f;
	color: #23262a;
	padding: 0.75rem 2rem;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 400;
	text-transform: uppercase;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.more-news-button:hover {
	background-color: #06d870;
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.media-coverage-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.media-coverage-section {
		padding: 3rem 0;
	}

	.media-coverage-title {
		font-size: 2rem;
	}

	.media-coverage-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.media-coverage-item-title {
		font-size: 1.1rem;
	}
}

/* Explore Biruni Section */
.explore-biruni-section {
	padding: 6rem 0;
	background-color: #ffffff;
}

.explore-biruni-title {
	font-size: 3rem;
	font-weight: 200;
	color: #23262a;
	margin: 0 0 3rem 0;
}

.explore-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1.5rem;
	height: 800px;
}

.explore-left {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 1.5rem;
}

.explore-bottom-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.explore-item {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
}

.explore-item-full {
	height: 100%;
}

.explore-item-tall {
	height: 100%;
}

.explore-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.explore-item:hover .explore-image {
	transform: scale(1.05);
}

.explore-label {
	position: absolute;
	background-color: #f0f0f0;
	color: #23262a;
	padding: 1rem 2rem;
	font-size: 1.5rem;
	font-weight: 300;
	text-transform: capitalize;
}

.explore-label-bottom-left {
	bottom: 0;
	left: 0;
}

.explore-label-top-left {
	top: 0;
	left: 0;
}

@media (max-width: 1024px) {
	.explore-grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.explore-left {
		grid-template-rows: 400px 400px;
	}

	.explore-item-tall {
		height: 600px;
	}
}

@media (max-width: 768px) {
	.explore-biruni-section {
		padding: 3rem 0;
	}

	.explore-biruni-title {
		font-size: 2rem;
	}

	.explore-grid {
		gap: 1rem;
	}

	.explore-left {
		grid-template-rows: 300px auto;
		gap: 1rem;
	}

	.explore-bottom-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.explore-item-tall {
		height: 500px;
	}

	.explore-label {
		font-size: 1.2rem;
		padding: 0.75rem 1.5rem;
	}
}

/* Awards and Accreditation Section */
.awards-section {
	padding-bottom: 6rem;
	background-color: #ffffff;
}

.awards-header {
	background-color: #fe6021;
	padding: 3rem 0 12rem 0;
}

.awards-title {
	font-size: 3rem;
	font-weight: 200;
	color: #ffffff;
	margin: 0;
}

.awards-slider-wrapper {
	position: relative;
	margin-top: -8rem;
	padding-bottom: 1rem;
}

.awards-swiper {
	padding: 0 60px;
	padding-bottom: 1rem;
}

.award-card {
	background-color: #ffffff;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	max-height: 430px;
	min-height: 430px;
}

.award-image-wrapper {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.award-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.award-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #23262a;
	margin: 0 0 1rem 0;
}

.award-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #23262a;
	margin: 0;
}

.awards-swiper-button-prev,
.awards-swiper-button-next {
	position: absolute;
	top: 0;
	height: 100%;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.3s ease;
}

.awards-swiper-button-prev {
	left: 0;
}

.awards-swiper-button-next {
	right: 0;
}

.awards-swiper-button-prev:hover,
.awards-swiper-button-next:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.awards-swiper-button-prev img,
.awards-swiper-button-next img {
	width: 24px;
	height: 24px;
}

@media (max-width: 1024px) {
	.awards-swiper {
		padding: 0 50px;
	}
}

@media (max-width: 768px) {
	.awards-header {
		padding: 3rem 0 8rem 0;
	}

	.awards-title {
		font-size: 2rem;
	}

	.awards-slider-wrapper {
		margin-top: -4rem;
	}

	.awards-swiper {
		padding: 0 40px;
	}

	.awards-swiper-button-prev,
	.awards-swiper-button-next {
		width: 40px;
	}

	.award-image-wrapper {
		height: 150px;
	}
}

/* International Cooperation Section */
.international-cooperation-section {
	padding: 6rem 0;
	background-color: #f9f9f9;
}

.cooperation-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: center;
}

.cooperation-text {
	padding-right: 2rem;
}

.cooperation-title {
	font-size: 3rem;
	font-weight: 200;
	color: #ff2b0c;
	margin: 0;
	line-height: 1.3;
}

.cooperation-map-wrapper {
	position: relative;
	margin-left: -1rem;
}

.cooperation-map-image {
	width: 100%;
	height: auto;
	display: block;
}

.map-pin {
	position: absolute;
	cursor: pointer;
	z-index: 2;
}

.map-pin-marker {
	width: 20px;
	height: 20px;
	background-color: #001f5f;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	position: relative;
	transition: transform 0.3s ease;
}

.map-pin-marker::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background-color: #ffffff;
	border-radius: 50%;
}

.map-pin:hover .map-pin-marker {
	transform: rotate(-45deg) scale(1.2);
}

.map-pin-tooltip {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffffff;
	padding: 0.75rem 1rem;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	white-space: nowrap;
	margin-bottom: 10px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 10;
}

.map-pin-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #ffffff;
}

.map-pin:hover .map-pin-tooltip {
	opacity: 1;
	pointer-events: auto;
}

.pin-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 0.25rem;
}

.pin-location {
	font-size: 0.85rem;
	color: #666666;
}

/* Biruni University Special Pin */
.map-pin-biruni {
	z-index: 5;
}

.biruni-pin-marker {
	width: 16px;
	height: 16px;
	background-color: #fe6021;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 0 0 0 rgba(254, 96, 33, 0.7);
	animation: biruniPulse 2s infinite;
}

@keyframes biruniPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(254, 96, 33, 0.7);
	}

	50% {
		box-shadow: 0 0 0 10px rgba(254, 96, 33, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(254, 96, 33, 0);
	}
}

.biruni-pin-logo {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 8px;
	background-color: #ffffff;
	padding: 0.5rem;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.map-pin-biruni:hover .biruni-pin-logo,
.map-pin-biruni.fake-mouse-hover .biruni-pin-logo {
	opacity: 1;
	pointer-events: auto;
}

.biruni-logo-image {
	width: 80px;
	height: auto;
	display: block;
}

@media (max-width: 1024px) {
	.cooperation-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.cooperation-text {
		padding-right: 0;
		text-align: center;
	}

	.cooperation-map-wrapper {
		margin-left: 0;
		overflow: hidden;
	}
}

@media (max-width: 768px) {
	.international-cooperation-section {
		padding: 3rem 0;
	}

	.cooperation-title {
		font-size: 2rem;
	}

	.map-pin-marker {
		width: 16px;
		height: 16px;
	}

	.biruni-pin-marker {
		width: 12px;
		height: 12px;
	}

	.biruni-logo-image {
		width: 60px;
	}
}

/* Fake Mouse Cursor */
.fake-mouse-cursor {
	position: absolute;
	pointer-events: none;
	z-index: 100;
	font-size: 1.5rem;
	color: #23262a;
	opacity: 1;
	transition: opacity 0.3s ease;
	transform: translate(-50%, -50%);
}

.fake-mouse-cursor i {
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Fake Mouse Hover Effect */
.map-pin.fake-mouse-hover .map-pin-marker {
	transform: rotate(-45deg) scale(1.2);
}

.map-pin.fake-mouse-hover .map-pin-tooltip {
	opacity: 1;
	pointer-events: auto;
}

.map-pin-marker::after {
	width: 6px;
	height: 6px;
}

/* Footer */
.footer {
	background-color: #3b3b3b;
	padding: 2rem 0 1rem;
	color: #ffffff;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 2rem;
}

.footer-left {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.footer-logo {
	height: 80px;
	width: auto;
	flex-shrink: 0;
}

.footer-divider {
	width: 2px;
	align-self: stretch;
	background-color: #ffffff;
	flex-shrink: 0;
}

.footer-address {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.address-text {
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 1.4;
}

.address-contact {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0;
}

.footer-phone {
	color: #00ff7f;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: opacity 0.3s ease;
}

.footer-phone:hover {
	opacity: 0.8;
}

.footer-email {
	color: #00ff7f;
	text-decoration: none;
	font-weight: 300;
	font-size: 1rem;
	transition: opacity 0.3s ease;
}

.footer-email:hover {
	opacity: 0.8;
}

.footer-right {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer-nav {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.footer-nav-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-nav-link:hover {
	color: #00ff7f;
}

.footer-newsletter-social {
	display: flex;
	gap: 3rem;
	align-items: flex-start;
}

.footer-newsletter {
	flex: 1;
}

.newsletter-label {
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: #ffffff;
	margin-bottom: 0;
	font-family: 'Poppins', sans-serif;
}

.newsletter-form {
	display: flex;
	gap: 0;
}

.newsletter-input {
	flex: 1;
	padding: 0.65rem 1rem;
	background-color: #535353;
	border: none;
	border-radius: 4px 0 0 4px;
	color: #ffffff;
	font-size: 0.9rem;
	outline: none;
	font-family: 'Poppins', sans-serif;
	max-height: 30px;
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
	padding: 0.35rem 0.5rem;
	background-color: #00ff7f;
	border: none;
	border-radius: 0 4px 4px 0;
	color: #001f5f;
	font-weight: 600;
	font-size: 0.75rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: 'Poppins', sans-serif;
	max-height: 30px;
}

.newsletter-submit:hover {
	background-color: #00dd6f;
}

.footer-social {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-top: 0.70rem;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff85;
	font-size: 1.1rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.social-link:hover {
	color: #00ff7f;
}

.footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-copyright {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.footer-legal {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.footer-legal-link {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-legal-link:hover {
	color: rgba(255, 255, 255, 0.8);
}

.legal-separator {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.footer-left {
		flex-direction: column;
		gap: 1.5rem;
	}

	.footer-divider {
		width: 100%;
		height: 2px;
		align-self: auto;
	}

	.footer-newsletter-social {
		flex-direction: column;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 3rem 0 1.5rem;
	}

	.footer-nav {
		flex-direction: column;
		gap: 1rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-legal {
		flex-wrap: wrap;
		justify-content: center;
	}

	.address-contact {
		flex-direction: column;
		gap: 0.5rem;
	}

	.counter-section {
		padding-bottom: 2rem;
		padding-top: 3rem;
	}

	div#researchVideoContainer {
		height: 60vh;
	}
}

.biruni-pin-marker {
	width: 12px;
	height: 12px;
}

.biruni-logo-image {
	width: 60px;
}

html {
	max-width: 100vw;
	overflow-x: hidden;
}

.counter-mobile-milestone:nth-child(1) {
	top: -20px;
}


.counter-mobile-milestone:last-child {
	top: -20px;
}

.counter-mobile-marker {
	left: -2.7rem;
}

.world-map-text-wrapper {
	max-height: 0;
	z-index: 9;
	position: relative;
}

.world-map-text-wrapper .cooperation-text {
	top: 200px;
	position: relative;
}

.world-map-wrapper {
	height: 600px;
	overflow: hidden;
	position: relative;
}

.world-map-wrapper svg {
	position: absolute;
	right: 0;
	top: 0;
}

.footer {
	position: relative;
}

/* Page Header with Menu Component */
@import url('https://fonts.googleapis.com/css2?family=Unica+One&display=swap');

.page-header-with-menu {
	width: 100%;

	/* header height: 150px + top: 40px */
}

.page-header-with-menu .page-hero {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	background-position: center;
	background-size: 100%;
}

.page-header-with-menu .page-hero .hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-header-with-menu .page-hero .hero-title {
	color: white;
	font-size: 48px;
	font-weight: bold;
	margin: 0;
	line-height: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
	align-items: flex-start;
}

.page-header-with-menu .page-hero .hero-title .title-line {
	background-color: #fe6021;
	padding: 3px;
	display: inline-block;
	text-transform: capitalize;
}

.page-header-with-menu .page-banner {
	background-color: #fd3719;
	display: flex;
	justify-content: center;
	padding: 0.5rem 0.2rem;
	margin-top: -104px;
	margin-bottom: 10px;
}

.page-header-with-menu .page-banner .banner-title {
	font-family: 'Unica One';
	color: white;
	font-size: 36px;
	font-weight: 400;
	margin: 0;
	letter-spacing: 2px;
	width: 100%;
	padding: 0 20px;
}

.page-header-with-menu .page-menu {
	background-color: #f5f5f5;
	padding: 40px 0 60px;
	display: flex;
	justify-content: center;
}

.page-header-with-menu .page-menu .menu-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	padding: 0 20px;
}

/* Default: 3 items per row */
.page-header-with-menu .page-menu .menu-grid>* {
	flex: 1 1 calc(33.333% - 20px);
	min-width: 250px;
}

/* 4 items per row when total count is divisible by 4 (4, 8, 12, etc.) */
.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(4):first-child,
.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(4):first-child~* {
	flex: 1 1 calc(25% - 20px);
}

.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(8):first-child,
.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(8):first-child~* {
	flex: 1 1 calc(25% - 20px);
}

.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(12):first-child,
.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(12):first-child~* {
	flex: 1 1 calc(25% - 20px);
}

.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(16):first-child,
.page-header-with-menu .page-menu .menu-grid>*:nth-last-child(16):first-child~* {
	flex: 1 1 calc(25% - 20px);
}

.page-header-with-menu .page-menu .menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s ease;
	position: relative;
	border-bottom: 2px solid #fe60215c;
}

/* .page-header-with-menu .page-menu .menu-item:hover removed - empty ruleset with only comments */

.page-header-with-menu .page-menu .menu-item .menu-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}

.page-header-with-menu .page-menu .menu-item .menu-label {
	flex: 1;
	font-size: 18px;
	font-weight: 500;
}

.page-header-with-menu .page-menu .menu-item .menu-arrow {
	color: #fe6021;
	flex-shrink: 0;
	opacity: 1;
	transition: all 0.3s ease;
}

.page-header-with-menu .page-menu .menu-item:hover .menu-arrow {
	transform: translateX(3px);
}

@media (max-width: 1024px) {
	.page-header-with-menu .page-menu .menu-grid>* {
		flex: 1 1 calc(50% - 20px);
		min-width: 200px;
	}

	.page-header-with-menu .page-hero .hero-overlay {
		left: 40px;
	}

	.page-header-with-menu .page-banner,
	.page-header-with-menu .page-menu {
		padding-left: 40px;
		padding-right: 40px;
	}
}

@media (max-width: 768px) {
	.page-header-with-menu .page-hero {
		height: 400px;
		background-size: cover;
	}

	.page-header-with-menu .page-hero .hero-title {
		font-size: 32px;
		padding: 6px 15px;
	}

	.page-header-with-menu .page-banner .banner-title {
		font-size: 28px;
	}

	.page-header-with-menu .page-menu .menu-grid>* {
		flex: 1 1 100%;
	}

	.page-header-with-menu .page-hero .hero-overlay {
		left: 20px;
	}

	.page-header-with-menu .page-banner,
	.page-header-with-menu .page-menu {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.page-header-content {
	background: #fe6021;
	padding-bottom: 4rem;
}

.page-header-content .container {
	margin-top: -104px;
	position: relative;
}

/* Rector Page Styles */
.rector-page {
	width: 100%;
}

.rector-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.rector-hero .rector-photo {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

.rector-hero .rector-info-overlay {
	flex-wrap: wrap;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.rector-hero .rector-name {
	background-color: #000;
	color: white;
	font-size: 40px;
	font-weight: bold;
	margin: 0;
	line-height: 1;
	padding: 5px 10px;
	max-width: fit-content;
}

.rector-hero .rector-title {
	background-color: #000;
	color: white;
	font-size: 40px;
	font-weight: 300;
	padding: 0;
	margin: 0;
	line-height: 1;
	padding: 5px 10px;
	max-width: fit-content;
}

@media (max-width: 768px) {
	.rector-hero {
		height: 400px;
	}

	.rector-hero .rector-info-overlay {
		left: 20px;
	}

	.rector-hero .rector-name {
		font-size: 20px;
		padding: 10px 16px;
	}

	.rector-hero .rector-title {
		font-size: 16px;
		padding: 8px 16px;
	}
}

.rector-title-wrapper {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

/* Vice-Chancellors Grid */
.vice-chancellors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 20px;
	margin-top: 40px;
	margin-bottom: 60px;
}

.vc-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	cursor: pointer;
	max-width: 450px;
}

.vc-card .vc-image-box {
	width: 100%;
	height: 300px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.vc-card .vc-image {
	width: calc(100% - 2rem);
	height: 100%;
	object-fit: cover;
}

.vc-card .vc-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	margin-top: -30px;
	position: relative;
	margin-left: 2rem;
	background: #f9f9f9;
}

.vc-card .vc-name {
	font-size: 30px;
	font-weight: 900;
	color: #2d2d2d;
	margin: 0;
	line-height: 1.3;
}

.vc-card .vc-faculty {
	font-size: 20px;
	color: #666;
	margin: 0;
	font-weight: 600;
}

.vc-card .vc-description {
	font-size: 18px;
	color: #4a4a4a;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.vc-card .vc-read-more {
	align-self: flex-end;
	font-size: 16px;
	color: #2d2d2d;
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.3s ease;
}

.vc-card .vc-read-more:hover {
	color: #fe6021;
}

@media (max-width: 500px) {
	.vice-chancellors-grid {
		grid-template-columns: 1fr;
	}
}

/* Leadership Sections */
.leadership-sections {
	padding-top: 40px;
	padding-bottom: 60px;
}

.leadership-section {
	scroll-margin-top: 220px;
	/* Header height + some spacing */
	margin-bottom: 60px;
}

.leadership-section:last-child {
	margin-bottom: 0;
}

.bold-header {
	text-align: center;
	margin: 2rem;
}

.bold-header h2 {
	font-weight: 700;
	color: #162c4d;
}

.vice-chancellors-grid .vc-content-green {
	border-top: 1.9rem solid #00ff7f;
}

.vice-chancellors-grid .vc-card:hover .vc-content-green {
	background: #00ff7f;
}

.vice-chancellors-grid .vc-content-orange {
	border-top: 1.9rem solid #fe6021;
}

.vice-chancellors-grid .vc-card:hover .vc-content-orange {
	background: #fe6021;
}

.vice-chancellors-grid .vc-content-blue {
	border-top: 1.9rem solid #0eacc5;
}

.vice-chancellors-grid .vc-card:hover .vc-content-blue {
	background: #0eacc5;
}

/* Go to Top Button */
.go-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: #fe6021;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(254, 96, 33, 0.3);
}

.go-to-top:hover {
	background-color: #fd3719;
	transform: translateY(0);
	box-shadow: 0 6px 16px rgba(254, 96, 33, 0.4);
}

.go-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.go-to-top {
		bottom: 20px;
		right: 20px;
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.page-header-with-menu {
		margin-top: 140px;
	}
}

/* Vice Chancellor Person Section */
.vc-person {
	padding: 60px 0;
}

.vc-person-row {
	display: flex;
	align-items: center;
	gap: 60px;
}

.vc-person-info {
	flex: 2;
}

.vc-person-name {
	font-size: 5rem;
	font-weight: bold;
	line-height: 1.2;
	margin: 0;
	color: #2d2d2d;
}

.vc-person-image {
	flex: 1;
}

.vc-person-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 8px;
}

@media (max-width: 768px) {
	.vc-person-row {
		flex-direction: column;
		gap: 30px;
	}

	.vc-person-name {
		font-size: 3rem;
	}
}

/* Vice Chancellor Content Section */
.vc-content-section {
	padding: 60px 0;
	background-color: #ffffff;
}

.vc-description {
	margin-bottom: 40px;
}

.vc-description p {
	font-size: 16px;
	line-height: 1.8;
	color: #4a4a4a;
	margin-bottom: 20px;
}

.read-more-link {
	display: inline-block;
	color: #fe6021;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	/* margin-top: 10px; */
	transition: color 0.3s ease;
}

.read-more-link:hover {
	color: #fd3719;
}

/* Tabs */
.vc-tabs {
	margin-top: 40px;
}

.tab-buttons {
	display: flex;
	gap: 0;
	border-bottom: 2px solid #e0e0e0;
	margin-bottom: 30px;
}

.tab-button {
	background-color: transparent;
	border: none;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.tab-button.active {
	background-color: #fe6021;
	color: white;
}

.tab-button:hover:not(.active) {
	color: #fe6021;
}

.tab-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.tab-content.active {
	display: block;
}

.tab-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #4a4a4a;
}

.tab-content em {
	font-style: italic;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.tab-button {
		padding: 12px 20px;
		font-size: 14px;
	}

	.vc-person-info {
		text-align: center;
	}
}

main.page-content {
	margin-top: 150px;
}

.vc-person-image img {
	border-radius: 0;
	position: relative;
	z-index: 2;
}

.vc-person-image:before {
	content: "";
	height: 30%;
	width: 30%;
	background: transparent;
	position: absolute;
	top: -30px;
	left: -30px;
	z-index: 0;
	border-top: 20px solid #00ff7f;
	border-left: 20px solid #00ff7f;
}

.vc-person-image {
	position: relative;
	z-index: 1;
}

.vc-person-image:after {
	content: "";
	position: absolute;
	bottom: -50px;
	right: -50px;
	background: transparent;
	width: 50%;
	height: 50%;
	z-index: 0;
	border-right: 20px solid #00ff7f;
	border-bottom: 20px solid #00ff7f;
}

/* About Rector Section */
.about-rector-section {
	padding: 0;
	background-color: #f0f0f0;
}

.rector-tab-buttons-wrapper {
	width: 100%;
	background-color: white;
	padding: 30px 0;
}

.rector-tabs {
	width: 100%;
	padding: 60px 0;
}

.rector-tab-buttons {
	display: flex;
	gap: 0;
	justify-content: center;
}

.rector-tab-button {
	background-color: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	padding: 15px 30px;
	font-size: 18px;
	font-weight: 400;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	margin-bottom: -2px;
	text-decoration: none;
	color: black;
	font-weight: 600;
}

.rector-tab-button.active {
	color: #2d2d2d;
	border-bottom-color: #00ff7f;
	font-weight: 700;
}

.rector-tab-button:hover:not(.active) {
	color: #00ff7f;
}

.rector-tab-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.rector-tab-content.active {
	display: block;
}

.rector-vision-section {
	padding: 60px 0;
	text-align: left;
}

.rector-vision-title {
	font-size: 36px;
	font-weight: 400;
	color: #2d2d2d;
	margin: 0 0 30px 0;
	font-family: 'Metropolis', sans-serif;
}

.rector-vision-text {
	font-size: 16px;
	line-height: 1.8;
	color: #4a4a4a;
	margin: 0 0 40px 0;
}

.rector-vision-button {
	display: inline-block;
	background-color: #fe6021;
	color: white;
	padding: 0.5rem 1rem;
	font-size: 1.5rem;
	font-weight: 300;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease;
}

.rector-vision-button:hover {
	background-color: #fd3719;
}

.about-rector-biography {
	background-color: #fd6021;
	padding: 60px 0;
}

.rector-biography-section {
	padding: 0;
	text-align: left;
}

.rector-biography-title {
	font-size: 36px;
	font-weight: 400;
	color: #f2f2f2;
	margin: 0 0 30px 0;
	font-family: 'Metropolis', sans-serif;
}

.rector-biography-text {
	font-size: 16px;
	line-height: 1.8;
	color: #ffffff;
	margin: 0 0 40px 0;
}

.rector-biography-button {
	display: inline-block;
	background-color: #5a5a5a;
	color: white;
	padding: 0.5rem 1rem;
	font-size: 1.5rem;
	font-weight: 300;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease;
}

.rector-biography-button:hover {
	background-color: #3a3a3a;
}

.rector-content-row {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.rector-photo-wrapper {
	flex: 0 0 400px;
	position: relative;
}

.rector-photo-frame {
	position: relative;
	border: 8px solid #00ff7f;
	border-right: none;
	border-bottom: none;
	padding: 20px 0 0 20px;
}

.rector-photo-frame img {
	width: 100%;
	height: auto;
	display: block;
}

.rector-text-wrapper {
	flex: 1;
	padding: 40px;
}

.rector-quote p {
	font-size: 16px;
	line-height: 1.8;
	color: #4a4a4a;
	margin-bottom: 30px;
}

.rector-signature {
	margin-top: 30px;
}

.rector-name-text {
	font-size: 18px;
	font-weight: bold;
	color: #2d2d2d;
	margin: 0 0 5px 0;
}

.rector-position-text {
	font-size: 16px;
	color: #666;
	margin: 0;
}

@media (max-width: 992px) {
	.rector-content-row {
		flex-direction: column;
		gap: 30px;
	}

	.rector-photo-wrapper {
		flex: 0 0 auto;
		width: 100%;
		max-width: 400px;
	}
}

@media (max-width: 768px) {
	.rector-tab-button {
		padding: 12px 20px;
		font-size: 16px;
	}

	.rector-text-wrapper {
		padding: 30px 20px;
	}

	.rector-photo-wrapper {
		max-width: 300px;
		display: block;
		margin: auto;
	}

	.rector-photo-wrapper img {
		max-width: 100%;
	}

}

.vc-info-band {
	padding: 2rem 0rem;
	background: #f6f6f6;
	margin-top: 5rem;
}

.vc-person-info p {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	max-width: 25rem;
}

.rector-photo:after {
	content: "";
	position: absolute;
	top: -30px;
	left: -30px;
	width: 30%;
	height: 30%;
	border-left: 15px solid #00ff7f;
	border-top: 15px solid #00ff7f;
}

.rector-photo:before {
	content: "";
	position: absolute;
	bottom: -40px;
	right: -30px;
	width: 50%;
	height: 50%;
	border-right: 15px solid #00ff7f;
	border-bottom: 15px solid #00ff7f;
}

.rector-photo img {
	box-shadow: 15px 15px 0px #8080806b;
}

.rector-quote p {
	font-weight: 600;
	font-size: 1.3rem;
}

.rector-signature p {
	font-size: 1.3rem;
}

/* ============================================
   COMPONENT STYLES - Moved from component files
   ============================================ */

/* Research Head Component */
.research-head {
	width: 100%;
	position: relative;
}

.research-head-hero {
	width: 100%;
	position: relative;
	min-height: 500px;
	overflow: hidden;
}

.research-head-background {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.research-head-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.research-head-dark-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.research-head-hero .container {
	position: relative;
	height: 100%;
	z-index: 3;
}

.research-head-container {
	min-height: 500px;
}

.research-head-top-box {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ff6a1a;
	z-index: 4;
	width: fit-content;
}

.research-head-top-title {
	font-size: 41px;
	letter-spacing: 1px;
	line-height: 1.2;
}

.research-head-banner {
	transform: translateY(-50%);
	background-color: #ff2b0c;
	padding: 0px;
	width: 100%;
	text-align: center;
	position: absolute;
	z-index: 3;
	margin-top: -39px;
}

.research-head-banner-title {
	font-size: 45px;
	letter-spacing: 0px;
	line-height: 1.2;
	text-align: left;
	font-weight: 300 !important;
	padding: 0px 26px;
	font-family: "Unica One", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.research-head-bottom {
	background-color: #fe6021;
	padding: 0px 10px 30px 10px;
	position: relative;
}

.research-head-menu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	background-color: #fff;
	padding: 41px 40px 20px 32px;
}

.research-head-menu-item {
	display: block;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.research-head-menu-item:hover {
	transform: translateY(-5px);
}

.research-head-menu-box {
	flex-direction: column;
	gap: 1rem;
	text-align: left;
	height: 100%;
	transition: box-shadow 0.3s ease;
	border-bottom: 2px solid #ff6a1a;
	padding: 10px 12px 18px 10px;
}

.research-head-menu-item:hover .research-head-menu-box {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.research-head-menu-icon {
	width: 33px;
	height: 33px;
	object-fit: contain;
	flex-shrink: 0;
	filter: grayscale(100%);
}

.research-head-menu-label {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
	color: #000;
}

.research-head-menu-underline {
	width: 80%;
	height: 2px;
	background-color: #ff6a1a;
	margin-top: 0.5rem;
}

@media (max-width: 992px) {
	.research-head-hero {
		min-height: 400px;
	}

	.research-head-banner-title {
		font-size: 2.25rem;
		letter-spacing: 2px;
	}

	.research-head-bottom {
		padding: 2.5rem 0;
	}

	.research-head-menu-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.research-head-menu-box {
		padding: 1.75rem 1.25rem;
	}
}

@media (max-width: 768px) {
	.research-head-hero {
		min-height: 350px;
	}

	.research-head-top-box {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		padding: 0.4rem 1rem;
	}

	.research-head-top-title {
		font-size: 0.75rem;
	}

	.research-head-banner {
		padding: 1rem 0;
	}

	.research-head-banner-title {
		font-size: 1.75rem;
		letter-spacing: 1.5px;
	}

	.research-head-bottom {
		padding: 2rem 0;
	}

	.research-head-menu-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.research-head-menu-box {
		padding: 1.5rem 1rem;
	}

	.research-head-menu-icon {
		width: 40px;
		height: 40px;
	}

	.research-head-menu-label {
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.research-head-hero {
		min-height: 300px;
	}

	.research-head-banner-title {
		font-size: 1.25rem;
	}

	.research-head-menu-icon {
		width: 30px;
		height: 30px;
	}

	.research-head-menu-label {
		font-size: 0.875rem;
	}
}

/* Faculty Team Accordion Component */
.faculty-team-section {
	background-color: #ffffff;
}

.faculty-team-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
}

.faculty-member-row {
	background-color: #f5f5f5;
	padding: 1.5rem 2rem;
	margin-bottom: 0.5rem;
	transition: background-color 0.3s ease;
}

.faculty-member-row:hover {
	background-color: #eeeeee;
}

.faculty-member-hidden {
	display: none;
}

.faculty-member-name-section {
	padding-right: 1rem;
}

.faculty-member-name {
	font-size: 1.125rem;
	font-weight: 600;
	color: #0d6efd;
	margin-bottom: 0.25rem;
}

.faculty-member-subtitle {
	font-size: 0.875rem;
	color: #6c757d;
	font-style: italic;
}

.faculty-member-research-section {
	padding: 0 1rem;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
}

.research-areas-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}


.expand-discover-btn {
	background-color: #ff6a1a;
	color: #ffffff;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: background-color 0.3s ease;
}

.expand-discover-btn:hover {
	background-color: #e55a10;
}

.expand-icon-white {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1;
}

.research-areas-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.research-areas-list li {
	font-size: 0.9375rem;
	color: #23262a;
	line-height: 1.8;
	padding-left: 1rem;
	position: relative;
}

.research-areas-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #23262a;
}

.faculty-member-summary-section {
	padding-left: 1rem;
}

.summary-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.summary-toggle:hover {
	opacity: 0.8;
}

.summary-title {
	font-size: 0.875rem;
	font-weight: 600;
	color: #23262a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.expand-icon-red {
	font-size: 1.5rem;
	font-weight: bold;
	color: #dc3545;
	line-height: 1;
}

.summary-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #23262a;
	margin-top: 0.75rem;
}


.partnerships-image-block {
	width: 100%;
	overflow: hidden;
}

.partnerships-content {
	padding: 2rem;
	background-color: #ffffff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.partnerships-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
}

.partnerships-text {
	font-size: 0.9375rem;
	line-height: 1.8;
	color: #23262a;
	text-align: justify;
	margin-bottom: 1rem;
}

.partnerships-text:last-child {
	margin-bottom: 0;
}

.expand-discover-wrapper {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
}

.expand-discover-wrapper.hidden {
	display: none;
}

@media (max-width: 992px) {
	.faculty-team-title {
		font-size: 2rem;
	}

	.partnerships-title {
		font-size: 2rem;
	}

	.faculty-member-row {
		padding: 1.25rem 1.5rem;
	}

	.faculty-member-research-section {
		border-left: none;
		border-right: none;
		border-top: 1px solid #e0e0e0;
		border-bottom: 1px solid #e0e0e0;
		padding: 1rem 0;
		margin: 1rem 0;
	}

	.faculty-member-summary-section {
		padding-left: 0;
		padding-top: 1rem;
		border-top: 1px solid #e0e0e0;
	}

	.partnerships-content {
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 768px) {
	.faculty-team-title {
		font-size: 1.75rem;
	}

	.partnerships-title {
		font-size: 1.75rem;
	}

	.faculty-member-row {
		padding: 1rem;
	}

	.faculty-member-name {
		font-size: 1rem;
	}

	.expand-discover-btn {
		font-size: 0.75rem;
		padding: 0.625rem 1.25rem;
	}

	.partnerships-content {
		padding: 1.5rem;
	}

	.partnerships-text {
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.faculty-team-title {
		font-size: 1.5rem;
	}

	.partnerships-title {
		font-size: 1.5rem;
	}

	.faculty-member-name-section {
		padding-right: 0;
		margin-bottom: 0.75rem;
	}

	.partnerships-image-block img {
		min-height: 300px;
	}
}

/* Sport Grounds Component */
.sport-grounds-section {
	background-color: #fe6021;
	padding: 4rem 0;
}

.sport-grounds-title {
	font-size: 2.5rem;
	color: #6c757d;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.sport-grounds-content {
	/* padding: 2rem; */
	border-radius: 8px;
}

.sport-grounds-tabs-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.sport-grounds-tabs {
	display: flex;
	gap: 0;
	flex-wrap: nowrap;
	min-width: fit-content;
}

.sport-grounds-tab {
	background-color: #003c6d;
	color: #ffffff;
	border: none;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	border-radius: 4px 4px 0 0;
	margin-right: 0.5rem;
}

.sport-grounds-tab:last-child {
	margin-right: 0;
}

.sport-grounds-tab:hover:not(.active) {
	background-color: #004d8c;
}

.sport-grounds-tab.active {
	background-color: var(--active-tab-bg-color, #ffffff);
	color: var(--active-tab-text-color, #23262a);
	font-weight: 500;
}

.sport-grounds-tabs-contents {
	position: relative;
	min-height: 400px;
	background-color: var(--content-area-bg-color, #ffffff);
	padding: 30px;
}

.sport-grounds-tab-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.sport-grounds-tab-content.active {
	display: block;
}

.sport-grounds-text-content {
	padding: 2rem 2rem 2rem 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.sport-grounds-content-title {
	font-size: 1.5rem;
	color: #23262a;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.sport-grounds-status {
	font-size: 1rem;
	color: #28a745;
	font-weight: 500;
}

.sport-grounds-hours {
	font-size: 1rem;
	color: #6c757d;
	font-weight: 400;
	line-height: 1.5;
}

.sport-grounds-links {
	margin-top: 1rem;
}

.sport-grounds-link {
	font-size: 0.9375rem;
	color: #0d6efd;
	text-decoration: underline;
	font-weight: 400;
	line-height: 1.8;
	transition: color 0.3s ease;
	display: inline-block;
}

.sport-grounds-link:hover {
	color: #0a58ca;
	text-decoration: underline;
}

.sport-grounds-carousel-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.sport-grounds-carousel {
	position: relative;
	width: 100%;
	min-height: 400px;
	overflow: hidden;
}

.sport-grounds-carousel-container {
	position: relative;
	width: 100%;
	height: 100%;
}

.sport-grounds-carousel-slide {
	display: none;
	width: 100%;
	height: 100%;
}

.sport-grounds-carousel-slide.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.sport-grounds-carousel-image {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
	display: block;
}

.sport-grounds-carousel-prev,
.sport-grounds-carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(108, 117, 125, 0.7);
	color: #ffffff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	z-index: 10;
}

.sport-grounds-carousel-prev {
	left: 15px;
}

.sport-grounds-carousel-next {
	right: 15px;
}

.sport-grounds-carousel-prev:hover,
.sport-grounds-carousel-next:hover {
	background-color: rgba(108, 117, 125, 0.9);
}

.sport-grounds-carousel-prev span,
.sport-grounds-carousel-next span {
	line-height: 1;
}

/* Accordion styles */
.sport-grounds-accordions {
	margin-top: 1.5rem;
}

.sport-grounds-accordion-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 0.5rem;
}

.sport-grounds-accordion-header {
	width: 100%;
	background: none;
	border: none;
	padding: 1rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
}

.sport-grounds-accordion-header:hover {
	opacity: 0.8;
}

.sport-grounds-accordion-title {
	font-size: 1rem;
	font-weight: 600;
}

.sport-grounds-accordion-icon {
	font-size: 1.5rem;
	font-weight: 300;
	min-width: 30px;
	text-align: center;
}

.sport-grounds-accordion-icon .icon-plus {
	display: none;
}

.sport-grounds-accordion-item:not(.active) .sport-grounds-accordion-icon .icon-minus {
	display: none;
}

.sport-grounds-accordion-item:not(.active) .sport-grounds-accordion-icon .icon-plus {
	display: inline;
}

.sport-grounds-accordion-content {
	max-height: 500px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.sport-grounds-accordion-item:not(.active) .sport-grounds-accordion-content {
	max-height: 0 !important;
	transition: max-height 0.3s ease;
	padding: 0;
}

.sport-grounds-accordion-text {
	padding: 0 0 1rem 0;
	line-height: 1.6;
	font-size: 0.95rem;
}

@media (max-width: 992px) {
	.sport-grounds-title {
		font-size: 2rem;
	}

	.sport-grounds-text-content {
		padding: 2rem 0;
		margin-bottom: 2rem;
	}

	.sport-grounds-carousel-image {
		min-height: 350px;
	}
}

@media (max-width: 768px) {
	.sport-grounds-section {
		padding: 3rem 0 !important;
	}

	.sport-grounds-content {
		padding: 1.5rem;
	}

	.sport-grounds-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem !important;
	}

	.sport-grounds-tabs-wrapper {
		margin-bottom: 1.5rem;
	}

	.sport-grounds-tab {
		padding: 0.75rem 1.25rem;
		font-size: 0.875rem;
	}

	.sport-grounds-content-title {
		font-size: 1.25rem;
	}

	.sport-grounds-carousel-image {
		min-height: 300px;
	}
}

@media (max-width: 576px) {
	.sport-grounds-section {
		padding: 2rem 0 !important;
	}

	.sport-grounds-content {
		padding: 1rem;
	}

	.sport-grounds-title {
		font-size: 1.5rem;
	}

	.sport-grounds-tab {
		padding: 0.625rem 1rem;
		font-size: 0.8125rem;
	}

	.sport-grounds-text-content {
		padding: 1.5rem 0;
	}

	.sport-grounds-content-title {
		font-size: 1.125rem;
	}

	.sport-grounds-status,
	.sport-grounds-hours {
		font-size: 0.9375rem;
	}

	.sport-grounds-link {
		font-size: 0.875rem;
	}

	.sport-grounds-carousel-image {
		min-height: 250px;
	}

	.sport-grounds-carousel-prev,
	.sport-grounds-carousel-next {
		width: 35px;
		height: 35px;
		font-size: 1.25rem;
	}
}

/* Boxs Component */
.boxs-component-section {
	background-color: #ffffff;
}

.boxs-component-card {
	background-color: #2c2c2c;
	padding: 2rem 1.5rem;
	min-height: 250px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.boxs-component-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(44, 44, 44, 0.75);
	z-index: 1;
}

.boxs-component-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.boxs-component-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex: 1;
	height: 100%;
	min-height: 100%;
	position: relative;
	z-index: 2;
}

.boxs-component-title {
	font-size: 24px;
	line-height: 1.4;
	word-wrap: break-word;
	margin: 0;
	text-align: center;
}

.boxs-component-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	text-align: center;
	font-size: 0.875rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	width: 100%;
	margin-top: auto;
	flex-shrink: 0;
}

.boxs-component-button:hover {
	opacity: 0.9;
	transform: scale(1.05);
	color: #ffffff;
}

@media (max-width: 992px) {
	.boxs-component-card {
		min-height: 220px;
		padding: 1.75rem 1.25rem;
	}

	.boxs-component-title {
		font-size: 1rem;
	}

	.boxs-component-button {
		padding: 0.625rem 1.25rem;
		font-size: 0.8125rem;
	}
}

@media (max-width: 768px) {
	.boxs-component-section {
		padding: 3rem 0 !important;
	}

	.boxs-component-card {
		min-height: 200px;
		padding: 1.5rem 1rem;
	}

	.boxs-component-title {
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
	}

	.boxs-component-button {
		padding: 0.625rem 1rem;
		font-size: 0.75rem;
	}
}

@media (max-width: 576px) {
	.boxs-component-card {
		min-height: 180px;
		padding: 1.25rem 0.875rem;
	}

	.boxs-component-title {
		font-size: 0.875rem;
	}

	.boxs-component-button {
		padding: 0.5rem 0.875rem;
		font-size: 0.6875rem;
	}
}

/* Red Box Component */
.red-box-section {
	background-color: #ff2b0c;
}

.red-box-title {
	font-size: 2.5rem;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

.red-box-description {
	font-size: 1.125rem;
	line-height: 1.6;
}

.red-box-stat-card {
	padding: 1.5rem;
}

.red-box-stat-icon {
	display: inline-block;
}

.red-box-icon-img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.red-box-stat-number {
	font-size: 3rem;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

.red-box-stat-description {
	font-size: 1rem;
	line-height: 1.5;
}

.red-box-button {
	display: inline-block;
	background-color: #ffffff;
	color: #000000;
	border: 2px solid #ffffff;
	padding: 0.875rem 2.5rem;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.red-box-button:hover {
	background-color: transparent;
	color: #ffffff;
	border-color: #ffffff;
}

@media (max-width: 992px) {
	.red-box-title {
		font-size: 2rem;
	}

	.red-box-description {
		font-size: 1rem;
	}

	.red-box-stat-number {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.red-box-section {
		padding: 3rem 0 !important;
	}

	.red-box-title {
		font-size: 1.75rem;
	}

	.red-box-description {
		font-size: 0.9375rem;
	}

	.red-box-stat-card {
		padding: 1rem;
	}

	.red-box-icon-img {
		width: 50px;
		height: 50px;
	}

	.red-box-stat-number {
		font-size: 2rem;
	}

	.red-box-stat-description {
		font-size: 0.9375rem;
	}

	.red-box-button {
		padding: 0.75rem 2rem;
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.red-box-title {
		font-size: 1.5rem;
	}

	.red-box-stat-number {
		font-size: 1.75rem;
	}
}

/* About Us Section Component */
.about-us-section {
	background-color: #ffffff;
}

.about-us-image-wrapper {
	width: 100%;
	height: 100%;
	min-height: 500px;
	overflow: hidden;
	background-color: #f5f5f5;
}

.about-us-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-us-content {
	width: 100%;
	height: 100%;
	min-height: 500px;
	padding: 3rem;
	display: flex;
	align-items: center;
}

.about-us-content-inner {
	width: 100%;
}

.about-us-title {
	font-size: 3rem;
	color: #000000;
	letter-spacing: 0.5px;
	font-weight: 300 !important;
	line-height: 1.2;
}

.about-us-paragraphs {
	margin-top: 1.5rem;
}

.about-us-paragraph {
	font-size: 1rem;
	color: #000000;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: left;
}

.about-us-paragraph:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.about-us-content {
		padding: 2.5rem;
	}

	.about-us-title {
		font-size: 2.5rem;
	}

	.about-us-image-wrapper,
	.about-us-content {
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.about-us-section {
		padding: 0 !important;
	}

	.about-us-content {
		padding: 2rem 1.5rem;
		min-height: 350px;
	}

	.about-us-title {
		font-size: 2rem;
	}

	.about-us-paragraph {
		font-size: 0.9375rem;
	}

	.about-us-image-wrapper {
		min-height: 300px;
	}
}

@media (max-width: 576px) {
	.about-us-content {
		padding: 1.5rem;
		min-height: 300px;
	}

	.about-us-title {
		font-size: 1.75rem;
	}

	.about-us-paragraph {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}

	.about-us-image-wrapper {
		min-height: 250px;
	}
}

/* Single Image Box Component */
/* .single-image-box-section removed - empty ruleset */

.single-image-box-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.single-image-box-image img,
.single-image-box-img {
	display: block;
	min-height: 500px;
}

.single-image-box-content {
	min-height: 500px;
}

.single-image-box-title {
	font-size: 2rem;
	color: #000;
	line-height: 1.3;
}

.single-image-box-text {
	font-size: 1rem;
	color: #000;
	line-height: 1.6;
	margin-bottom: 1rem;
}

@media (max-width: 992px) {
	.single-image-box-section .row {
		flex-direction: column-reverse;
	}

	.single-image-box-content {
		min-height: auto;
		padding: 2rem !important;
	}

	.single-image-box-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 768px) {
	.single-image-box-content {
		padding: 1.5rem !important;
	}

	.single-image-box-title {
		font-size: 1.5rem;
	}

	.single-image-box-image img {
		min-height: 400px !important;
	}
}

/* Research Month (Slide1 Left Box) Component */
.research-month-overlay {
	width: 45%;
}

@media (max-width: 768px) {
	.research-month-image {
		min-height: 400px !important;
	}

	.research-month-section h2 {
		font-size: 1.5rem !important;
	}

	.research-month-overlay {
		width: 90% !important;
		position: relative !important;
		top: auto !important;
		right: auto !important;
		transform: none !important;
		padding: 1rem !important;
		margin: 2rem auto 0 !important;
	}

	.research-month-section .p-4 {
		padding: 1.5rem !important;
	}

	.research-month-section h3 {
		font-size: 1.25rem !important;
	}
}

/* Tabs Component */
.tabs-section {
	background-color: #ececec;
}

.tabs-section-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 700;
	text-align: left;
}

.tabs-buttons-wrapper {
	overflow-x: visible;
	-webkit-overflow-scrolling: touch;
}

.tabs-buttons {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	width: 100%;
}

.tabs-button {
	background-color: #ff2b0c;
	color: #ffffff;
	border: none;
	padding: 0.875rem 1rem;
	font-size: 0.9375rem;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 4px 4px 0 0;
	white-space: normal;
	word-wrap: break-word;
	text-align: center;
	flex: 1 1 0;
	width: 0;
	min-width: 0;
	border-bottom: 2px solid transparent;
	line-height: 1.4;
}


.tabs-button:hover:not(.active) {
	background-color: #e0250a;
}

.tabs-button.active {
	background-color: #ffffff;
	color: #23262a;
	border-bottom: 2px solid #ffffff;
	font-weight: 500;
}

.tabs-contents {
	position: relative;
	min-height: 400px;
	background-color: #f5f5f5;
}

.tabs-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.tabs-content.active {
	display: block;
}

.tabs-content-text {
	padding: 2rem 2rem 2rem 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.tabs-content-title {
	font-size: 1.5rem;
	color: #23262a;
	font-weight: 700;
	line-height: 1.3;
}

.tabs-content-hours {
	font-size: 1rem;
	color: #23262a;
	font-weight: 400;
	line-height: 1.5;
}

.tabs-content-links {
	margin-top: 1rem;
}

.tabs-content-link {
	font-size: 0.9375rem;
	color: #23262a;
	text-decoration: underline;
	font-weight: 400;
	line-height: 1.8;
	transition: color 0.3s ease;
	display: inline-block;
}

.tabs-content-link:hover {
	color: #0d6efd;
	text-decoration: underline;
}

.tabs-content-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	PADDING: 70PX;
}

.tabs-content-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	min-height: 400px;
}

.tabs-content-placeholder {
	width: 100%;
	height: 100%;
	min-height: 400px;
	background-color: #f5f5f5;
}

@media (max-width: 992px) {
	.tabs-section-title {
		font-size: 2rem;
	}

	.tabs-content-text {
		padding: 2rem 0;
	}

	.tabs-content-img,
	.tabs-content-placeholder {
		min-height: 350px;
	}
}

@media (max-width: 768px) {
	.tabs-section {
		padding: 3rem 0 !important;
	}

	.tabs-section-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem !important;
	}

	.tabs-buttons-wrapper {
		margin-bottom: 1.5rem;
	}

	.tabs-button {
		padding: 0.75rem 1.25rem;
		font-size: 0.875rem;
		min-width: 100px;
	}

	.tabs-content-text {
		padding: 1.5rem 0;
	}

	.tabs-content-title {
		font-size: 1.25rem;
	}

	.tabs-content-hours {
		font-size: 0.9375rem;
	}

	.tabs-content-link {
		font-size: 0.875rem;
	}

	.tabs-content-img,
	.tabs-content-placeholder {
		min-height: 300px;
	}
}

@media (max-width: 576px) {
	.tabs-section-title {
		font-size: 1.5rem;
	}

	.tabs-button {
		padding: 0.625rem 1rem;
		font-size: 0.8125rem;
		min-width: 80px;
	}

	.tabs-content-text {
		padding: 1.25rem 0;
	}

	.tabs-content-title {
		font-size: 1.125rem;
	}

	.tabs-content-hours {
		font-size: 0.875rem;
	}

	.tabs-content-link {
		font-size: 0.8125rem;
	}

	.tabs-content-img,
	.tabs-content-placeholder {
		min-height: 250px;
	}
}

/* Success Stories Slider Component */
.success-stories-slider-section {
	position: relative;
	padding: 4rem 0;
	min-height: 600px;
	background-color: #ffffff;
}

.success-stories-slider-wrapper {
	position: relative;
}

.success-stories-slider {
	position: relative;
	width: 100%;
	min-height: 500px;
	overflow: hidden;
}

.success-stories-slide {
	display: none;
	width: 100%;
	animation: slideOut 0.5s ease;
}

.success-stories-slide.active {
	display: block;
	animation: slideIn 0.5s ease;
}

.success-stories-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 500px;
	overflow: hidden;
}

.success-stories-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.success-stories-overlay {
	position: absolute;
	bottom: 40px;
	left: 0;
	background-color: #ff6a1a;
	padding: 0px;
	color: #ffffff;
}

.success-stories-overlay-name {
	font-size: 2.125rem;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 0.25rem;
	padding: 0px 6px;
}

.success-stories-overlay-sport {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
}

.success-stories-content {
	padding: 3rem;
	height: 100%;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.success-stories-title {
	font-size: 2.5rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 300;
	line-height: 1.2;
}

.success-stories-paragraphs {
	margin-top: 1rem;
}

.success-stories-paragraph {
	font-size: 1rem;
	color: #ffffff;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: left;
}

.success-stories-paragraph:last-child {
	margin-bottom: 0;
}

.success-stories-prev,
.success-stories-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.8);
	color: #23262a;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-stories-prev {
	left: -25px;
}

.success-stories-next {
	right: -25px;
}

.success-stories-prev:hover,
.success-stories-next:hover {
	background-color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success-stories-prev span,
.success-stories-next span {
	line-height: 1;
	font-weight: 300;
}

.success-stories-indicators {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
	position: relative;
	z-index: 9;
}

.success-stories-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.success-stories-indicator:hover {
	background-color: rgba(255, 255, 255, 0.7);
}

.success-stories-indicator.active {
	background-color: #ffffff;
	width: 32px;
	height: 12px;
	border-radius: 6px;
}

@keyframes slideIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@media (max-width: 992px) {
	.success-stories-slider-section {
		min-height: 500px;
	}

	.success-stories-content {
		padding: 2.5rem;
		min-height: 400px;
	}

	.success-stories-title {
		font-size: 2rem;
	}

	.success-stories-image-wrapper {
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.success-stories-slider-section {
		padding: 3rem 0 !important;
		min-height: auto;
	}

	.success-stories-content {
		padding: 2rem 1.5rem;
		min-height: 350px;
	}

	.success-stories-title {
		font-size: 1.75rem;
	}

	.success-stories-paragraph {
		font-size: 0.9375rem;
	}

	.success-stories-image-wrapper {
		min-height: 350px;
	}

	.success-stories-overlay {
		padding: 0.875rem 1.25rem;
	}

	.success-stories-overlay-name {
		font-size: 1rem;
	}

	.success-stories-overlay-sport {
		font-size: 0.9375rem;
	}

	.success-stories-prev {
		left: 10px;
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}

	.success-stories-next {
		right: 10px;
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	.success-stories-slider-section {
		padding: 2rem 0 !important;
	}

	.success-stories-content {
		padding: 1.5rem;
		min-height: 300px;
	}

	.success-stories-title {
		font-size: 1.5rem;
	}

	.success-stories-paragraph {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}

	.success-stories-image-wrapper {
		min-height: 300px;
	}

	.success-stories-overlay {
		padding: 0.75rem 1rem;
	}

	.success-stories-overlay-name {
		font-size: 0.9375rem;
	}

	.success-stories-overlay-sport {
		font-size: 0.875rem;
	}

	.success-stories-prev,
	.success-stories-next {
		width: 35px;
		height: 35px;
		font-size: 1.25rem;
	}

	.success-stories-prev {
		left: 5px;
	}

	.success-stories-next {
		right: 5px;
	}

	.success-stories-indicators {
		margin-top: 1.5rem;
	}
}

/* Empower & Protect Component */
.empower-protect-section {
	background-color: #ffffff;
}

.empower-protect-title {
	font-size: 2.5rem;
	color: #000000;
	/* letter-spacing: 0.5px; */
	font-weight: 300;
}

.empower-protect-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.empower-protect-header {
	background-color: #ff2b0c;
	color: #ffffff;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	font-size: 1.125rem;
	font-weight: 500;
	text-align: center;
	width: 100%;
}

.empower-protect-buttons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.empower-protect-button {
	background-color: #ff2b0c;
	color: #ffffff;
	padding: 1.5rem 1rem;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: center; */
	min-height: 100px;
	transition: opacity 0.3s ease, transform 0.3s ease;
	line-height: 1.4;
}

.empower-protect-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	color: #ffffff;
	text-decoration: none;
}

@media (max-width: 992px) {
	.empower-protect-title {
		font-size: 2rem;
	}

	.empower-protect-buttons {
		grid-template-columns: 1fr;
	}

	.empower-protect-button {
		min-height: 80px;
	}
}

@media (max-width: 768px) {
	.empower-protect-section {
		padding: 3rem 0 !important;
	}

	.empower-protect-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem !important;
	}

	.empower-protect-header {
		font-size: 1rem;
		padding: 0.875rem 1.25rem;
	}

	.empower-protect-button {
		font-size: 0.875rem;
		padding: 1.25rem 0.875rem;
		min-height: 70px;
	}
}

@media (max-width: 576px) {
	.empower-protect-title {
		font-size: 1.5rem;
	}

	.empower-protect-header {
		font-size: 0.9375rem;
		padding: 0.75rem 1rem;
	}

	.empower-protect-button {
		font-size: 0.8125rem;
		padding: 1rem 0.75rem;
		min-height: 60px;
	}
}

/* Campus Section Component */
.campus-section {
	background-color: #ff6a1a;
	padding: 4rem 0;
}

.campus-content {
	padding: 0px 50px 0px 0px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.campus-title {
	font-size: 2rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 700;
	line-height: 1.2;
}

.campus-paragraphs {
	margin-top: 1rem;
}

.campus-paragraph {
	font-size: 1rem;
	color: #ffffff;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: left;
}

.campus-paragraph:last-child {
	margin-bottom: 0;
}

.campus-image-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.campus-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 992px) {
	.campus-content {
		padding: 2rem 0;
	}

	.campus-title {
		font-size: 2.5rem;
	}

	.campus-image-wrapper {
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.campus-section {
		padding: 3rem 0 !important;
	}

	.campus-title {
		font-size: 2rem;
	}

	.campus-paragraph {
		font-size: 0.9375rem;
	}

	.campus-image-wrapper {
		min-height: 350px;
		margin-top: 1.5rem;
	}
}

@media (max-width: 576px) {
	.campus-section {
		padding: 2rem 0 !important;
	}

	.campus-content {
		padding: 1.5rem 0;
	}

	.campus-title {
		font-size: 1.75rem;
	}

	.campus-paragraph {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}

	.campus-image-wrapper {
		min-height: 300px;
	}
}

/* Counseling Services Component */
.counseling-services-section {
	width: 100%;
}

.counseling-services-top {
	padding: 2rem 0;
	background-color: #ff6a1a;
}

.counseling-services-content {
	padding: 2rem 2rem 2rem 0;
}

.counseling-services-title {
	font-size: 2.5rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 700;
	line-height: 1.2;
}

.counseling-services-paragraphs {
	margin-top: 1.5rem;
}

.counseling-services-paragraph {
	font-size: 1rem;
	color: #ffffff;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: left;
}

.counseling-services-paragraph:last-child {
	margin-bottom: 0;
}

.counseling-services-image-wrapper {
	width: 100%;
	height: 100%;
}

.counseling-services-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.counseling-services-placeholder {
	width: 100%;
	height: 100%;
	min-height: 400px;
	background-color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.counseling-services-bottom {
	padding: 3rem 0;
	background-color: #ffe5d9;
}

.counseling-services-hours-section {
	padding: 0;
}

.counseling-services-hours-title {
	font-size: 1.5rem;
	color: #23262a;
	letter-spacing: 1px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 2.5rem;
}

.counseling-hours-item {
	padding: 0 2rem 0 0;
}

.counseling-hours-location {
	font-size: 1.125rem;
	color: #23262a;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.counseling-hours-time {
	font-size: 1rem;
	color: #23262a;
	font-weight: 400;
	line-height: 1.4;
}

@media (max-width: 992px) {
	.counseling-services-content {
		padding: 2rem 0;
		margin-bottom: 2rem;
	}

	.counseling-services-title {
		font-size: 2rem;
	}

	.counseling-services-image-wrapper,
	.counseling-services-placeholder {
		min-height: 350px;
	}

	.counseling-hours-item {
		padding: 1rem 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}

	.counseling-hours-item:last-child {
		border-bottom: none;
	}
}

@media (max-width: 768px) {
	.counseling-services-top {
		padding: 3rem 0 !important;
	}

	.counseling-services-bottom {
		padding: 2.5rem 0 !important;
	}

	.counseling-services-title {
		font-size: 1.75rem;
	}

	.counseling-services-paragraph {
		font-size: 0.9375rem;
	}

	.counseling-services-image-wrapper,
	.counseling-services-placeholder {
		min-height: 300px;
	}

	.counseling-services-hours-title {
		font-size: 1.125rem;
		margin-bottom: 1.5rem !important;
	}

	.counseling-hours-location,
	.counseling-hours-time {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.counseling-services-top {
		padding: 2rem 0 !important;
	}

	.counseling-services-bottom {
		padding: 2rem 0 !important;
	}

	.counseling-services-content {
		padding: 1.5rem 0;
	}

	.counseling-services-title {
		font-size: 1.5rem;
	}

	.counseling-services-paragraph {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}

	.counseling-services-image-wrapper,
	.counseling-services-placeholder {
		min-height: 250px;
	}

	.counseling-services-hours-title {
		font-size: 1rem;
	}

	.counseling-hours-item {
		padding: 0.875rem 0;
	}

	.counseling-hours-location,
	.counseling-hours-time {
		font-size: 0.875rem;
	}
}

/* Clinical Services Component */
.clinical-services-section {
	background-color: #ff2b0c;
	padding: 2rem 0;
}

.clinical-services-content {
	padding: 2rem 2rem 2rem 0;
}

.clinical-services-title {
	font-size: 2.5rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 700;
	line-height: 1.2;
}

.clinical-services-paragraphs {
	margin-top: 1.5rem;
}

.clinical-services-paragraph {
	font-size: 1rem;
	color: #ffffff;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: left;
}

.clinical-services-paragraph:last-child {
	margin-bottom: 0;
}

.clinical-services-image-wrapper {
	width: 100%;
	height: 100%;
}

.clinical-services-image {
	width: 100%;
	object-fit: cover;
	height: 400px;
}

.clinical-services-placeholder {
	width: 100%;
	height: 100%;
	min-height: 400px;
	background-color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.clinical-hours-item {
	padding: 1.5rem 1rem;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.clinical-hours-item:last-child {
	border-right: none;
}

.clinical-hours-title {
	font-size: 0.875rem;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.clinical-hours-subtitle {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.clinical-hours-time {
	font-size: 1rem;
	color: #ffffff;
	font-weight: 400;
}

@media (max-width: 992px) {
	.clinical-services-content {
		padding: 2rem 0;
		margin-bottom: 2rem;
	}

	.clinical-services-title {
		font-size: 2rem;
	}

	.clinical-services-image-wrapper,
	.clinical-services-placeholder {
		min-height: 350px;
	}

	.clinical-hours-item {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		padding: 1.25rem 0;
	}

	.clinical-hours-item:last-child {
		border-bottom: none;
	}
}

@media (max-width: 768px) {
	.clinical-services-section {
		padding: 3rem 0 !important;
	}

	.clinical-services-title {
		font-size: 1.75rem;
	}

	.clinical-services-paragraph {
		font-size: 0.9375rem;
	}

	.clinical-services-image-wrapper,
	.clinical-services-placeholder {
		min-height: 300px;
	}
}

@media (max-width: 576px) {
	.clinical-services-section {
		padding: 2rem 0 !important;
	}

	.clinical-services-content {
		padding: 1.5rem 0;
	}

	.clinical-services-title {
		font-size: 1.5rem;
	}

	.clinical-services-paragraph {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}

	.clinical-services-image-wrapper,
	.clinical-services-placeholder {
		min-height: 250px;
	}

	.clinical-hours-item {
		padding: 1rem 0;
	}
}

/* Crisis Care Services Component */
.crisis-care-services-section {
	background-color: #f5f5f5;
}

.crisis-care-content {
	margin: 0 auto;
	padding: 0 1rem;
}

.crisis-care-title {
	font-size: 3rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
	line-height: 1.3;
}

.crisis-care-subtitle {
	font-size: 2rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
	line-height: 1.3;
}

.crisis-care-paragraph {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	text-align: left;
	font-weight: bold;
}

.crisis-care-list-section,
.crisis-care-access-section {
	margin-top: 1.5rem;
}

.crisis-care-list-intro,
.crisis-care-access-intro {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	text-align: left;
	margin-bottom: 1rem;
}

.crisis-care-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.crisis-care-list-item {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	padding-left: 0px;
	margin-bottom: 0.75rem;
	position: relative;
	text-align: left;
	list-style: none;
}

.crisis-care-list-item::before {
	position: absolute;
	left: 0;
	font-weight: bold;
}

.crisis-care-list-item:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.crisis-care-title {
		font-size: 1.75rem;
	}

	.crisis-care-subtitle {
		font-size: 1.25rem;
	}
}

@media (max-width: 768px) {
	.crisis-care-services-section {
		padding: 3rem 0 !important;
	}

	.crisis-care-content {
		padding: 0 1.5rem;
	}

	.crisis-care-title {
		font-size: 1.5rem;
	}

	.crisis-care-subtitle {
		font-size: 1.125rem;
	}

	.crisis-care-paragraph,
	.crisis-care-list-intro,
	.crisis-care-access-intro,
	.crisis-care-list-item {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.crisis-care-services-section {
		padding: 2rem 0 !important;
	}

	.crisis-care-content {
		padding: 0 1rem;
	}

	.crisis-care-title {
		font-size: 1.25rem;
	}

	.crisis-care-subtitle {
		font-size: 1rem;
	}

	.crisis-care-paragraph,
	.crisis-care-list-intro,
	.crisis-care-access-intro,
	.crisis-care-list-item {
		font-size: 0.875rem;
	}

	.crisis-care-list-item {
		padding-left: 1.25rem;
	}
}

/* Getting Around City Component */
.getting-around-city-section {
	background-color: #ffe5d9;
	padding: 4rem 0;
}

.getting-around-content {
	padding: 2rem 2rem 2rem 0;
	height: 100%;
}

.getting-around-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
	line-height: 1.3;
}

.getting-around-description {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	text-align: left;
}

.getting-around-accordion {
	margin-top: 2rem;
}

.getting-around-accordion-item {
	border-bottom: 1px solid #e0e0e0;
}

.getting-around-accordion-item:last-child {
	border-bottom: none;
}

.getting-around-accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.25rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: opacity 0.3s ease;
}

.getting-around-accordion-header:hover {
	opacity: 0.8;
}

.getting-around-accordion-label {
	font-size: 1rem;
	color: #23262a;
	font-weight: 400;
	flex: 1;
}

.getting-around-accordion-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 1.5rem;
	width: 24px;
	height: 24px;
	position: relative;
}

.getting-around-accordion-icon .icon-plus,
.getting-around-accordion-icon .icon-minus {
	font-size: 1.5rem;
	font-weight: bold;
	color: #dc3545;
	line-height: 1;
	position: absolute;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.getting-around-accordion-icon .icon-plus {
	opacity: 1;
	transform: rotate(0deg);
}

.getting-around-accordion-icon .icon-minus {
	opacity: 0;
	transform: rotate(90deg);
}

.getting-around-accordion-item.active .getting-around-accordion-icon .icon-plus {
	opacity: 0;
	transform: rotate(-90deg);
}

.getting-around-accordion-item.active .getting-around-accordion-icon .icon-minus {
	opacity: 1;
	transform: rotate(0deg);
}

.getting-around-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 0;
}

.getting-around-accordion-item.active .getting-around-accordion-content {
	max-height: 1000px;
	padding: 0 0 1.25rem 0;
}

.getting-around-accordion-text {
	font-size: 0.9375rem;
	color: #23262a;
	line-height: 1.6;
	text-align: left;
	padding-top: 0.5rem;
}

.getting-around-visual {
	width: 100%;
	height: 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.getting-around-circle {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background-color: #2c2c2c;
	margin: auto;
	margin-top: 170px;
	background-position: center;
	background-size: cover;
}

@media (max-width: 992px) {
	.getting-around-content {
		padding: 2rem 0;
	}

	.getting-around-title {
		font-size: 2rem;
	}

	.getting-around-visual {
		min-height: 300px;
		margin-top: 2rem;
	}

	.getting-around-circle {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 768px) {
	.getting-around-city-section {
		padding: 3rem 0 !important;
	}

	.getting-around-title {
		font-size: 1.75rem;
	}

	.getting-around-description {
		font-size: 0.9375rem;
	}

	.getting-around-accordion-label {
		font-size: 0.9375rem;
	}

	.getting-around-visual {
		min-height: 250px;
	}

	.getting-around-circle {
		width: 200px;
		height: 200px;
	}
}

@media (max-width: 576px) {
	.getting-around-city-section {
		padding: 2rem 0 !important;
	}

	.getting-around-content {
		padding: 1.5rem 0;
	}

	.getting-around-title {
		font-size: 1.5rem;
	}

	.getting-around-description {
		font-size: 0.875rem;
		margin-bottom: 1.5rem !important;
	}

	.getting-around-accordion-header {
		padding: 1rem 0;
	}

	.getting-around-accordion-label {
		font-size: 0.875rem;
	}

	.getting-around-accordion-icon {
		width: 20px;
		height: 20px;
		margin-left: 1rem;
	}

	.getting-around-accordion-icon .icon-plus,
	.getting-around-accordion-icon .icon-minus {
		font-size: 1.25rem;
	}

	.getting-around-visual {
		min-height: 200px;
		padding: 1.5rem;
	}

	.getting-around-circle {
		width: 150px;
		height: 150px;
	}
}

/* Health Services Cards Component */
.health-services-cards-section {
	background-color: #ffffff;
	padding: 4rem 0;
}

.health-service-card {
	width: 100%;
	padding: 10px;
	border-right: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
}

.health-service-card:last-child {
	border-right: none;
}

.health-service-icon-section {
	background-color: #ff2b0c;
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 149px;
}

.health-service-icon {
	font-size: 4rem;
	line-height: 1;
	color: #ffffff;
}

.health-service-title-section {
	background-color: #ffe5d9;
	padding: 0rem 1.5rem;
	text-align: center;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.health-service-title {
	font-size: 1.125rem;
	color: #000000;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.4;
	margin: 0;
}

.health-service-description-section {
	background-color: #ffffff;
	padding: 2rem 1.5rem;
	flex-grow: 1;
	min-height: 120px;
}

.health-service-description {
	font-size: 1rem;
	color: #999999;
	line-height: 1.6;
	text-align: left;
	margin: 0;
}

@media (max-width: 992px) {
	.health-service-card {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 0;
	}

	.health-service-card:last-child {
		border-bottom: none;
	}

	.health-service-icon-section {
		min-height: 180px;
		padding: 2.5rem 2rem;
	}

	.health-service-icon {
		font-size: 3.5rem;
	}

	.health-service-title-section {
		min-height: 100px;
		padding: 1.5rem;
	}

	.health-service-title {
		font-size: 1rem;
	}

	.health-service-description-section {
		min-height: 100px;
		padding: 1.5rem;
	}
}

@media (max-width: 768px) {
	.health-services-cards-section {
		padding: 3rem 0 !important;
	}

	.health-service-icon-section {
		min-height: 160px;
		padding: 2rem 1.5rem;
	}

	.health-service-icon {
		font-size: 3rem;
	}

	.health-service-title-section {
		min-height: 90px;
		padding: 1.25rem;
	}

	.health-service-title {
		font-size: 0.9375rem;
	}

	.health-service-description {
		font-size: 0.9375rem;
	}

	.health-service-description-section {
		min-height: 90px;
		padding: 1.25rem;
	}
}

@media (max-width: 576px) {
	.health-services-cards-section {
		padding: 2rem 0 !important;
	}

	.health-service-icon-section {
		min-height: 140px;
		padding: 1.5rem;
	}

	.health-service-icon {
		font-size: 2.5rem;
	}

	.health-service-title-section {
		min-height: 80px;
		padding: 1rem;
	}

	.health-service-title {
		font-size: 0.875rem;
	}

	.health-service-description {
		font-size: 0.875rem;
	}

	.health-service-description-section {
		min-height: 80px;
		padding: 1rem;
	}
}

/* Services Grid Component */
.services-grid-section {
	background-color: #ffffff;
}

.services-grid-title {
	font-size: 2rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.service-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1rem;
	background-color: #ffffff;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 1rem;
	color: #8b6f47;
}

.service-label {
	font-size: 1rem;
	color: #23262a;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
}

@media (max-width: 992px) {
	.services-grid-title {
		font-size: 1.75rem;
	}

	.service-icon {
		font-size: 2.5rem;
	}

	.service-label {
		font-size: 0.9375rem;
	}
}

@media (max-width: 768px) {
	.services-grid-section {
		padding: 3rem 0 !important;
	}

	.services-grid-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem !important;
	}

	.service-item {
		padding: 1.5rem 1rem;
	}

	.service-icon {
		font-size: 2.25rem;
		margin-bottom: 0.75rem;
	}

	.service-label {
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.services-grid-title {
		font-size: 1.25rem;
	}

	.service-item {
		padding: 1.25rem 0.75rem;
	}

	.service-icon {
		font-size: 2rem;
	}

	.service-label {
		font-size: 0.8125rem;
	}
}

/* Meet the Team Component */
.meet-the-team-section {
	background-color: #ffffff;
}

.meet-the-team-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.team-member-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem;
}

.team-member-image-wrapper {
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1.5rem;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
}

.team-member-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.team-member-name {
	font-size: 1.125rem;
	color: #23262a;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.3;
}

.team-member-role {
	font-size: 0.9375rem;
	color: #6c757d;
	font-weight: 400;
	line-height: 1.4;
}

@media (max-width: 992px) {
	.meet-the-team-title {
		font-size: 2rem;
	}

	.team-member-image-wrapper {
		width: 180px;
		height: 180px;
	}
}

@media (max-width: 768px) {
	.meet-the-team-section {
		padding: 3rem 0 !important;
	}

	.meet-the-team-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem !important;
	}

	.team-member-image-wrapper {
		width: 160px;
		height: 160px;
		margin-bottom: 1.25rem;
	}

	.team-member-name {
		font-size: 1rem;
	}

	.team-member-role {
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.meet-the-team-title {
		font-size: 1.5rem;
	}

	.team-member-image-wrapper {
		width: 150px;
		height: 150px;
	}
}

/* Dining Places Grid Component */
.dining-places-grid-section {
	background-color: #ffffff;
}

.dining-places-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 1rem;
	min-height: 600px;
}

.dining-place-large {
	width: 100%;
	height: 100%;
}

.dining-place-large .dining-place-image-wrapper {
	width: 100%;
	height: 100%;
	min-height: 600px;
}

.dining-places-small {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	height: fit-content;
}

.dining-place-small {
	width: 100%;
}

.dining-place-small .dining-place-image-wrapper {
	width: 100%;
	min-height: 115px;
	height: 100%;
}

.dining-place-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.dining-place-image-wrapper {
	position: relative;
	overflow: hidden;
	background-color: #f5f5f5;
}

.dining-place-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.dining-place-link:hover .dining-place-image {
	transform: scale(1.05);
}

.dining-place-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	padding: 1.5rem 1rem 1rem 1rem;
}

.dining-place-label {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	display: block;
	line-height: 1.3;
}

@media (max-width: 992px) {
	.dining-places-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.dining-place-large .dining-place-image-wrapper {
		min-height: 400px;
	}

	.dining-places-small {
		grid-template-columns: repeat(2, 1fr);
	}

	.dining-place-small .dining-place-image-wrapper {
		min-height: 200px;
	}
}

@media (max-width: 768px) {
	.dining-places-grid-section {
		padding: 2rem 0 !important;
	}

	.dining-place-large .dining-place-image-wrapper {
		min-height: 300px;
	}

	.dining-places-small {
		grid-template-columns: 1fr;
	}

	.dining-place-small .dining-place-image-wrapper {
		min-height: 200px;
	}

	.dining-place-label {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.dining-place-large .dining-place-image-wrapper {
		min-height: 250px;
	}

	.dining-place-small .dining-place-image-wrapper {
		min-height: 150px;
	}

	.dining-place-overlay {
		padding: 1rem 0.75rem 0.75rem 0.75rem;
	}

	.dining-place-label {
		font-size: 0.875rem;
	}
}

/* Dietitian Meal Plan Component */
.dietitian-meal-plan-section {
	background-color: #ffffff;
}

.dietitian-section {
	background-color: #ffffff;
}

.dietitian-profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.dietitian-image-wrapper {
	width: 100%;
	max-width: 300px;
	margin-bottom: 1.5rem;
	background-color: #f5f5f5;
	overflow: hidden;
}

.dietitian-image {
	width: 100%;
	height: auto;
	min-height: 400px;
	object-fit: cover;
}

.dietitian-name-section {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.dietitian-title-text {
	font-size: 1rem;
	color: #23262a;
	font-weight: 400;
}

.dietitian-name {
	font-size: 1.25rem;
	color: #23262a;
	font-weight: 400;
}

.dietitian-name strong {
	font-weight: 700;
}

.dietitian-bio-title {
	font-size: 2rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 700;
}

.dietitian-bio-paragraph {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.dietitian-bio-paragraph:last-child {
	margin-bottom: 0;
}

.dietitian-quote {
	padding-top: 63px;
}

.dietitian-quote-text {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	font-style: italic;
	margin: 0;
}

.meal-plan-section {
	background-color: #ff6a1a;
}

.meal-plan-title {
	font-size: 2.5rem;
	color: #000000;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-align: left;
}

.meal-plan-paragraph {
	font-size: 1rem;
	color: #000000;
	line-height: 1.8;
	text-align: left;
	max-width: 90%;
}

@media (max-width: 992px) {
	.dietitian-bio-title {
		font-size: 1.75rem;
	}

	.dietitian-image {
		min-height: 350px;
	}

	.meal-plan-title {
		font-size: 2rem;
	}

	.meal-plan-paragraph {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.dietitian-section {
		padding: 3rem 0 !important;
	}

	.dietitian-profile {
		margin-bottom: 2rem;
	}

	.dietitian-image {
		min-height: 300px;
	}

	.dietitian-bio-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem !important;
	}

	.dietitian-bio-paragraph,
	.dietitian-quote-text {
		font-size: 0.9375rem;
	}

	.meal-plan-section {
		padding: 2.5rem 0 !important;
	}

	.meal-plan-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem !important;
	}

	.meal-plan-paragraph {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.dietitian-image {
		min-height: 250px;
	}

	.dietitian-title-text {
		font-size: 0.9375rem;
	}

	.dietitian-name {
		font-size: 1.125rem;
	}

	.dietitian-bio-title {
		font-size: 1.25rem;
	}

	.dietitian-bio-paragraph,
	.dietitian-quote-text {
		font-size: 0.875rem;
	}

	.meal-plan-title {
		font-size: 1.5rem;
	}

	.meal-plan-paragraph {
		font-size: 0.875rem;
	}
}

/* Shop Section Component */
.shop-section {
	background-color: #ffffff;
}

.shop-section-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.shop-item {
	width: 100%;
	height: 100%;
}

.shop-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.shop-image-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #f5f5f5;
	height: 100%;
}

.shop-image {
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease;
}

.shop-link:hover .shop-image {
	transform: scale(1.05);
}

.shop-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.shop-label {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 500;
	display: block;
	line-height: 1.3;
}

@media (max-width: 992px) {
	.shop-section-title {
		font-size: 2rem;
	}

	.shop-image-wrapper {
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.shop-section {
		padding: 3rem 0 !important;
	}

	.shop-section-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem !important;
	}

	.shop-image-wrapper {
		min-height: 350px;
	}

	.shop-label {
		font-size: 1.25rem;
	}

	.shop-overlay {
		padding: 1.5rem 1rem 1rem 1rem;
	}
}

@media (max-width: 576px) {
	.shop-section-title {
		font-size: 1.5rem;
	}

	.shop-image-wrapper {
		min-height: 300px;
	}

	.shop-label {
		font-size: 1.125rem;
	}
}

/* Sustainability Section Component */
.sustainability-section {
	background-color: #ffffff;
}

.sustainability-main-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.sustainability-banner {
	background-color: #6b7a47;
	padding: 3rem;
	width: 100%;
}

.sustainability-banner-content {
	font-size: 1rem;
	color: #ffffff;
	line-height: 1.8;
	text-align: left;
	max-width: 100%;
}

.sustainability-practices {
	margin-top: 3rem;
}

.sustainability-practices-title {
	font-size: 1.75rem;
	color: #6b7a47;
	letter-spacing: 0.5px;
	font-weight: 700;
	text-align: left;
}

.sustainability-practices-list {
	margin-top: 2rem;
}

.sustainability-practice-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.sustainability-practice-item:last-child {
	margin-bottom: 0;
}

.sustainability-practice-icon {
	font-size: 2rem;
	line-height: 1;
	flex-shrink: 0;
	width: 70px;
	text-align: center;
}

.sustainability-practice-text {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	flex: 1;
	text-align: left;
}

@media (max-width: 992px) {
	.sustainability-main-title {
		font-size: 2rem;
	}

	.sustainability-banner {
		padding: 2.5rem;
	}

	.sustainability-practices-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	.sustainability-section {
		padding: 3rem 0 !important;
	}

	.sustainability-main-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem !important;
	}

	.sustainability-banner {
		padding: 2rem 1.5rem;
	}

	.sustainability-banner-content {
		font-size: 0.9375rem;
	}

	.sustainability-practices {
		margin-top: 2rem;
	}

	.sustainability-practices-title {
		font-size: 1.25rem;
		margin-bottom: 1.5rem !important;
	}

	.sustainability-practice-item {
		gap: 1rem;
		margin-bottom: 1.5rem;
	}

	.sustainability-practice-icon {
		font-size: 1.75rem;
		width: 35px;
	}

	.sustainability-practice-text {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.sustainability-main-title {
		font-size: 1.5rem;
	}

	.sustainability-banner {
		padding: 1.5rem;
	}

	.sustainability-banner-content {
		font-size: 0.875rem;
	}

	.sustainability-practices-title {
		font-size: 1.125rem;
	}

	.sustainability-practice-item {
		gap: 0.75rem;
		margin-bottom: 1.25rem;
	}

	.sustainability-practice-icon {
		font-size: 1.5rem;
		width: 30px;
	}

	.sustainability-practice-text {
		font-size: 0.875rem;
	}
}

/* Eat Drink Shop Tabs Component */
.eat-drink-shop-tabs-section {
	width: 100%;
}

.eat-drink-shop-nav {
	background-color: #ffffff;
	padding: 1.5rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.eat-drink-shop-nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.eat-drink-shop-nav-link {
	font-size: 1rem;
	color: #23262a;
	text-decoration: none;
	font-weight: 400;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.3s ease;
	background: none;
	border: none;
	cursor: pointer;
}

.eat-drink-shop-nav-link:hover {
	color: #23262a;
}

.eat-drink-shop-nav-link.active {
	color: #23262a;
}

.eat-drink-shop-nav-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #ff2b0c;
}

.eat-drink-shop-content-area {
	background-color: #ff2b0c;
	padding: 3rem 0;
	min-height: 400px;
}

.eat-drink-shop-title {
	font-size: 2.5rem;
	color: #000000;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 2rem;
	text-align: left;
}

.eat-drink-shop-title strong {
	font-weight: 700;
}

.eat-drink-shop-paragraphs {
	max-width: 90%;
}

.eat-drink-shop-paragraph {
	font-size: 1rem;
	color: #000000;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: left;
}

.eat-drink-shop-paragraph:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.eat-drink-shop-nav-links {
		gap: 1.5rem;
	}

	.eat-drink-shop-title {
		font-size: 2rem;
	}

	.eat-drink-shop-paragraphs {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.eat-drink-shop-nav {
		padding: 1rem 0;
	}

	.eat-drink-shop-nav-links {
		gap: 1rem;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}

	.eat-drink-shop-nav-link {
		font-size: 0.9375rem;
	}

	.eat-drink-shop-content-area {
		padding: 2rem 0;
		min-height: 350px;
	}

	.eat-drink-shop-title {
		font-size: 1.75rem;
		margin-bottom: 1.5rem;
	}

	.eat-drink-shop-paragraph {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.eat-drink-shop-nav-link {
		font-size: 0.875rem;
	}

	.eat-drink-shop-content-area {
		padding: 1.5rem 0;
		min-height: 300px;
	}

	.eat-drink-shop-title {
		font-size: 1.5rem;
		margin-bottom: 1.25rem;
	}

	.eat-drink-shop-paragraph {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}
}

/* Green Head Component */
.green-head {
	width: 100%;
	position: relative;
}

.green-head-hero {
	width: 100%;
	position: relative;
	min-height: 500px;
	overflow: hidden;
}

.green-head-background {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.green-head-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.green-head-title-wrapper {
	top: 8rem;
	left: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
}

.green-head-title-box {
	background-color: #00ff7f;
	padding: 0px;
	display: inline-block;
	width: fit-content;
	margin-top: 2px !important;
}

.green-head-title-line {
	font-size: 41px;
	letter-spacing: 1px;
	line-height: 1.2;
	display: block;
}

.green-head-footer {
	background-color: #00ff7f;
	padding: 1.5rem 0;
	width: 100%;
}

.green-head-footer-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.green-head-footer-item {
	font-size: 1rem;
	font-weight: 500;
	color: #000;
	line-height: 1.5;
}

.green-head-footer-underline {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

@media (max-width: 992px) {
	.green-head-hero {
		min-height: 400px;
	}

	.green-head-title-wrapper {
		top: 2rem;
		left: 0;
	}

	.green-head-title-line {
		font-size: 1.75rem;
	}

	.green-head-footer-content {
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.green-head-hero {
		min-height: 350px;
	}

	.green-head-title-wrapper {
		top: 1.5rem;
		left: 0;
	}

	.green-head-title-box {
		padding: 0.2rem 1.25rem;
	}

	.green-head-title-line {
		font-size: 1.5rem;
	}

	.green-head-footer {
		padding: 1.25rem 0;
	}

	.green-head-footer-content {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.green-head-footer-item {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.green-head-hero {
		min-height: 300px;
	}

	.green-head-title-box {
		padding: 0.15rem 1rem;
	}

	.green-head-title-line {
		font-size: 1.25rem;
	}

	.green-head-footer-item {
		font-size: 0.875rem;
	}
}

/* Orange Head Component - Same structure as green-head but with orange colors */
.orange-head {
	width: 100%;
	position: relative;
}

.orange-head-hero {
	width: 100%;
	position: relative;
	min-height: 600px !important;
	/* overflow: hidden; */
}

.orange-head-background {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.orange-head-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.orange-head-title-wrapper {
	top: 3rem;
	left: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
}

.orange-head-title-box {
	background-color: #ff6a1a;
	padding: 0px;
	display: inline-block;
	width: fit-content;
}

.orange-head-title-line {
	font-size: 2rem;
	letter-spacing: 1px;
	line-height: 1.2;
	display: block;
}

.orange-head-footer {
	background-color: #ff6a1a;
	padding: 1.5rem 0;
	width: 100%;
}

.orange-head-footer-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.orange-head-footer-item {
	font-size: 1rem;
	font-weight: 500;
	color: #ffffff;
	line-height: 1.5;
}

.orange-head-footer-underline {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

@media (max-width: 992px) {
	.orange-head-hero {
		min-height: 400px;
	}

	.orange-head-title-wrapper {
		top: 2rem;
		left: 0;
	}

	.orange-head-title-line {
		font-size: 1.75rem;
	}

	.orange-head-footer-content {
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.orange-head-hero {
		min-height: 350px;
	}

	.orange-head-title-wrapper {
		top: 1.5rem;
		left: 0;
	}

	.orange-head-title-box {
		padding: 0.2rem 1.25rem;
	}

	.orange-head-title-line {
		font-size: 1.5rem;
	}

	.orange-head-footer {
		padding: 1.25rem 0;
	}

	.orange-head-footer-content {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.orange-head-footer-item {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.orange-head-hero {
		min-height: 300px;
	}

	.orange-head-title-box {
		padding: 0.15rem 1rem;
	}

	.orange-head-title-line {
		font-size: 1.25rem;
	}

	.orange-head-footer-item {
		font-size: 0.875rem;
	}
}

/* Research Detail Component */
.research-detail-section {
	background-color: #ffffff;
}

.research-detail-top {
	margin-bottom: 3rem;
}

.research-detail-title {
	font-size: 3rem;
	font-weight: 300;
	color: #23262a;
	line-height: 1.2;
	margin-bottom: 2rem;
}

.research-detail-paragraphs {
	max-width: 85%;
}

.research-detail-paragraph {
	font-size: 1rem;
	line-height: 1.6;
	color: #23262a;
}

.research-detail-bottom {
	margin-top: 3rem;
}

.research-detail-left-box {
	width: 100%;
	height: 100%;
	min-height: 500px;
	background-color: #3a3a3a;
}

.research-detail-placeholder {
	width: 100%;
	height: 100%;
	min-height: 500px;
	background-color: #3a3a3a;
}

.research-detail-image {
	display: block;
	min-height: 500px;
	object-fit: cover;
}

.research-detail-quote-section {
	padding: 3rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.research-detail-quote-icon-img {
	width: 60px;
	height: auto;
	display: block;
	filter: brightness(0) saturate(100%) invert(56%) sepia(93%) saturate(1362%) hue-rotate(359deg) brightness(100%) contrast(99%);
}

.research-detail-quote-text {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.4;
	color: #23262a;
	margin: 0;
	border: none;
	padding: 0;
}

.research-detail-author {
	margin-top: auto;
}

.research-detail-author-name {
	font-size: 1rem;
	font-weight: 600;
	color: #23262a;
	margin: 0;
}

.research-detail-author-title {
	font-size: 1rem;
	font-weight: 400;
	color: #23262a;
	margin: 0;
}

.research-detail-link {
	color: #ff6a1a;
	text-decoration: underline;
	font-size: 1rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.research-detail-link:hover {
	color: #dc5500;
}

.research-detail-arrow {
	margin-left: 0.25rem;
	color: #ff6a1a;
}

@media (max-width: 992px) {
	.research-detail-title {
		font-size: 2.5rem;
	}

	.research-detail-paragraphs {
		max-width: 100%;
	}

	.research-detail-quote-section {
		padding: 2.5rem;
	}

	.research-detail-quote-text {
		font-size: 1.5rem;
	}
}

@media (max-width: 768px) {
	.research-detail-section {
		padding: 3rem 0 !important;
	}

	.research-detail-top {
		margin-bottom: 2rem;
	}

	.research-detail-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.research-detail-paragraph {
		font-size: 0.9375rem;
	}

	.research-detail-bottom {
		margin-top: 2rem;
	}

	.research-detail-left-box,
	.research-detail-placeholder,
	.research-detail-image {
		min-height: 400px;
	}

	.research-detail-quote-section {
		padding: 2rem 1.5rem;
	}

	.research-detail-quote-icon-img {
		width: 50px;
	}

	.research-detail-quote-text {
		font-size: 1.25rem;
	}

	.research-detail-author-name,
	.research-detail-author-title {
		font-size: 0.9375rem;
	}

	.research-detail-link {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.research-detail-title {
		font-size: 1.75rem;
	}

	.research-detail-left-box,
	.research-detail-placeholder,
	.research-detail-image {
		min-height: 300px;
	}

	.research-detail-quote-section {
		padding: 1.5rem;
	}

	.research-detail-quote-text {
		font-size: 1.125rem;
	}
}

/* Single Image Detail Component */
.single-image-detail-section {
	background-color: #ffffff;
	padding-bottom: 0 !important;
}

.single-image-detail-content {
	padding: 3rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 0;
	padding-right: 0;
}

.single-image-detail-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

.single-image-detail-paragraphs {
	max-width: 85%;
}

.single-image-detail-paragraph {
	font-size: 1rem;
	line-height: 1.6;
	color: #23262a;
}

.single-image-detail-image-block {
	width: 100%;
	max-height: fit-content;
}

.single-image-detail-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	max-height: max-content;
}

.single-image-detail-placeholder {
	width: 100%;
	height: 100%;
	min-height: 500px;
	background-color: #2c2c2c;
}

@media (max-width: 992px) {
	.single-image-detail-content {
		padding: 2.5rem;
	}

	.single-image-detail-title {
		font-size: 2rem;
	}

	.single-image-detail-paragraphs {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.single-image-detail-section {
		padding: 3rem 0 !important;
	}

	.single-image-detail-content {
		padding: 2rem 1.5rem;
	}

	.single-image-detail-title {
		font-size: 1.75rem;
	}

	.single-image-detail-paragraph {
		font-size: 0.9375rem;
	}

	.single-image-detail-image-block,
	.single-image-detail-placeholder,
	.single-image-detail-image {
		min-height: 400px;
	}
}

@media (max-width: 576px) {
	.single-image-detail-content {
		padding: 1.5rem;
	}

	.single-image-detail-title {
		font-size: 1.5rem;
	}

	.single-image-detail-image-block,
	.single-image-detail-placeholder,
	.single-image-detail-image {
		min-height: 300px;
	}
}

/* Research Structure Component */
.research-structure-section {
	width: 100%;
}

.research-structure-top {
	background-color: #ffffff;
}

.research-structure-title {
	letter-spacing: 1px;
}

.research-structure-strategy-section {
	background-color: #00ff7f;
}

.research-strategy-title {
	font-size: 1.5rem;
	letter-spacing: 0.5px;
	color: #000000;
}

.research-strategy-content {
	max-width: 85%;
}

.research-strategy-paragraph {
	font-size: 1rem;
	line-height: 1.6;
	color: #000000;
}

.research-structure-ecosystem {
	background-color: #ffffff;
}

.research-ecosystem-wrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.research-ecosystem-image {
	width: 100%;
	height: auto;
	display: block;
}

.research-structure-principles {
	background-color: #ffffff;
}

.research-principles-title {
	font-size: 1.75rem;
	color: #23262a;
	letter-spacing: 0.5px;
}

.research-principles-content {
	max-width: 90%;
}

.research-principles-paragraph {
	font-size: 1rem;
	line-height: 1.6;
	color: #23262a;
}

@media (max-width: 992px) {
	.research-structure-title {
		font-size: 2.5rem;
	}

	.research-ecosystem-wrapper {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.research-structure-top {
		padding: 3rem 0 !important;
	}

	.research-structure-strategy-section {
		padding: 3rem 0 !important;
	}

	.research-structure-title {
		font-size: 2rem;
	}

	.research-strategy-title {
		font-size: 1.25rem;
	}

	.research-strategy-content,
	.research-principles-content {
		max-width: 100%;
	}

	.research-strategy-paragraph,
	.research-principles-paragraph {
		font-size: 0.9375rem;
	}

	.research-principles-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 576px) {
	.research-structure-title {
		font-size: 1.75rem;
	}

	.research-strategy-title {
		font-size: 1rem;
	}

	.research-principles-title {
		font-size: 1.25rem;
	}
}

/* Laboratories Component */
.laboratories-section {
	background-color: #f5f5f5;
}

.laboratories-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 1px;
}

.laboratory-header {
	background-color: #e0e0e0;
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-bottom: 0.5rem;
}

.laboratory-header:hover {
	background-color: #d0d0d0;
}

.laboratory-name {
	font-size: 1.125rem;
	font-weight: 500;
	color: #23262a;
}

.laboratory-toggle-icon {
	font-size: 1.5rem;
	font-weight: bold;
	color: #dc3545;
	line-height: 1;
}

.laboratory-toggle-icon .icon-minus {
	display: none;
}

.laboratory-item.active .laboratory-toggle-icon .icon-plus {
	display: none;
}

.laboratory-item.active .laboratory-toggle-icon .icon-minus {
	display: inline-block;
}

.laboratory-content {
	display: none;
	background-color: #ffffff;
	padding: 2rem;
	margin-bottom: 1rem;
}

.laboratory-item.active .laboratory-content {
	display: block;
}

.laboratory-team-title {
	font-size: 2rem;
	color: #23262a;
	margin-bottom: 2rem;
	font-weight: 600;
}

.team-member-item {
	border-bottom: 1px solid #e0e0e0;
	padding: 1.5rem 0;
	transition: background-color 0.3s ease;
	cursor: pointer;
}

.team-member-item:nth-child(even) {
	background-color: #fafafa;
}

.team-member-item:hover {
	background-color: #f0f0f0;
}

.team-member-item.expanded {
	border: 2px solid #87ceeb;
	padding: 2rem;
	margin-bottom: 1rem;
	background-color: #ffffff;
}

.team-member-item:not(.expanded) .team-member-image {
	display: none;
}

.team-member-item:not(.expanded) .team-member-research-text {
	display: none;
}

.team-member-item:not(.expanded) .team-member-summary-text {
	display: none;
}

.team-member-item.expanded .team-member-image {
	display: block;
}

.team-member-item.expanded .team-member-research-text {
	display: block;
}

.team-member-item.expanded .team-member-summary-text {
	display: block;
}

.team-member-image {
	width: 150px;
	height: 150px;
	background-color: #2c2c2c;
	overflow: hidden;
	border-radius: 4px;
}

.team-member-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member-section-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #23262a;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.team-member-name {
	font-size: 1rem;
	font-weight: 600;
	color: #101010;
	margin-bottom: 0.25rem;
}

.team-member-subtitle {
	font-size: 0.875rem;
	color: #6c757d;
	font-style: italic;
}

.team-member-research-text,
.team-member-summary-text {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #23262a;
	margin: 0;
}

.team-member-toggle {
	cursor: pointer;
}

.member-toggle-icon {
	font-size: 1.5rem;
	font-weight: bold;
	color: #dc3545;
	line-height: 1;
}

.member-icon-minus {
	display: none;
}

.team-member-item.expanded .member-icon-plus {
	display: none;
}

.team-member-item.expanded .member-icon-minus {
	display: inline-block;
}

@media (max-width: 992px) {
	.laboratories-title {
		font-size: 2rem;
	}

	.laboratory-team-title {
		font-size: 1.75rem;
	}
}

@media (max-width: 768px) {
	.laboratory-header {
		padding: 0.875rem 1.25rem;
	}

	.laboratory-name {
		font-size: 1rem;
	}

	.laboratory-content {
		padding: 1.5rem;
	}

	.team-member-item.expanded {
		padding: 1.5rem;
	}

	.team-member-item .row {
		flex-direction: column;
	}

	.team-member-image {
		width: 120px;
		height: 120px;
		margin-bottom: 1rem;
	}

	.team-member-section-title {
		margin-top: 1rem;
		margin-bottom: 0.5rem;
	}

	.team-member-toggle {
		margin-top: 1rem;
		text-align: left;
	}
}

@media (max-width: 576px) {
	.laboratories-title {
		font-size: 1.75rem;
	}

	.laboratory-team-title {
		font-size: 1.5rem;
	}
}

/* About Faculty Component */
.about-faculty-section {
	background-color: #ffffff;
}

.about-faculty-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	line-height: 1.3;
}

.about-faculty-top-paragraph {
	max-width: 85%;
}

.about-faculty-text {
	font-size: 1rem;
	line-height: 1.6;
	color: #23262a;
}

.about-faculty-left-content {
	max-width: 100%;
}

.about-faculty-image-wrapper {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.about-faculty-image {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 1;
}

.about-faculty-bracket {
	position: absolute;
	width: 50px;
	height: 50px;
	border: 7px solid #ff6a1a;
	z-index: 2;
}

.about-faculty-bracket-top-right {
	top: -15px;
	left: -15px;
	border-bottom: none;
	border-left: none;
	transform: rotate(270deg);
}

.about-faculty-bracket-bottom-right {
	bottom: -15px;
	right: -15px;
	border-top: none;
	border-left: none;
}

@media (max-width: 992px) {
	.about-faculty-title {
		font-size: 2rem;
	}

	.about-faculty-top-paragraph {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.about-faculty-section {
		padding: 3rem 0 !important;
	}

	.about-faculty-title {
		font-size: 1.75rem;
	}

	.about-faculty-text {
		font-size: 0.9375rem;
	}

	.about-faculty-image-wrapper {
		margin-top: 2rem;
	}

	.about-faculty-bracket {
		width: 30px;
		height: 30px;
		border-width: 2px;
	}

	.about-faculty-bracket-top-right {
		top: -8px;
		right: -8px;
	}

	.about-faculty-bracket-bottom-right {
		bottom: -8px;
		right: -8px;
	}
}

@media (max-width: 576px) {
	.about-faculty-title {
		font-size: 1.5rem;
	}

	.about-faculty-text {
		font-size: 0.875rem;
	}

	.about-faculty-bracket {
		width: 25px;
		height: 25px;
	}
}

/* Departments Component */
.departments-section {
	width: 100%;
}

.departments-left {
	background-color: #fe6021;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.departments-header {
	padding: 1.5rem 2rem;
	background-color: #ffffff;
}

.departments-title {
	font-size: 1.75rem;
	color: #23262a;
	font-weight: normal;
	text-decoration: underline;
	text-decoration-color: #87ceeb;
	text-decoration-thickness: 2px;
	text-underline-offset: 8px;
}

.departments-list {
	padding: 2rem;
	flex: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
}

.departments-ul {
	margin: 0;
	padding: 0;
	width: 100%;
}

.departments-li {
	font-size: 1.125rem;
	color: #ffffff;
	line-height: 2;
	padding-left: 1.75rem;
	position: relative;
	list-style: none;
}

.departments-li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: white;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
	display: none;
}

.departments-image-wrapper {
	width: 100%;
	height: 100%;
}

.departments-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	max-height: 100%;
}

@media (max-width: 992px) {
	.departments-title {
		font-size: 1.5rem;
	}

	.departments-li {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.departments-header {
		padding: 1.25rem 1.5rem;
	}

	.departments-list {
		padding: 1.5rem;
	}

	.departments-title {
		font-size: 1.375rem;
	}

	.departments-li {
		font-size: 0.9375rem;
		line-height: 1.8;
	}
}

@media (max-width: 576px) {
	.departments-header {
		padding: 1rem;
	}

	.departments-list {
		padding: 1.25rem;
	}

	.departments-title {
		font-size: 1.25rem;
	}

	.departments-li {
		font-size: 0.875rem;
		padding-left: 1.25rem;
	}
}

/* Single White Video Box Component */
.single-white-video-box-section {
	width: 100%;
	position: relative;
}

.single-white-video-box-wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.single-white-video-box-background {
	width: 100%;
	position: relative;
	display: block;
}

.single-white-video-box-background img {
	display: block;
	width: 100%;
	height: auto;
}

.single-white-video-box-dark-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 5;
	pointer-events: none;
}

.single-white-video-box-overlay {
	z-index: 10;
	pointer-events: none;
}

.single-white-video-box-play-btn {
	cursor: pointer;
	pointer-events: auto;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.single-white-video-box-play-btn:hover {
	transform: scale(1.1);
	opacity: 0.9;
}

.single-white-video-box-play-btn:active {
	transform: scale(0.95);
}

.single-white-video-box-play-icon {
	width: 80px;
	height: 80px;
	display: block;
}

.single-white-video-box-title {
	font-size: 1.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
}

.single-white-video-box-video-container {
	z-index: 20;
	background: #000;
}

.single-white-video-box-video-container iframe {
	border: none;
}

@media (max-width: 768px) {
	.single-white-video-box-play-icon {
		width: 60px;
		height: 60px;
	}

	.single-white-video-box-title {
		font-size: 1.25rem;
		margin-top: 1rem !important;
	}
}

@media (max-width: 576px) {
	.single-white-video-box-play-icon {
		width: 50px;
		height: 50px;
	}

	.single-white-video-box-title {
		font-size: 1rem;
		margin-top: 0.75rem !important;
	}
}

/* News Detail Box Component */
.news-detail-box-section {
	background-color: #ffffff;
}

.news-detail-box-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
}

.news-detail-box-card {
	background-color: #ffffff;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-detail-box-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.news-detail-box-image {
	width: 100%;
	/* height: 250px; */
	overflow: hidden;
}

.news-detail-box-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.news-detail-box-card:hover .news-detail-box-img {
	transform: scale(1.05);
}

.news-detail-box-content {
	padding: 1.5rem;
}

.news-detail-box-card-title {
	font-size: 1.5rem;
	color: #23262a;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.news-detail-box-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #6c757d;
	margin: 0;
}

.news-detail-box-button {
	display: inline-block;
	background-color: #ff6a1a;
	padding: 0.75rem 1.5rem;
	text-align: center;
	font-size: 0.9375rem;
	letter-spacing: 0.5px;
	border-radius: 4px;
	transition: background-color 0.3s ease, transform 0.3s ease;
	width: fit-content;
	margin-top: auto;
}

.news-detail-box-button:hover {
	background-color: #dc5500;
	transform: translateY(-2px);
	color: #ffffff;
}

@media (max-width: 992px) {
	.news-detail-box-title {
		font-size: 2rem;
	}

	.news-detail-box-image {
		height: 220px;
	}

	.news-detail-box-card-title {
		font-size: 1.375rem;
	}
}

@media (max-width: 768px) {
	.news-detail-box-section {
		padding: 3rem 0 !important;
	}

	.news-detail-box-title {
		font-size: 1.75rem;
	}

	.news-detail-box-content {
		padding: 1.25rem;
	}

	.news-detail-box-image {
		height: 200px;
	}

	.news-detail-box-card-title {
		font-size: 1.25rem;
	}

	.news-detail-box-description {
		font-size: 0.9375rem;
	}

	.news-detail-box-button {
		padding: 0.625rem 1.25rem;
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.news-detail-box-title {
		font-size: 1.5rem;
	}

	.news-detail-box-image {
		height: 180px;
	}

	.news-detail-box-card-title {
		font-size: 1.125rem;
	}

	.news-detail-box-description {
		font-size: 0.875rem;
	}
}

/* Two Image Detail List Component */
.two-image-detail-list-section {
	background-color: #ffffff;
}

.two-image-detail-list-left {
	height: 100%;
	min-height: 600px;
}

.two-image-detail-list-pattern-area {
	width: 100%;
	height: 100%;
	min-height: 600px;
	background-color: #f5f5f5;
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.two-image-detail-list-pattern-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.two-image-detail-list-pattern-placeholder {
	width: 100%;
	height: 100%;
	min-height: 600px;
	background-color: #e9ecef;
}

.two-image-detail-list-content {
	padding: 3rem 2.5rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.two-image-detail-list-title {
	font-size: 31px;
	color: #fe6021;
	letter-spacing: 0.5px;
	line-height: 1.3;
	font-weight: 300;
	padding-left: 11px;
	font-family: 'Unica One';
}

.two-image-detail-list-items {
	margin-top: 1.5rem;
}

.two-image-detail-list-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	gap: 10px;
}

.two-image-detail-list-item:last-child {
	margin-bottom: 0;
}

.two-image-detail-list-number {
	font-size: 21px;
	font-weight: 500;
	color: #dc3545;
	line-height: 1.5;
	flex-shrink: 0;
	min-width: 30px;
	font-style: italic;
	text-align: right;
}

.two-image-detail-list-text {
	font-size: 0.9375rem;
	color: #23262a;
	line-height: 1.6;
	flex: 1;
}

.two-image-detail-list-right {
	width: 100%;
	height: 100%;
	min-height: 600px;
	overflow: hidden;
}

.two-image-detail-list-right-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.two-image-detail-list-right-placeholder {
	width: 100%;
	height: 100%;
	min-height: 600px;
	background-color: #2c2c2c;
}

@media (max-width: 992px) {
	.two-image-detail-list-content {
		padding: 2.5rem 2rem;
	}

	.two-image-detail-list-title {
		font-size: 1.75rem;
	}

	.two-image-detail-list-pattern-area,
	.two-image-detail-list-pattern-placeholder,
	.two-image-detail-list-left,
	.two-image-detail-list-right,
	.two-image-detail-list-right-placeholder,
	.two-image-detail-list-right-image {
		min-height: 500px;
	}
}

@media (max-width: 768px) {
	.two-image-detail-list-section {
		padding: 3rem 0 !important;
	}

	.two-image-detail-list-left .row {
		flex-direction: column;
	}

	.two-image-detail-list-left .col-3 {
		width: 100%;
		max-width: 100%;
	}

	.two-image-detail-list-left .col-9 {
		width: 100%;
		max-width: 100%;
	}

	.two-image-detail-list-pattern-area,
	.two-image-detail-list-pattern-placeholder {
		min-height: 200px;
		height: 200px;
	}

	.two-image-detail-list-content {
		padding: 2rem 1.5rem;
		min-height: auto;
	}

	.two-image-detail-list-title {
		font-size: 1.5rem;
	}

	.two-image-detail-list-item {
		gap: 1rem;
		margin-bottom: 1.25rem;
	}

	.two-image-detail-list-text {
		font-size: 0.875rem;
	}

	.two-image-detail-list-left,
	.two-image-detail-list-right,
	.two-image-detail-list-right-placeholder,
	.two-image-detail-list-right-image {
		min-height: 400px;
	}
}

@media (max-width: 576px) {
	.two-image-detail-list-content {
		padding: 1.5rem;
	}

	.two-image-detail-list-title {
		font-size: 1.25rem;
	}

	.two-image-detail-list-items {
		margin-top: 1rem;
	}

	.two-image-detail-list-item {
		margin-bottom: 1rem;
		gap: 0.75rem;
	}

	.two-image-detail-list-number {
		font-size: 1.125rem;
		min-width: 25px;
	}

	.two-image-detail-list-text {
		font-size: 0.8125rem;
	}

	.two-image-detail-list-pattern-area,
	.two-image-detail-list-pattern-placeholder {
		min-height: 150px;
		height: 150px;
	}

	.two-image-detail-list-left,
	.two-image-detail-list-right,
	.two-image-detail-list-right-placeholder,
	.two-image-detail-list-right-image {
		min-height: 300px;
	}
}

/* Three News Boxs Component */
.three-news-boxs-section {
	background-color: #ffffff;
}

.three-news-boxs-title {
	font-size: 2rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-align: left;
}

.three-news-boxs-card {
	background-color: #ffffff;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 0;
}

.three-news-boxs-image {
	width: 100%;
	overflow: hidden;
	background-color: #f5f5f5;
}

.three-news-boxs-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	min-height: 250px;
}

.three-news-boxs-content {
	padding: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.three-news-boxs-card-title {
	font-size: 1.5rem;
	color: #23262a;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.three-news-boxs-description {
	font-size: 0.9375rem;
	color: #6c757d;
	line-height: 1.6;
	text-align: left;
}

@media (max-width: 992px) {
	.three-news-boxs-title {
		font-size: 1.75rem;
	}

	.three-news-boxs-content {
		padding: 1.75rem;
	}

	.three-news-boxs-card-title {
		font-size: 1.375rem;
	}
}

@media (max-width: 768px) {
	.three-news-boxs-section {
		padding: 3rem 0 !important;
	}

	.three-news-boxs-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem !important;
	}

	.three-news-boxs-content {
		padding: 1.5rem;
	}

	.three-news-boxs-card-title {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.three-news-boxs-description {
		font-size: 0.875rem;
	}

	.three-news-boxs-img {
		min-height: 200px;
	}
}

@media (max-width: 576px) {
	.three-news-boxs-title {
		font-size: 1.25rem;
	}

	.three-news-boxs-content {
		padding: 1.25rem;
	}

	.three-news-boxs-card-title {
		font-size: 1.125rem;
	}

	.three-news-boxs-description {
		font-size: 0.8125rem;
	}

	.three-news-boxs-img {
		min-height: 180px;
	}
}

/* SSS Accordion Component */
.sss-accordion-section {
	background-color: #ffffff;
}

.sss-accordion-title {
	font-size: 2rem;
	color: black;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-align: left;
}

.sss-accordion-list {
	width: 100%;
}

.sss-accordion-item {
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: -1px;
}

.sss-accordion-item:first-child {
	border-top: 1px solid #e0e0e0;
}

.sss-accordion-item:last-child {
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 0;
}

.sss-accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.sss-accordion-header:hover {
	opacity: 0.8;
}

.sss-accordion-question {
	font-size: 1rem;
	color: #6c757d;
	font-weight: 400;
	flex: 1;
	text-align: left;
	line-height: 1.5;
}

.sss-accordion-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 1.5rem;
	width: 24px;
	height: 24px;
	position: relative;
}

.sss-accordion-icon .icon-plus,
.sss-accordion-icon .icon-minus {
	font-size: 1.5rem;
	font-weight: bold;
	color: #dc3545;
	line-height: 1;
	position: absolute;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.sss-accordion-icon .icon-plus {
	opacity: 1;
	transform: rotate(0deg);
}

.sss-accordion-icon .icon-minus {
	opacity: 0;
	transform: rotate(90deg);
}

.sss-accordion-item.active .sss-accordion-icon .icon-plus {
	opacity: 0;
	transform: rotate(-90deg);
}

.sss-accordion-item.active .sss-accordion-icon .icon-minus {
	opacity: 1;
	transform: rotate(0deg);
}

.sss-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 0;
}

.sss-accordion-item.active .sss-accordion-content {
	max-height: 1000px;
	padding: 0 0 1.5rem 0;
}

.sss-accordion-answer {
	font-size: 0.9375rem;
	color: #23262a;
	line-height: 1.6;
	text-align: left;
	padding-top: 0.5rem;
}

@media (max-width: 992px) {
	.sss-accordion-title {
		font-size: 1.75rem;
	}

	.sss-accordion-header {
		padding: 1.25rem 0;
	}

	.sss-accordion-question {
		font-size: 0.9375rem;
	}
}

@media (max-width: 768px) {
	.sss-accordion-section {
		padding: 3rem 0 !important;
	}

	.sss-accordion-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem !important;
	}

	.sss-accordion-header {
		padding: 1rem 0;
	}

	.sss-accordion-question {
		font-size: 0.875rem;
	}

	.sss-accordion-icon {
		width: 20px;
		height: 20px;
		margin-left: 1rem;
	}

	.sss-accordion-icon .icon-plus,
	.sss-accordion-icon .icon-minus {
		font-size: 1.25rem;
	}

	.sss-accordion-item.active .sss-accordion-content {
		padding: 0 0 1rem 0;
	}

	.sss-accordion-answer {
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.sss-accordion-title {
		font-size: 1.25rem;
	}

	.sss-accordion-header {
		padding: 0.875rem 0;
	}

	.sss-accordion-question {
		font-size: 0.8125rem;
		padding-right: 0.5rem;
	}

	.sss-accordion-icon {
		margin-left: 0.75rem;
	}

	.sss-accordion-answer {
		font-size: 0.8125rem;
	}
}

/* Contact Component */
.contact-section {
	background-color: #ffffff;
}

.contact-title {
	font-size: 2rem;
	color: #23262a;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-align: left;
}

.contact-box {
	background-color: #f5f5f5;
	border-radius: 8px;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.contact-box-title {
	font-size: 1.125rem;
	color: #23262a;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}

.contact-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
}

.contact-label {
	font-size: 0.9375rem;
	color: #23262a;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.contact-value {
	font-size: 0.9375rem;
	color: #23262a;
	font-weight: 400;
	line-height: 1.6;
}

.contact-emails {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.contact-email {
	font-size: 0.9375rem;
	color: #0d6efd;
	text-decoration: underline;
	font-weight: 400;
	line-height: 1.6;
	transition: color 0.3s ease;
}

.contact-email:hover {
	color: #0a58ca;
	text-decoration: underline;
}

@media (max-width: 992px) {
	.contact-title {
		font-size: 1.75rem;
	}

	.contact-box {
		padding: 1.75rem;
	}

	.contact-box-title {
		font-size: 1.0625rem;
	}
}

@media (max-width: 768px) {
	.contact-section {
		padding: 3rem 0 !important;
	}

	.contact-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem !important;
	}

	.contact-box {
		padding: 1.5rem;
	}

	.contact-box-title {
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}

	.contact-label,
	.contact-value,
	.contact-email {
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.contact-title {
		font-size: 1.25rem;
	}

	.contact-box {
		padding: 1.25rem;
	}

	.contact-box-title {
		font-size: 0.9375rem;
	}

	.contact-label,
	.contact-value,
	.contact-email {
		font-size: 0.8125rem;
	}
}

/* Research Partnerships Component */
.research-partnerships-section {
	width: 100%;
}

.research-partnerships-header {
	background-color: #ff6a1a;
	padding: 2rem 0;
}

.research-partnerships-title {
	font-size: 2rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-align: left;
}

.research-partnerships-content {
	background-color: #ffffff;
	padding: 3rem 0;
}

.research-partnerships-slider-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	margin-top: -160px;
	background-color: white;
}

.research-partnerships-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	flex: 1;
}

.research-partnerships-slider-track {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease;
	width: max-content;
}

.research-partnerships-slide {
	flex: 0 0 calc((100% - 8rem) / 5);
	min-width: 200px;
	width: calc((100% - 8rem) / 5);
}

.research-partnerships-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 15px;
	height: 100%;
}

.research-partnerships-logo-wrapper {
	width: 100%;
	max-width: 200px;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.research-partnerships-logo {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.research-partnerships-card-title {
	font-size: 1.125rem;
	color: #23262a;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
	text-align: center;
}

.research-partnerships-card-description {
	font-size: 0.9375rem;
	color: #6c757d;
	line-height: 1.6;
	text-align: center;
	margin: 0;
}

.research-partnerships-prev,
.research-partnerships-next {
	background-color: #e0e0e0;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
	flex-shrink: 0;
	z-index: 10;
}

.research-partnerships-prev:hover,
.research-partnerships-next:hover {
	background-color: #d0d0d0;
	transform: scale(1.1);
}

.research-partnerships-prev span,
.research-partnerships-next span {
	font-size: 1.5rem;
	color: #23262a;
	font-weight: bold;
	line-height: 1;
}

@media (max-width: 1400px) {
	.research-partnerships-slide {
		flex: 0 0 calc(25% - 1.5rem);
	}
}

@media (max-width: 1200px) {
	.research-partnerships-slide {
		flex: 0 0 calc(33.333% - 1.33rem);
	}
}

@media (max-width: 992px) {
	.research-partnerships-header {
		padding: 1.5rem 0;
	}

	.research-partnerships-title {
		font-size: 1.75rem;
	}

	.research-partnerships-content {
		padding: 2.5rem 0;
	}

	.research-partnerships-slide {
		flex: 0 0 calc((100% - 2rem) / 2);
		width: calc((100% - 2rem) / 2);
		min-width: 250px;
	}

	.research-partnerships-logo-wrapper {
		max-width: 150px;
		height: 150px;
	}

	.research-partnerships-card-title {
		font-size: 1rem;
	}

	.research-partnerships-card-description {
		font-size: 0.875rem;
	}
}

@media (max-width: 768px) {
	.research-partnerships-header {
		padding: 1.25rem 0;
	}

	.research-partnerships-title {
		font-size: 1.5rem;
	}

	.research-partnerships-content {
		padding: 2rem 0;
	}

	.research-partnerships-slider-wrapper {
		gap: 0.5rem;
	}

	.research-partnerships-slide {
		flex: 0 0 100%;
		width: 100%;
		min-width: 280px;
	}

	.research-partnerships-prev,
	.research-partnerships-next {
		width: 40px;
		height: 40px;
	}

	.research-partnerships-prev span,
	.research-partnerships-next span {
		font-size: 1.25rem;
	}

	.research-partnerships-logo-wrapper {
		max-width: 120px;
		height: 120px;
		margin-bottom: 1rem;
	}

	.research-partnerships-card {
		padding: 1rem;
	}

	.research-partnerships-card-title {
		font-size: 0.9375rem;
		margin-bottom: 0.75rem;
	}

	.research-partnerships-card-description {
		font-size: 0.8125rem;
	}
}

@media (max-width: 576px) {
	.research-partnerships-title {
		font-size: 1.25rem;
	}

	.research-partnerships-content {
		padding: 1.5rem 0;
	}

	.research-partnerships-prev,
	.research-partnerships-next {
		width: 35px;
		height: 35px;
	}

	.research-partnerships-prev span,
	.research-partnerships-next span {
		font-size: 1rem;
	}
}


.research-partnerships-section {
	width: 100%;
	position: relative;
}

/* Header Section */
.research-partnerships-header {
	padding: 10px 0px 20px 30px;
	width: 100%;
	height: 190px;
}

.research-partnerships-title {
	font-size: 2.5rem;
	letter-spacing: 0.5px;
	font-weight: 300;
}

/* Content Section */
.research-partnerships-content {
	background-color: #ffffff;
	padding: 3rem 0;
	position: relative;
}

.research-partnerships-slider-wrapper {
	position: relative;
	padding: 0 3rem;
}

.research-partnerships-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.research-partnerships-track {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease;
	width: fit-content;
}

.research-partnerships-card {
	flex: 0 0 calc((100% - 8rem) / 5);
	min-width: 280px;
	position: relative;
}

.research-partnerships-card::after {
	content: '';
	position: absolute;
	right: -1rem;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: #f5f5f5;
	z-index: 1;
}

.research-partnerships-card:last-child::after {
	display: none;
}

.partnerships-card-inner {
	padding: 0px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.partnerships-logo-wrapper {
	width: 100%;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 150px;
}

.partnerships-logo {
	max-width: 150px;
	max-height: 150px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.partnerships-card-title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 1rem;
	line-height: 1.4;
	margin: auto;
}

.partnerships-card-description {
	font-size: 0.9375rem;
	color: #6c757d;
	line-height: 1.6;
	margin: 0;
	flex-grow: 1;
}

/* Navigation Buttons */
.partnerships-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgb(255 255 255 / 70%);
	color: #d9d9d9;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	z-index: 10;
	padding: 0;
	border: 3px solid #d9d9d9;
}

.partnerships-nav-btn:hover {
	background-color: rgba(108, 117, 125, 0.9);
}

.partnerships-prev {
	left: 0;
}

.partnerships-next {
	right: 0;
}

.partnerships-nav-btn span {
	line-height: 1;
	font-weight: 300;
}

/* Responsive */
@media (max-width: 1400px) {
	.research-partnerships-card {
		flex: 0 0 calc((100% - 6rem) / 4);
	}
}

@media (max-width: 1200px) {
	.research-partnerships-card {
		flex: 0 0 calc((100% - 4rem) / 3);
	}
}

@media (max-width: 992px) {
	.research-partnerships-title {
		font-size: 2rem;
	}

	.research-partnerships-content {
		padding: 2.5rem 0;
	}

	.research-partnerships-slider-wrapper {
		padding: 0 2.5rem;
	}

	.research-partnerships-card {
		flex: 0 0 calc((100% - 2rem) / 2);
		min-width: 250px;
	}

	.research-partnerships-track {
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.research-partnerships-header {
		padding: 1.5rem 0;
	}

	.research-partnerships-title {
		font-size: 1.75rem;
	}

	.research-partnerships-content {
		padding: 2rem 0;
	}

	.research-partnerships-slider-wrapper {
		padding: 0 2rem;
	}

	.research-partnerships-card {
		flex: 0 0 calc(100% - 1rem);
		min-width: 100%;
	}

	.partnerships-card-inner {
		padding: 1.25rem;
	}

	.partnerships-logo-wrapper {
		min-height: 120px;
	}

	.partnerships-logo {
		max-width: 120px;
		max-height: 120px;
	}

	.partnerships-card-title {
		font-size: 1rem;
	}

	.partnerships-card-description {
		font-size: 0.875rem;
	}

	.partnerships-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 1.25rem;
	}
}

@media (max-width: 576px) {
	.research-partnerships-title {
		font-size: 1.5rem;
	}

	.research-partnerships-slider-wrapper {
		padding: 0 1.5rem;
	}

	.partnerships-nav-btn {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}
}

/* Sustainable Shopping Videos Component */
.sustainable-shopping-videos-section {
	position: relative;
	padding: 4rem 0;
	background-attachment: fixed;
}

.sustainable-shopping-videos-title {
	font-size: 2.5rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-transform: uppercase;
}

.sustainable-shopping-videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.sustainable-shopping-video-box {
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.sustainable-shopping-video-box:hover {
	transform: translateY(-5px);
}

.sustainable-shopping-video-thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	background-color: #2c2c2c;
	border-radius: 8px;
}

.sustainable-shopping-video-thumb-img {
	object-fit: cover;
	display: block;
}

.sustainable-shopping-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s ease;
}

.sustainable-shopping-video-box:hover .sustainable-shopping-video-overlay {
	background-color: rgba(0, 0, 0, 0.5);
}

.sustainable-shopping-video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	z-index: 2;
	transition: transform 0.3s ease;
}

.sustainable-shopping-video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.sustainable-shopping-video-play-icon {
	width: 80px;
	height: 80px;
	object-fit: contain;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Video Modal */
.sustainable-shopping-video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sustainable-shopping-video-modal.active {
	opacity: 1;
	visibility: visible;
}

.sustainable-shopping-video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	cursor: pointer;
}

.sustainable-shopping-video-modal-content {
	position: relative;
	width: 90%;
	max-width: 1200px;
	aspect-ratio: 16 / 9;
	z-index: 10000;
	background-color: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sustainable-shopping-video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 2.5rem;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	transition: transform 0.3s ease;
	padding: 0;
	line-height: 1;
}

.sustainable-shopping-video-modal-close:hover {
	transform: rotate(90deg);
}

.sustainable-shopping-video-modal-close span {
	display: block;
	font-weight: 300;
}

.sustainable-shopping-video-modal-iframe-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.sustainable-shopping-video-modal-iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
	.sustainable-shopping-videos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.sustainable-shopping-videos-title {
		font-size: 2rem;
	}

	.sustainable-shopping-video-play-icon {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 768px) {
	.sustainable-shopping-videos-section {
		padding: 3rem 0;
	}

	.sustainable-shopping-videos-title {
		font-size: 1.75rem;
	}

	.sustainable-shopping-videos-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.sustainable-shopping-video-play-icon {
		width: 50px;
		height: 50px;
	}

	.sustainable-shopping-video-modal-content {
		width: 95%;
	}

	.sustainable-shopping-video-modal-close {
		top: -35px;
		font-size: 2rem;
		width: 35px;
		height: 35px;
	}
}

@media (max-width: 576px) {
	.sustainable-shopping-videos-title {
		font-size: 1.5rem;
	}

	.sustainable-shopping-video-play-icon {
		width: 40px;
		height: 40px;
	}
}

/* Food Security Component */
.food-security-section {
	width: 100%;
	position: relative;
}

.food-security-banner {
	width: 100%;
	overflow: hidden;
}

.food-security-banner-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.food-security-green-section {
	width: 100%;
	padding: 2rem 0;
}

.food-security-green-content {
	max-width: 900px;
}

.food-security-title {
	font-size: 3rem;
	letter-spacing: 0.5px;
	font-weight: 300;
	line-height: 1.2;
}

.food-security-description {
	font-size: 1.125rem;
	line-height: 1.8;
	font-weight: 400;
}

.food-security-content {
	background-color: #f5f5f5;
	padding: 4rem 0;
}

.food-security-items-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.food-security-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.food-security-item-icon {
	font-size: 3rem;
	font-weight: 300;
	color: #6c757d;
	line-height: 1;
	flex-shrink: 0;
	min-width: 50px;
	text-align: center;
}

.food-security-item-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #23262a;
	flex: 1;
}

/* Responsive */
@media (max-width: 992px) {
	.food-security-green-section {
		padding: 3rem 0;
	}

	.food-security-title {
		font-size: 2.5rem;
	}

	.food-security-description {
		font-size: 1rem;
	}

	.food-security-content {
		padding: 3rem 0;
	}

	.food-security-items-list {
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.food-security-green-section {
		padding: 2.5rem 0;
	}

	.food-security-title {
		font-size: 2rem;
		margin-bottom: 1.5rem !important;
	}

	.food-security-description {
		font-size: 0.9375rem;
	}

	.food-security-content {
		padding: 2.5rem 0;
	}

	.food-security-items-list {
		gap: 1.25rem;
	}

	.food-security-item {
		gap: 1rem;
	}

	.food-security-item-icon {
		font-size: 2.5rem;
		min-width: 40px;
	}

	.food-security-item-text {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.food-security-green-section {
		padding: 2rem 0;
	}

	.food-security-title {
		font-size: 1.75rem;
	}

	.food-security-description {
		font-size: 0.875rem;
		line-height: 1.6;
	}

	.food-security-content {
		padding: 2rem 0;
	}

	.food-security-items-list {
		gap: 1rem;
	}

	.food-security-item-icon {
		font-size: 2rem;
		min-width: 35px;
	}

	.food-security-item-text {
		font-size: 0.875rem;
		line-height: 1.6;
	}
}

.service-icon img {
	width: 55px;
}

.sport-senter-accordion-header {
	padding: 1.5rem 0 !important;
}


.explore-campus-videos-section {
	position: relative;

}

.explore-campus-videos-title {
	font-size: 2.5rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-transform: uppercase;
	padding-top: 24px;
}

.explore-campus-videos-grid {
	display: grid;
	gap: 2rem;
}

.explore-campus-video-box {
	position: relative;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.explore-campus-video-box:hover {
	transform: translateY(-5px);
}

.explore-campus-video-thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 6 / 9;
	overflow: hidden;
	background-color: #2c2c2c;
	border-radius: 0;
}

.explore-campus-video-thumb-img {
	object-fit: cover;
	display: block;
}

.explore-campus-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color 0.3s ease;
}

.explore-campus-video-box:hover .explore-campus-video-overlay {
	background-color: rgba(0, 0, 0, 0.5);
}

.explore-campus-video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 2;
	transition: transform 0.3s ease;
}

.explore-campus-video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.explore-campus-video-play-icon {
	width: 80px;
	height: 80px;
	display: block;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Video Modal Styles */
.explore-campus-video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.explore-campus-video-modal.active {
	opacity: 1;
	visibility: visible;
}

.explore-campus-video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.explore-campus-video-modal-content {
	position: relative;
	width: 90%;
	max-width: 1200px;
	aspect-ratio: 16 / 9;
	z-index: 1;
	background-color: #000;
	border-radius: 8px;
	overflow: hidden;
}

.explore-campus-video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 2.5rem;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: opacity 0.3s ease;
	line-height: 1;
	padding: 0;
}

.explore-campus-video-modal-close:hover {
	opacity: 0.7;
}

.explore-campus-video-modal-iframe-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.explore-campus-video-modal-iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
	.explore-campus-videos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.explore-campus-videos-title {
		font-size: 2rem;
	}

	.explore-campus-video-play-icon {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 768px) {
	.explore-campus-videos-section {
		padding: 3rem 0;
	}

	.explore-campus-videos-title {
		font-size: 1.75rem;
	}

	.explore-campus-videos-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.explore-campus-video-play-icon {
		width: 50px;
		height: 50px;
	}

	.explore-campus-video-modal-content {
		width: 95%;
	}

	.explore-campus-video-modal-close {
		top: -35px;
		font-size: 2rem;
		width: 35px;
		height: 35px;
	}
}

@media (max-width: 576px) {
	.explore-campus-videos-title {
		font-size: 1.5rem;
	}

	.explore-campus-video-play-icon {
		width: 40px;
		height: 40px;
	}
}



.study-spaces-library-section {
	width: 100%;
}

.study-spaces-upper {
	background-color: #ffffff;
}

.study-spaces-title {
	font-size: 3.5rem;
	color: #ff2b0c;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.study-spaces-nav-wrapper {
	display: flex;
	justify-content: center;
}

.study-spaces-nav-bar {
	display: flex;
	align-items: center;
	background-color: #ff2b0c;
	padding: 6px 10px;
	border-radius: 0;
}

.study-spaces-nav-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	padding: 0 1rem;
	transition: opacity 0.3s ease;
}

.study-spaces-nav-link:hover {
	opacity: 0.8;
}

.study-spaces-nav-separator {
	color: #ffffff;
	margin: 0 0.5rem;
}

.study-spaces-paragraph-wrapper {
	max-width: 90%;
	margin: 0 auto;
}

.study-spaces-paragraph {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	text-align: left;
	margin: 0;
	width: 60%;
	margin: auto;
	text-align: center;
}

.study-spaces-library {
	position: relative;
	background-color: #ff6a1a;
}

.study-spaces-library-overlay {
	position: relative;
	z-index: 1;
	padding: 40px;
}

.study-spaces-library-title {
	font-size: 2rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	font-weight: 300;
}

.study-spaces-search-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.study-spaces-search-form {
	width: 100%;
}

.study-spaces-search-container {
	width: 100%;
}

.study-spaces-search-label {
	display: block;
	color: #514e4e;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	text-align: left;
	padding-right: 20px;
	padding-top: 10px;
}

.study-spaces-search-input-group {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #ffffff;
	border-radius: 0;
	overflow: hidden;
	padding: 20px;
}

.study-spaces-search-input {
	flex: 1;
	padding: 1rem 1.5rem;
	border: none;
	outline: none;
	font-size: 1rem;
	color: #23262a;
	background-color: #eaf3fc;
}

.study-spaces-search-input::placeholder {
	color: #6c757d;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.5px;
}

.study-spaces-search-button {
	background: none;
	border: none;
	padding: 1rem 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
	position: absolute;
	right: 20px;
}

.study-spaces-search-button:hover {
	opacity: 0.7;
}

.study-spaces-search-button svg {
	width: 20px;
	height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.study-spaces-title {
		font-size: 2rem;
	}

	.study-spaces-nav-bar {
		flex-direction: column;
		gap: 0.5rem;
		padding: 1rem;
	}

	.study-spaces-nav-separator {
		display: none;
	}

	.study-spaces-nav-link {
		padding: 0.5rem 0;
	}

	.study-spaces-library-title {
		font-size: 1.75rem;
	}

	.study-spaces-search-input {
		padding: 0.875rem 1.25rem;
		font-size: 0.9375rem;
	}

	.study-spaces-search-button {
		padding: 0.875rem 1.25rem;
	}
}

@media (max-width: 576px) {
	.study-spaces-title {
		font-size: 1.75rem;
	}

	.study-spaces-library-title {
		font-size: 1.5rem;
	}

	.study-spaces-search-input {
		padding: 0.75rem 1rem;
		font-size: 0.875rem;
	}

	.study-spaces-search-button {
		padding: 0.75rem 1rem;
	}

	.study-spaces-search-button svg {
		width: 18px;
		height: 18px;
	}
}

.fw-light b {
	font-weight: bold;
}

.study-rooms-section {
	width: 100%;
	padding: 40px 0px;
}

.study-rooms-left {
	padding: 4rem 3rem;
	display: flex;
	align-items: center;
	min-height: 350px;

	.study-rooms-content {
		width: 100%;
		max-width: 600px;
	}

	.study-rooms-title {
		font-size: 2.5rem;
		letter-spacing: 0.5px;
		font-weight: 300;
		line-height: 1.3;
	}

	.study-rooms-paragraph {
		font-size: 1rem;
		line-height: 1.8;
		margin: 0;
	}

	.study-rooms-image-wrapper {
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.study-rooms-image {
		object-fit: cover;
		display: block;
	}

	/* Responsive */
	@media (max-width: 992px) {
		.study-rooms-left {
			padding: 3rem 2rem;
			min-height: 400px;
		}

		.study-rooms-title {
			font-size: 2rem;
		}

		.study-rooms-image-wrapper {
			min-height: 400px;
		}
	}

	@media (max-width: 768px) {
		.study-rooms-left {
			padding: 2.5rem 1.5rem;
			min-height: auto;
		}

		.study-rooms-title {
			font-size: 1.75rem;
			margin-bottom: 1.5rem !important;
		}

		.study-rooms-paragraph {
			font-size: 0.9375rem;
		}

		.study-rooms-image-wrapper {
			min-height: 350px;
		}
	}

	@media (max-width: 576px) {
		.study-rooms-left {
			padding: 2rem 1.25rem;
		}

		.study-rooms-title {
			font-size: 1.5rem;
			margin-bottom: 1.25rem !important;
		}

		.study-rooms-paragraph {
			font-size: 0.875rem;
		}

		.study-rooms-image-wrapper {
			min-height: 300px;
		}
	}
}

.library-services-section {
	width: 100%;
	padding: 4rem 0;
}

.library-services-content {
	background-color: #ffffff;
	padding: 0;
	border-radius: 0;
}

.library-services-main-title {}

.library-services-title {
	font-size: 1.5rem;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: 0.5px;
}

.library-services-left {
	padding: 0;
	padding-right: 2rem;
}

.library-services-right {
	padding: 2rem;
	min-height: 300px;
	position: relative;
}

.library-services-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.library-services-menu-item {
	padding: 1rem 1.5rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-left: 3px solid transparent;
}

.library-services-menu-item:hover,
.library-services-menu-item.active {
	background-color: #f5f5f5;
	border-left-color: #003c6d;
}

.library-services-menu-label {
	color: #003c6d;
	font-size: 1rem;
	font-weight: 400;
	display: block;
}

.library-services-content-panel {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.library-services-content-panel.active {
	display: block;
	opacity: 1;
}

.library-services-content-title {
	font-size: 1.25rem;
	color: #003c6d;
	letter-spacing: 0.5px;
	margin-bottom: 1.5rem;
}

.library-services-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.library-services-link-item {
	margin-bottom: 0.75rem;
}

.library-services-link {
	color: #003c6d;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	transition: opacity 0.3s ease;
}

.library-services-link:hover {
	opacity: 0.7;
	color: #003c6d;
}

.library-services-info {
	color: #003c6d;
}

.library-services-status {
	font-size: 1rem;
	font-weight: 500;
}

.library-services-hours {
	font-size: 1rem;
	color: #003c6d;
	font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
	.library-services-content {
		padding: 2.5rem;
	}

	.library-services-title {
		font-size: 1.375rem;
	}

	.library-services-content-title {
		font-size: 1.125rem;
	}

	.library-services-left {
		padding-right: 1.5rem;
	}

	.library-services-right {
		padding: 1.5rem;
	}
}

@media (max-width: 768px) {
	.library-services-section {
		padding: 3rem 0;
	}

	.library-services-content {
		padding: 2rem 1.5rem;
	}

	.library-services-title {
		font-size: 1.25rem;
	}

	.library-services-left {
		padding-right: 0;
		margin-bottom: 2rem;
	}

	.library-services-right {
		padding: 1.5rem;
		min-height: 250px;
	}

	.library-services-content-title {
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}

	.library-services-menu-item {
		padding: 0.875rem 1.25rem;
	}

	.library-services-menu-label {
		font-size: 0.9375rem;
	}

	.library-services-link {
		font-size: 0.9375rem;
	}

	.library-services-status,
	.library-services-hours {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.library-services-section {
		padding: 2rem 0;
	}

	.library-services-content {
		padding: 1.5rem 1.25rem;
	}

	.library-services-title {
		font-size: 1.125rem;
	}

	.library-services-content-title {
		font-size: 0.9375rem;
		margin-bottom: 1rem;
	}

	.library-services-menu-item {
		padding: 0.75rem 1rem;
	}

	.library-services-menu-label {
		font-size: 0.875rem;
	}

	.library-services-link {
		font-size: 0.875rem;
	}

	.library-services-status,
	.library-services-hours {
		font-size: 0.875rem;
	}

	.library-services-right {
		min-height: 200px;
	}
}

.career-center-section {
	width: 100%;
	position: relative;
	padding: 4rem 0;
}

.career-center-content {
	margin: 0 auto;
	padding: 2rem;
	background: #ffffff;
}

.career-center-title {
	font-size: 2rem;
	color: #000000;
	letter-spacing: 0.5px;
	font-weight: 300;
	text-transform: uppercase;
}

.career-center-paragraphs {
	margin-top: 2rem;
}

.career-center-paragraph {
	font-size: 1rem;
	color: #000000;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	text-align: left;
}

.career-center-paragraph:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
	.career-center-section {
		padding: 3.5rem 0;
	}

	.career-center-title {
		font-size: 2.5rem;
	}

	.career-center-content {
		max-width: 100%;
		padding: 0 1rem;
	}
}

@media (max-width: 768px) {
	.career-center-section {
		padding: 3rem 0 !important;
	}

	.career-center-title {
		font-size: 2rem;
		margin-bottom: 1.5rem !important;
	}

	.career-center-paragraph {
		font-size: 0.9375rem;
		margin-bottom: 1.25rem;
	}
}

@media (max-width: 576px) {
	.career-center-section {
		padding: 2.5rem 0 !important;
	}

	.career-center-title {
		font-size: 1.75rem;
	}

	.career-center-paragraph {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}
}



.student-support-section {
	width: 100%;
	position: relative;
}

.student-support-menu-wrapper {
	padding: 0px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.student-support-main-title {
	font-size: 2rem;
	color: #ffffff;
	letter-spacing: 0.5px;
	line-height: 1.2;
	margin-bottom: 3rem;
}

.student-support-menu {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.student-support-menu-item {
	width: 80px;
	height: 100%;
	min-height: 700px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1), transparent);
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	transition: all 0.3s ease;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}

.student-support-menu-item:hover {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15), transparent);
}

.student-support-menu-item.active {
	background: linear-gradient(to bottom, var(--active-bg-color), rgba(255, 255, 255, 0.2), transparent);
}

.student-support-menu-label {
	color: #ffffff;
	font-size: 27px;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
	display: inline-block;
	position: absolute;
	left: 1rem;
	bottom: -1rem;
	transform: rotate(-90deg);
	transform-origin: left center;
	text-align: left;
	padding-top: 50px;
}

.student-support-content-wrapper {
	min-height: 600px;
	padding: 0px;
	position: relative;
	overflow: hidden;
	color: white;
	padding-top: 110px;
}

.student-support-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.student-support-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.student-support-slide.active {
	opacity: 1;
	visibility: visible;
	position: relative;
}

.student-support-content-panel {
	padding-right: 4rem;
}

.student-support-content-title {
	font-size: 29px;
	color: #ffffff;
	letter-spacing: 0.5px;
	line-height: 1.2;
	font-weight: 300 !important;
	margin-bottom: 2rem;
	padding: 0px;
	display: inline-block;
}

.student-support-paragraphs {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.student-support-paragraph-block {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.student-support-paragraph {
	font-size: 1rem;
	color: white;
	line-height: 1.8;
	margin: 0;
	text-align: left;
}

.student-support-prev,
.student-support-next {
	position: absolute;
	bottom: 0rem;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #23262a;
	transition: all 0.3s ease;
	z-index: 10;
	background-color: #ff6a1a;
	border: 0px;
}

.student-support-prev:hover,
.student-support-next:hover {
	background-color: #ff6a1aa6;
	border-color: #23262a;
}

.student-support-prev {
	/* right: 70px; */
}

.student-support-next {
	right: 45rem;
}

.student-support-prev span,
.student-support-next span {
	line-height: 1;
	font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
	.student-support-main-title {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}

	.student-support-menu-item {
		width: 80px;
		min-height: 250px;
	}

	.student-support-content-wrapper {
		padding: 2rem;
		min-height: 500px;
	}

	.student-support-content-title {
		font-size: 2rem;
	}

	.student-support-content-panel {
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	.student-support-section {
		padding: 2rem 0 !important;
	}

	.student-support-menu-wrapper {
		padding: 1.5rem 0.5rem 1.5rem 0;
	}

	.student-support-main-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.student-support-menu-item {
		width: 80px;
		min-height: 200px;
	}

	.student-support-menu-label {
		font-size: 0.75rem;
	}

	.student-support-content-wrapper {
		padding: 1.5rem;
		min-height: 400px;
	}

	.student-support-content-title {
		font-size: 1.75rem;
		padding: 0.75rem 1.25rem;
	}

	.student-support-paragraph {
		font-size: 0.9375rem;
	}

	.student-support-prev,
	.student-support-next {
		width: 45px;
		height: 45px;
		font-size: 1.25rem;
	}

	.student-support-prev {
		right: 60px;
	}

	.student-support-next {
		right: 1.5rem;
	}
}

@media (max-width: 576px) {
	.student-support-main-title {
		font-size: 1.75rem;
	}

	.student-support-menu-item {
		width: 80px;
		min-height: 180px;
	}

	.student-support-menu-label {
		font-size: 0.6875rem;
	}

	.student-support-content-wrapper {
		padding: 1.25rem;
		min-height: 350px;
	}

	.student-support-content-title {
		font-size: 1.5rem;
		padding: 0.625rem 1rem;
	}

	.student-support-paragraph {
		font-size: 0.875rem;
	}

	.student-support-prev,
	.student-support-next {
		width: 40px;
		height: 40px;
		font-size: 1.125rem;
		bottom: 1.5rem;
	}

	.student-support-prev {
		right: 50px;
	}

	.student-support-next {
		right: 1.25rem;
	}
}


.study-spaces-accordion-section {}

.study-spaces-accordion-title {
	font-size: 2.5rem;
	letter-spacing: 0.5px;
	font-weight: 400;
	line-height: 1.3;
}

.study-spaces-accordion-title-part1 {
	color: #6c757d;
	/* Light gray */
	font-weight: 400;
}

.study-spaces-accordion-title-part2 {
	color: #23262a;
	/* Dark gray/black */
	font-weight: 700;
}

.study-spaces-accordion-paragraph-wrapper {
	max-width: 70%;
	margin: 0 auto;
}

.study-spaces-accordion-paragraph {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	text-align: center;
	margin: 0;
}

.study-spaces-accordion-list {

	margin: 0 auto;
	margin-top: 2rem;
}

.study-spaces-accordion-item {
	border-bottom: 1px solid #e0e0e0;
}

.study-spaces-accordion-item:first-child {
	border-top: 1px solid #e0e0e0;
}

.study-spaces-accordion-item:last-child {
	border-bottom: 1px solid #e0e0e0;
}

.study-spaces-accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.5rem 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: opacity 0.3s ease;
}

.study-spaces-accordion-header:hover {
	opacity: 0.8;
}

.study-spaces-accordion-label {
	font-size: 1rem;
	color: #23262a;
	font-weight: 400;
	flex: 1;
	line-height: 1.5;
}

.study-spaces-accordion-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 1.5rem;
	width: 24px;
	height: 24px;
	position: relative;
}

.study-spaces-accordion-icon .icon-plus,
.study-spaces-accordion-icon .icon-minus {
	font-size: 1.5rem;
	font-weight: bold;
	color: #dc3545;
	/* Red */
	line-height: 1;
	position: absolute;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.study-spaces-accordion-icon .icon-plus {
	opacity: 1;
	transform: rotate(0deg);
}

.study-spaces-accordion-icon .icon-minus {
	opacity: 0;
	transform: rotate(90deg);
}

.study-spaces-accordion-item.active .study-spaces-accordion-icon .icon-plus {
	opacity: 0;
	transform: rotate(-90deg);
}

.study-spaces-accordion-item.active .study-spaces-accordion-icon .icon-minus {
	opacity: 1;
	transform: rotate(0deg);
}

.study-spaces-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 0;
}

.study-spaces-accordion-item.active .study-spaces-accordion-content {
	max-height: 1000px;
	padding: 0 0 1.5rem 0;
}

.study-spaces-accordion-text {
	font-size: 0.9375rem;
	color: #23262a;
	line-height: 1.8;
	text-align: left;
	padding-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
	.study-spaces-accordion-title {
		font-size: 2rem;
	}

	.study-spaces-accordion-paragraph-wrapper,
	.study-spaces-accordion-list {
		max-width: 85%;
	}
}

@media (max-width: 768px) {
	.study-spaces-accordion-section {
		padding: 3rem 0 !important;
	}

	.study-spaces-accordion-title {
		font-size: 1.75rem;
	}

	.study-spaces-accordion-paragraph-wrapper {
		max-width: 100%;
		margin-bottom: 1.5rem !important;
	}

	.study-spaces-accordion-paragraph {
		font-size: 0.9375rem;
	}

	.study-spaces-accordion-list {
		max-width: 100%;
		margin-top: 1.5rem;
	}

	.study-spaces-accordion-header {
		padding: 1.25rem 0;
	}

	.study-spaces-accordion-label {
		font-size: 0.9375rem;
	}

	.study-spaces-accordion-icon {
		width: 20px;
		height: 20px;
		margin-left: 1rem;
	}

	.study-spaces-accordion-icon .icon-plus,
	.study-spaces-accordion-icon .icon-minus {
		font-size: 1.25rem;
	}

	.study-spaces-accordion-item.active .study-spaces-accordion-content {
		padding: 0 0 1rem 0;
	}

	.study-spaces-accordion-text {
		font-size: 0.875rem;
	}
}

@media (max-width: 576px) {
	.study-spaces-accordion-section {
		padding: 2rem 0 !important;
	}

	.study-spaces-accordion-title {
		font-size: 1.5rem;
	}

	.study-spaces-accordion-paragraph {
		font-size: 0.875rem;
	}

	.study-spaces-accordion-header {
		padding: 1rem 0;
	}

	.study-spaces-accordion-label {
		font-size: 0.875rem;
		padding-right: 0.5rem;
	}

	.study-spaces-accordion-icon {
		margin-left: 0.75rem;
	}

	.study-spaces-accordion-text {
		font-size: 0.8125rem;
	}
}


/* Our Team Section */
.outstanding-researchers-team-section {
	background-color: #ffffff;
}

.outstanding-researchers-team-title {
	font-size: 2.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	margin-bottom: 3rem;
}

.outstanding-researchers-team-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
}

.outstanding-researchers-member-card {
	text-align: center;
}

.outstanding-researchers-member-image-wrapper {
	width: 200px;
	height: 200px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	overflow: hidden;
	background-color: #f0f0f0;
}

.outstanding-researchers-member-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.outstanding-researchers-member-name {
	font-size: 1rem;
	font-weight: 600;
	color: #23262a;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.outstanding-researchers-member-faculty {
	font-size: 0.875rem;
	color: #23262a;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.outstanding-researchers-member-readmore a {
	font-size: 0.875rem;
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.outstanding-researchers-member-readmore a:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* About President Section */
.outstanding-researchers-about-section {
	background-color: #ffffff;
}

.outstanding-researchers-about-content {
	padding-right: 2rem;
}

.outstanding-researchers-about-title {
	font-size: 1.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	line-height: 1.2;
}

.outstanding-researchers-about-paragraphs {
	margin-top: 1.5rem;
}

.outstanding-researchers-about-paragraph {
	font-size: 1rem;
	color: #23262a;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.outstanding-researchers-about-paragraph:last-child {
	margin-bottom: 0;
}

.outstanding-researchers-video-wrapper {
	position: relative;
	width: 100%;
}

.outstanding-researchers-video-thumbnail {
	position: relative;
	width: 100%;
	overflow: hidden;
	/* cursor: pointer; */
}

.outstanding-researchers-video-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.outstanding-researchers-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease;
}

.outstanding-researchers-video-thumbnail:hover .outstanding-researchers-video-overlay {
	background-color: rgba(0, 0, 0, 0.4);
}

.outstanding-researchers-video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 2;
}

.outstanding-researchers-video-play-icon {
	width: 80px;
	height: 80px;
	display: block;
}

/* Video Modal */
.outstanding-researchers-video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.outstanding-researchers-video-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.outstanding-researchers-video-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
}

.outstanding-researchers-video-modal-content {
	position: relative;
	width: 90%;
	max-width: 1200px;
	aspect-ratio: 16 / 9;
	z-index: 10001;
}

.outstanding-researchers-video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 2.5rem;
	cursor: pointer;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10002;
	transition: opacity 0.3s ease;
}

.outstanding-researchers-video-modal-close:hover {
	opacity: 0.7;
}

.outstanding-researchers-video-modal-iframe-wrapper {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.outstanding-researchers-video-modal-iframe-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Responsive */
@media (max-width: 1200px) {
	.outstanding-researchers-team-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 992px) {
	.outstanding-researchers-team-title {
		font-size: 2rem;
	}

	.outstanding-researchers-team-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}

	.outstanding-researchers-about-content {
		padding-right: 0;
		margin-bottom: 2rem;
	}

	.outstanding-researchers-about-title {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {

	.outstanding-researchers-team-section,
	.outstanding-researchers-about-section {
		padding: 3rem 0 !important;
	}

	.outstanding-researchers-team-title {
		font-size: 1.75rem;
		margin-bottom: 2rem;
	}

	.outstanding-researchers-team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.outstanding-researchers-member-image-wrapper {
		width: 150px;
		height: 150px;
	}

	.outstanding-researchers-about-title {
		font-size: 1.75rem;
	}

	.outstanding-researchers-about-paragraph {
		font-size: 0.9375rem;
	}
}

@media (max-width: 576px) {
	.outstanding-researchers-team-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.outstanding-researchers-member-image-wrapper {
		width: 180px;
		height: 180px;
	}

	.outstanding-researchers-about-title {
		font-size: 1.5rem;
	}
}


.campus-spaces-cards-section {
	min-height: 500px;
	position: relative;
	overflow: hidden;
}

.campus-spaces-cards-background-pattern {
	pointer-events: none;
}

.campus-spaces-card {
	background-color: #ffffff;
	border-radius: 8px 8px 0 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
}

.campus-spaces-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.campus-spaces-card-image-wrapper {
	width: 100%;
	height: 310px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.campus-spaces-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.campus-spaces-card-content {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.campus-spaces-card-title {
	font-size: 1.5rem;
	color: #23262a;
	letter-spacing: 0.5px;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.campus-spaces-card-text {
	font-size: 1rem;
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.campus-spaces-card-button {
	display: block;
	padding: 0.75rem 1.5rem;
	background-color: #ff6a1a;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	border-radius: 4px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	text-align: left;
	width: 50%;
	text-align: center;
}

.campus-spaces-card-button:hover {
	background-color: #e55a0f;
	color: #ffffff;
	text-decoration: none;
	transform: scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
	.campus-spaces-card-content {
		padding: 2rem;
	}

	.campus-spaces-card-image-wrapper {
		height: 180px;
	}

	.campus-spaces-card-title {
		font-size: 1.375rem;
	}

	.campus-spaces-card-text {
		font-size: 0.9375rem;
	}
}

@media (max-width: 768px) {
	.campus-spaces-cards-section {
		padding: 3rem 0 !important;
		min-height: 400px;
	}

	.campus-spaces-card-content {
		padding: 1.75rem;
	}

	.campus-spaces-card-image-wrapper {
		height: 160px;
	}

	.campus-spaces-card {
		margin-bottom: 1.5rem;
	}

	.campus-spaces-card-title {
		font-size: 1.25rem;
	}

	.campus-spaces-card-text {
		font-size: 0.875rem;
	}

	.campus-spaces-card-button {
		padding: 0.625rem 1.25rem;
		font-size: 0.875rem;
	}
}

.new-card-body {
	background-color: white;
	margin-top: 50px;
	margin-left: -33px;
	border-top: 16px solid #ff2b0c !important;
}

.researcher-image-box {
	background-color: #2c2c2c;
	height: 170px;
}

.researchers-section {
	background-color: #ff6a1a;
	height: 540px;
	min-height: fit-content;
}

@media (max-width: 576px) {
	.campus-spaces-card-content {
		padding: 1.5rem;
	}

	.campus-spaces-card-image-wrapper {
		height: 150px;
	}

	.campus-spaces-card-title {
		font-size: 1.125rem;
	}

	.campus-spaces-card-text {
		font-size: 0.8125rem;
	}

	.new-card-body {
		background-color: white;
		position: relative;
		margin-left: -33px;
		top: 0px;
		border-top: 16px solid #ff2b0c !important;
	}

	.researcher-image-box {
		background-color: #2c2c2c;
		height: auto;
	}

	.researchers-section {
		background-color: #ff6a1a;
		height: auto;
	}
}

/* Detail Page Styles */
.detail-page {
	padding: 60px 0;
	max-width: 1000px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.detail-hero-image {
	width: 100%;
	margin-bottom: 30px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-hero-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.detail-title {
	font-size: 2.5rem;
	line-height: 1.2;
	font-weight: 800;
	color: #1a202c;
	margin-bottom: 20px;
}

.detail-meta {
	font-size: 1rem;
	color: #718096;
	margin-bottom: 30px;
	display: flex;
	gap: 15px;
	align-items: center;
}

.detail-content {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #2d3748;
}

.detail-description {
	font-size: 1.25rem;
	font-weight: 500;
	color: #4a5568;
	margin-bottom: 30px;
	padding-left: 20px;
	border-left: 4px solid #1a237e;
}

.main-content {
	margin-top: 20px;
}

.main-content p {
	margin-bottom: 20px;
}

.detail-footer {
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.back-link {
	color: #1a237e;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s;
}

.back-link:hover {
	color: #0d47a1;
}

/* Static Header Override for Detail Pages */
body.static-header .top-bar,
body.static-header header,
body.static-header .header {
	position: static !important;
}

body.static-header {
	padding-top: 0 !important;
}

@media (max-width: 768px) {
	.detail-title {
		font-size: 1.75rem;
	}

	.detail-page {
		padding: 40px 20px;
	}
}

.main-content p img {
	max-width: 100%;
	height: auto;
}

.two-image-detail-list-items {
	max-height: 500px;
	overflow: auto;
}

/* === WebKit (Chrome, Edge, Safari) === */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	/* yatay scrollbar için */
}

::-webkit-scrollbar-track {
	background: #ffffff;
	/* beyaz zemin */
}

::-webkit-scrollbar-thumb {
	background: #cfcfcf;
	/* gri thumb */
	border-radius: 999px;
	border: 2px solid #ffffff;
	/* beyaz boşluk efekti */
}

::-webkit-scrollbar-thumb:hover {
	background: #b5b5b5;
}

/* === Firefox === */
* {
	scrollbar-width: thin;
	/* auto | thin | none */
	scrollbar-color: #cfcfcf #ffffff;
	/* thumb track */
}

.introduction-box {
	background-color: #fe6021;
	padding: 4rem 2rem;
	padding-top: 0;
}

.introduction-box__container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.introduction-box__card {
	background-color: #fff;
	padding: 3rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	max-width: 900px;
	width: 100%;
}

.introduction-box__title {
	font-size: 2rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 1.5rem;
	text-align: center;
}

.introduction-box__content {
	position: relative;
}

.introduction-box__preview,
.introduction-box__full,
.introduction-box__text {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
	margin: 0 0 1.5rem;
}

.introduction-box__toggle {
	border: none;
	color: white;
	font-size: 0.9rem;
	font-weight: 300;
	padding: 0.5rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
	background: #d62208;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -6rem;
}

.introduction-box__toggle:hover {
	color: #d45510;
}

.introduction-box__icon {
	font-size: 1.5rem;
	font-weight: 400;
	transition: transform 0.3s ease;
}

.introduction-box__toggle.active .introduction-box__icon {
	transform: rotate(45deg);
}

@media (max-width: 768px) {
	.introduction-box {
		padding: 3rem 1rem;
	}

	.introduction-box__card {
		padding: 2rem 1.5rem;
	}

	.introduction-box__title {
		font-size: 1.5rem;
	}
}

.milestone-timeline {
	background-color: #fff;
}

.milestone-timeline__container {
	margin: 0 auto;
}

.milestone-timeline__heading {
	font-size: 2.5rem;
	font-weight: 300;
	text-align: center;
	color: #333;
	padding: 4rem;
	background: #f5f5f5;
	margin: 0;
}

.milestone-timeline__track {
	position: relative;
	padding: 2rem 0;
	padding-top: 0;
}

/* Timeline line */
.milestone-timeline__track::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 145px;
	bottom: 260px;
	width: 3px;
	background-color: #ff6a1a;
	transform: translateX(-50%);
	z-index: 9;
}

/* Milestone items */
.milestone-timeline__item {
	position: relative;
	margin-bottom: 4rem;
}

/* Featured milestone */
.milestone-timeline__item--featured {
	margin-bottom: 5rem;
	background: #f5f5f5;
}

.milestone-timeline__featured-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	padding: 3rem;
	border-radius: 8px;
}

.milestone-timeline__item--first .milestone-timeline__featured-content {
	max-width: 1400px;
	margin: auto;
}

.milestone-timeline__featured-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	max-width: 350px;
}

.milestone-timeline__featured-text {
	padding: 0 1rem;
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.milestone-timeline__year--featured {
	font-size: 3rem;
	font-weight: 300;
	margin-bottom: 1rem;
}

/* Timeline dot */
.milestone-timeline__dot {
	position: absolute;
	left: 50%;
	top: 2rem;
	width: 16px;
	height: 16px;
	border: 4px solid #fff;
	border-radius: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.milestone-timeline__dot--start {
	width: 20px;
	height: 20px;
	background-color: #000;
	top: 145px;
	z-index: 10;
	border: black;
}

/* Left and Right positioning */
.milestone-timeline__item--left .milestone-timeline__card {
	margin-right: 52%;
	text-align: right;
}

.milestone-timeline__item--right .milestone-timeline__card {
	margin-left: 52%;
	text-align: left;
}

.milestone-timeline__card {
	background-color: #fff;
	padding: 1.5rem;
}

.milestone-timeline__image {
	margin-bottom: 1rem;
}

.milestone-timeline__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 4px;
}

.milestone-timeline__year {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 0.75rem;
}

.milestone-timeline__content {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #555;
	margin: 0;
	max-width: 350px;
}

@media (max-width: 968px) {
	.milestone-timeline__track::before {
		left: 2rem;
	}

	.milestone-timeline__dot {
		left: 2rem;
	}

	.milestone-timeline__dot--start {
		left: 2rem;
	}

	.milestone-timeline__item--left .milestone-timeline__card,
	.milestone-timeline__item--right .milestone-timeline__card {
		margin-left: 5rem;
		margin-right: 0;
		text-align: left;
	}

	.milestone-timeline__featured-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 2rem;
	}

	.milestone-timeline__featured-text {
		padding: 0;
	}
}

@media (max-width: 768px) {
	.milestone-timeline {
		padding: 3rem 1rem;
	}

	.milestone-timeline__heading {
		font-size: 2rem;
		margin-bottom: 3rem;
	}

	.milestone-timeline__year {
		font-size: 1.5rem;
	}

	.milestone-timeline__year--featured {
		font-size: 2.5rem;
	}
}

.ourstory-hero {
	background-color: #fe6021;
	color: #fff;
	padding: 6rem 0 0;
}

.ourstory-hero__container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.ourstory-hero__title {
	font-size: 4.5rem;
	font-weight: 100;
	margin: 0 0 1.5rem;
	line-height: 1.2;
}

.ourstory-hero__slogan {
	background-color: #d62208;
	display: inline-block;
	padding: 0.75rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 2rem;
	letter-spacing: 1px;
}

.ourstory-hero__paragraph {
	max-width: 800px;
	margin: 0 auto 4rem;
	font-size: 1rem;
	line-height: 1.7;
	font-weight: 300;
}

.ourstory-hero__nav {
	background-color: #d62208;
	padding: 1.5rem 2rem;
}

.ourstory-hero__nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.ourstory-hero__nav-link {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 400;
	transition: color 0.3s ease;
	position: relative;
}

.ourstory-hero__nav-link:hover {
	color: #ff6a1a;
}

.ourstory-hero__nav-link::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #ff6a1a;
	transition: width 0.3s ease;
}

.ourstory-hero__nav-link:hover::after {
	width: 100%;
}

@media (max-width: 768px) {
	.ourstory-hero {
		padding: 4rem 1.5rem 0;
	}

	.ourstory-hero__title {
		font-size: 3rem;
	}

	.ourstory-hero__slogan {
		font-size: 0.95rem;
		padding: 0.6rem 1.5rem;
	}

	.ourstory-hero__nav-container {
		gap: 1.5rem;
		flex-direction: column;
		align-items: center;
	}
}

.milestone-timeline__card {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.milestone-timeline__item.milestone-timeline__item--left .milestone-timeline__card {
	justify-content: flex-end;
}

.milestone-timeline__item.milestone-timeline__item--right .milestone-timeline__card {
	justify-content: flex-start;
}

.milestone-timeline__featured-image img {
	max-width: 400px;
}

.milestone-timeline__featured-image {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.milestone-timeline__item.milestone-timeline__item--right .milestone-timeline__dot {
	width: 50px;
	height: 3px;
	background: #ff6a1a;
	border: none;
	border-radius: 0;
	z-index: 11;
	left: calc(50% + 25px);
	top: 50%;
}

.milestone-timeline__item.milestone-timeline__item--left .milestone-timeline__dot {
	width: 50px;
	height: 3px;
	background: #ff6a1a;
	border: none;
	border-radius: 0;
	z-index: 11;
	left: calc(50% - 25px);
	top: 50%;
}

.milestone-timeline__image {
	margin: 1rem;
}

.milestone-timeline__dot.milestone-timeline__dot--end {
	top: auto;
	bottom: 145px;
	background: black;
	border: black;
	z-index: 11;
}

.milestone-timeline__image img {
	max-width: 150px;
	max-height: 150px;
	border-radius: 10px;
}

.our-purpose {
	padding: 5rem 2rem;
	background-color: #fff;
	padding-top: 1rem;
}

.our-purpose__container {
	/* max-width: 1400px; */
	margin: 0 auto;
	text-align: center;
	padding: 0px 10rem;
}

.our-purpose__title {
	font-size: 2.5rem;
	font-weight: 300;
	color: #333;
	margin: 0 0 1.5rem;
}

.our-purpose__subtitle {
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 2rem;
	line-height: 1.3;
	font-size: 1.5rem;
	max-width: 1400px;
	margin: 2rem auto;
}

.our-purpose__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: #ff6a1a;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 2.5rem;
	transition: color 0.3s ease;
}

.our-purpose__link:hover {
	color: #d45510;
}

.our-purpose__link span {
	text-align: center;
}

.our-purpose__link-icon {
	font-size: 1.5rem;
	font-weight: 400;
}

.our-purpose__paragraph {
	font-size: 1rem;
	line-height: 1.8;
	color: #555;
	margin: 0 0 2.5rem;
	font-weight: 300;
}

.our-purpose__subtitle-2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	margin: 0 0 1.5rem;
}

.our-purpose__image {
	margin-top: 3rem;
}

.our-purpose__image img {
	max-width: 500px;
	width: 100%;
	height: auto;
}

@media (max-width: 768px) {
	.our-purpose {
		padding: 3rem 1.5rem;
	}

	.our-purpose__title {
		font-size: 2rem;
	}

	.our-purpose__subtitle {
		font-size: 1.8rem;
	}

	.our-purpose__link {
		font-size: 1rem;
		flex-wrap: wrap;
	}

	.our-purpose__subtitle-2 {
		font-size: 1.3rem;
	}
}

.our-purpose__image {
	max-width: 270px;
	margin: auto;
}

.logo-box {
	max-width: 220px;
	max-height: 220px;
	padding: 1rem;
}

.department-description {
	font-size: 0.9rem;
	line-height: 1.3rem;
	padding: 1rem;
	background: #ffffff1a;
}

.department-header {
	margin-bottom: 0;
	padding-bottom: 0;
}

.accordion-button::after {
	display: none;
}


button.accordion-button {
	background-color: transparent !important;
}

.single-image-detail-paragraphs:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 40px;
	width: 100%;
	background: linear-gradient(180deg, rgb(248 248 248 / 50%) 1%, rgba(255, 255, 255, 1) 100%);
	z-index: 9;
}


.single-image-detail-paragraphs {
	position: relative;
}

.rector-photo img {
	max-width: 400px;
}

img.faculty-member-image {
	max-width: 100%;
	max-height: 100%;
}

.faculty-member-image-wrapper {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0px 0px 30px #00000019;
}

.departments-ul {
	padding-right: 2rem;
}

section.about-ourstrategy-strategic-plan-section {
	background: #fe6021;
	color: white;
	padding: 4rem 0rem;
}

.accordion-btn {
	color: #4e5153;
	background: transparent;
	font-weight: 500;
	position: relative;
	padding-left: 0 !important;
}

.accordion-btn span {
	padding: 0.5rem;
	background: #f0f0f0;
	border-radius: 1rem;
	z-index: 1;
	position: relative;
}

.nav-link:hover:not(.active) {
	background-color: transparent !important;
	color: black !important;
}

.accordion-btn:after {
	content: "";
	width: 100%;
	height: 1px;
	background: #f0f0f0;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 0;
}

.nav.flex-column[role="tablist"] {
	border-right: 1px solid #212529;
}

.nav-link.active {
	background: transparent !important;
	color: white;
}

.nav-link.active span {
	background: #212529;
}

.nav-link.active:after {
	background: #212529;
}

.strategic-accordion-section {
	padding: 4rem;
}

.food-security-item-icon img {
	max-width: 70px;
}

.sustainability-practice-icon img {
	max-width: 70px;
}

.counseling-services-image-wrapper {
	max-height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
}

main.page-content {
	min-height: calc(100vh - 210px);
}

.research-month-overlay div {
	max-height: 300px;
	overflow: auto;
	padding-right: 1rem;
	color: white;
}

.sustainability-card-text {
	padding-bottom: 50px;
}

.impact-vision-card__text:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255 239 232) 100%);
}

.impact-vision-card__text {
	position: relative;
	padding-bottom: 50px;
}

.flex-row-reverse .impact-vision-card__text:after {

	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255 43 12) 100%);
}

a.rector-message-link {
	color: white;
	text-decoration: none;
	margin-top: 1rem;
	width: fit-content;
	background: black;
	font-size: 1.2rem;
	padding: 5px 10px;
}

.success-stories-slider-section::after {
	content: "";
	width: 55%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	background: #ffffff;
	background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgb(253 45 15 / 42%) 3%, rgb(255 43 12) 17%);
}

.success-stories-content {
	z-index: 1;
	position: relative;
}

.fullscreen-menu.fullscreen-menu-home.active .white-logo {
	display: none;
}

.fullscreen-menu.fullscreen-menu-home.active .dark-logo {
	display: block;
}

.meal-plan-section .container {
	padding: 3rem;
	background: white;
}

.eat-drink-shop-content-area .container {
	padding: 3rem;
	background: white;
}

.about-us-content-inner {
	background: white;
	padding: 2rem;
}

.vc-person-info a {
	text-decoration: none;
	color: black;
}

.vc-person-image-gray-decor {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 80%;
	height: 90%;
	background: gray;
}

.vc-tabs .tab-button {
	padding: 8px 25px;
	font-weight: 400;
	letter-spacing: 1.2px;
}

section#outstanding-researchers .small {
	font-size: .775rem;
	padding: 8px 25px;
	font-weight: 400;
	letter-spacing: 1.2px;
}

div#biographyText::after {
	background: linear-gradient(to bottom, transparent, #fc6021) !important;
}

.experience-gyms-banner-content {
	padding: 1rem 2rem;
	background: white;
	color: black !important;
}

.experience-gyms-banner-title {
	color: black !important;
}

.top-right-buttons-of-swiper * {
	position: relative;
	left: auto;
	right: auto;
	color: white;
	top: auto;
	width: auto;
	height: auto;
}

.top-right-buttons-of-swiper {
	position: absolute;
	top: 2em;
	right: 1em;
	display: flex;
	gap: 25px;
	background-color: black;
	align-items: center;
	justify-content: center;
}

.swiper {
	position: relative;
}