/* loader.css */
.loader {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1050;
	background-color: #fff;
}

.loader::before {
	content: "";
	position: absolute;
	width: 80px;
	height: 80px;
	margin: 0 auto;
	left: 0;
	right: 0;
	border: 4px solid;
	border-color: #0039b3 #0039b3 transparent;
	border-radius: 50%;
	animation: spin 1s ease infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.img-load {
	width: 70px;
	height: 70px;
	position: relative;
	margin: 0 auto;
	vertical-align: middle;
}

/* flex-grid.css */
*,
::after,
::before {
	box-sizing: border-box;
}

html {
	width: 100%;
	overflow-x: hidden;
}

:root {
	--color-primary-bg: #8b2e2b;
	--color-cta-bg: #f4c542;
	--color-cta-hover: #e0a825;
	--color-text-on-dark: #ffffff;
	--color-section-alt-bg: #a63a34;
	--marron: #8b2e2b;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #000000;
	-webkit-text-size-adjust: 100%;
	margin: 0;
}

svg {
	vertical-align: middle;
}

h1,
h2,
h3,
h4 {
	margin: 0;
}

a {
	text-decoration: none;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

ul li {
	list-style-type: none;
}

.container,
.nav-container,
.promo-container {
	width: 100%;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	margin-right: auto;
	margin-left: auto;
}

.pos-relative {
	position: relative;
}

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

.w100 {
	width: 100%;
}

.h100 {
	height: 100%;
}

.d-flex,
.menu-row {
	display: flex;
}

.d-block {
	display: block;
}

.flex-colm {
	flex-direction: column;
}

.jc-start {
	justify-content: start;
}

.jc-end {
	justify-content: end;
}

.jc-center {
	justify-content: center;
}

.jc-sb {
	justify-content: space-between;
}

.ai-center {
	align-items: center;
}

.ai-end {
	align-items: end;
}

.text-center {
	text-align: center;
}

.text-start {
	text-align: left;
}

.text-end {
	text-align: right;
}

.text-blue {
	color: var(--color-primary-bg);
}

.text-dark {
	color: #000000;
}

.text-white {
	color: var(--color-text-on-dark);
}

.fw-100 {
	font-weight: 100;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

button {
	border: 0;
	border-radius: 15px;
	padding: 8px 15px;
}

.cta-btn {
	font-weight: 500;
	font-size: 16px;
	border-radius: 15px;
	background-color: var(--color-cta-bg);
	color: var(--color-text-on-dark);
}

.cta-btn:hover {
	box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
	background-color: var(--color-cta-hover);
}

.icon-vx-gap {
	gap: 10px;
}

.vy-gap {
	padding-top: 40px;
	padding-bottom: 40px;
}

.content-vy-gap {
	padding: 30px 0;
}

.content-top-gap {
	padding-top: 30px;
}

.content-bottom-gap {
	padding-bottom: 30px;
}

.col3-flex-box {
	gap: 18px;
	flex-wrap: wrap;
}

.col4-flex-box {
	gap: 20px;
	flex-wrap: wrap;
}

.col2,
.col3,
.col4,
.col5 {
	width: 100%;
}

.row-gap {
	gap: 16px;
}

@media (min-width: 520px) {
	.col4 {
		width: calc(100% / 2 - 15px);
	}

	.col5 {
		width: calc(100% / 2 - 16px);
	}
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}

	.col5 {
		width: calc(100% / 3 - 16px);
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}

	.col2,
	.col3 {
		width: calc(100% / 2 - 18px);
	}

	.col4 {
		width: calc(100% / 3 - 16px);
	}

	.col5 {
		width: calc(100% / 5 - 16px);
	}

	.text-lg-end {
		text-align: right;
	}
}

@media (min-width: 1024px) {
	.col3 {
		width: calc(100% / 2 - 18px);
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}

	.col3 {
		width: calc(100% / 3 - 18px);
	}

	.col4 {
		width: calc(100% / 4 - 16px);
	}

	.jc-lg-sb {
		justify-content: space-between;
	}
}

@media (min-width: 1400px) {
	.nav-container,
	.promo-container {
		max-width: 1366px;
	}
}

@media (max-width: 1080px) {
	.menu-row {
		flex-direction: column;
	}
}

@media (max-width: 767px) {
	.vy-gap {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* main-menu.css */
#fixtop {
	position: fixed;
	width: 100%;
	background: rgba(255, 255, 255, 0.55);
	-webkit-backdrop-filter: blur(28px) saturate(160%);
	backdrop-filter: blur(28px) saturate(160%);
	z-index: 99;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	box-shadow:
		rgba(14, 63, 126, 0.08) 0px 0px 0px 1px,
		rgba(42, 51, 69, 0.08) 0px 2px 4px -0.5px,
		rgba(42, 51, 70, 0.08) 0px 4px 8px -1.5px,
		rgba(42, 51, 70, 0.06) 0px 8px 12px -3px,
		rgba(14, 63, 126, 0.06) 0px 16px 16px -6px,
		rgba(14, 63, 126, 0.04) 0px 32px 24px -12px;
	transition: all 0.3s ease-in-out;
}

.site-logo a img {
	width: 245px;
	padding: 4px;
}

.nav-contain {
	padding-top: 4px;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.nav_contents {
	ul,
	li {
		margin: 0;
		padding: 0;
	}
}

li.nav-item.dropdown ul.child-links li a:hover,
li.nav-item.dropdown ul.child-links li a:focus-visible {
	font-weight: 500;
	color: #0f3db8;
	background-color: #ebebeb;
}

span.mega-menu-category {
	font-weight: 500;
	display: block;
	color: #0f3db8;
}

span.mega-menu-category > a {
	color: #0f3db8;
}

ul.mm-links li a {
	padding: 6px 0;
}

.srch a img {
	width: 28px;
	height: 28px;
}

.applyAdmission {
	display: flex;
	align-items: center;
}

.call-links-modal {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	top: 0;
	left: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 5;
	display: none;
	transition: backdrop-filter 0.3s ease-in-out;
}

.call-links-modal .call-item {
	background-color: rgba(255, 255, 255, 0.95);
	padding: 10px 20px;
	border-radius: 25px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	font-size: 18px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
	transition: all 0.3s ease-in-out;
}

.modal-contents {
	position: relative;
	max-width: 100%;
	flex-direction: column;
	row-gap: 15px;
	padding: 15px;
	border: 1px solid rgba(238, 238, 238, 0.3);
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.4),
		0 8px 32px rgba(31, 38, 135, 0.15);
	transition: all 0.3s ease-in-out;
	background-color: #ececec;
}

.closeCallNavModal {
	position: absolute;
	right: -10px;
	top: -7px;
	background: #fff;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	padding: 0;
}

.showCallModal {
	display: flex;
}

.hideCallModal {
	display: none;
}

.footer-links {
	background-color: var(--marron);
	color: var(--color-text-on-dark);
}

.footer-copyright {
	background-color: var(--color-section-alt-bg);
	color: var(--color-text-on-dark);
	padding: 20px 0;
}

.ftr-top {
	padding-top: 30px;
	gap: 40px;
	justify-content: space-between;
	align-items: center;
}

.site-logo a {
	display: block;
}

.ftr-top .site-logo a img {
	width: auto;
	max-width: 200px;
	height: auto;
}

.social-links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.social-links ul li {
	list-style: none;
}

.social-links ul li a i {
	background-color: rgb(115 115 115 / 25%);
	display: block;
	border-radius: 50%;
}

.social-links ul li a i::before {
	content: "";
	width: 50px;
	height: 50px;
	display: block;
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
}

.social-links ul li a i.fb-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2260%22%20height%3D%2260%22%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%3E%3Cpath%20d%3D%22M80%20299.3l0%20212.7%20116%200%200-212.7%2086.5%200%2018-97.8-104.5%200%200-34.6c0-51.7%2020.3-71.5%2072.7-71.5%2016.3%200%2029.4%20.4%2037%201.2l0-88.7C291.4%204%20256.4%200%20236.2%200%20129.3%200%2080%2050.5%2080%20159.4l0%2042.1-66%200%200%2097.8%2066%200z%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i.x-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M357.2%2048L427.8%2048%20273.6%20224.2%20455%20464%20313%20464%20201.7%20318.6%2074.5%20464%203.8%20464%20168.7%20275.5-5.2%2048%20140.4%2048%20240.9%20180.9%20357.2%2048zM332.4%20421.8l39.1%200-252.4-333.8-42%200%20255.3%20333.8z%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i.in-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23fff%22%20viewBox%3D%22-2%20-2%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20preserveAspectRatio%3D%22xMinYMin%22%20class%3D%22jam%20jam-linkedin%22%3E%3Cpath%20d%3D%22M19.959%2011.719v7.379h-4.278v-6.885c0-1.73-.619-2.91-2.167-2.91-1.182%200-1.886.796-2.195%201.565-.113.275-.142.658-.142%201.043v7.187h-4.28s.058-11.66%200-12.869h4.28v1.824l-.028.042h.028v-.042c.568-.875%201.583-2.126%203.856-2.126%202.815%200%204.926%201.84%204.926%205.792M2.421.026C.958.026%200%20.986%200%202.249c0%201.235.93%202.224%202.365%202.224h.028c1.493%200%202.42-.989%202.42-2.224C4.787.986%203.887.026%202.422.026zM.254%2019.098h4.278V6.229H.254z%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i.pin-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M504%20256c0%20137-111%20248-248%20248-25.6%200-50.2-3.9-73.4-11.1%2010.1-16.5%2025.2-43.5%2030.8-65%203-11.6%2015.4-59%2015.4-59%208.1%2015.4%2031.7%2028.5%2056.8%2028.5%2074.8%200%20128.7-68.8%20128.7-154.3%200-81.9-66.9-143.2-152.9-143.2-107%200-163.9%2071.8-163.9%20150.1%200%2036.4%2019.4%2081.7%2050.3%2096.1%204.7%202.2%207.2%201.2%208.3-3.3%20.8-3.4%205-20.3%206.9-28.1%20.6-2.5%20.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6%200-54.7%2041.4-107.6%20112-107.6%2060.9%200%20103.6%2041.5%20103.6%20100.9%200%2067.1-33.9%20113.6-78%20113.6-24.3%200-42.6-20.1-36.7-44.8%207-29.5%2020.5-61.3%2020.5-82.6%200-19-10.2-34.9-31.4-34.9-24.9%200-44.9%2025.7-44.9%2060.2%200%2022%207.4%2036.8%207.4%2036.8s-24.5%20103.8-29%20123.2C161.5%20437.2%20163.5%20467.4%20165.6%20487%2073.4%20450.9%208%20361.1%208%20256%208%20119%20119%208%20256%208S504%20119%20504%20256z%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i.flickr-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20fill%3D%22%23ffffff%22%20width%3D%2250%22%20height%3D%2250%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M400%2032H48C21.5%2032%200%2053.5%200%2080v352c0%2026.5%2021.5%2048%2048%2048h352c26.5%200%2048-21.5%2048-48V80c0-26.5-21.5-48-48-48M144.5%20192a63.5%2063.5%200%201%201%200%20127%2063.5%2063.5%200%201%201%200-127m159%200a63.5%2063.5%200%201%201%200%20127%2063.5%2063.5%200%201%201%200-127%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i.youtube-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20576%20512%22%3E%3Cpath%20d%3D%22M549.7%20124.1c-6.2-23.7-24.8-42.3-48.3-48.6C458.9%2064%20288.1%2064%20288.1%2064S117.3%2064%2074.7%2075.5c-23.5%206.3-42%2024.9-48.3%2048.6C15%20167%2015%20256.4%2015%20256.4s0%2089.4%2011.4%20132.3c6.3%2023.6%2024.8%2041.5%2048.3%2047.8C117.3%20448%20288.1%20448%20288.1%20448s170.8%200%20213.4-11.5c23.5-6.3%2042-24.2%2048.3-47.8%2011.4-42.9%2011.4-132.3%2011.4-132.3s0-89.4-11.4-132.3zM232.2%20337.6V175.2l142.7%2081.2z%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i.whatsapp-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20fill%3D%22%23fff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M380.9%2097.1C339%2055.1%20283.2%2032%20223.9%2032c-122.4%200-222%2099.6-222%20222%200%2039.1%2010.2%2077.3%2029.6%20111L0%20480l117.7-30.9c32.4%2017.7%2068.9%2027%20106.1%2027h.1c122.3%200%20224.1-99.6%20224.1-222%200-59.3-25.2-115-67.1-157m-157%20341.6c-33.2%200-65.7-8.9-94-25.7l-6.7-4-69.8%2018.3L72%20359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2%200-101.7%2082.8-184.5%20184.6-184.5%2049.3%200%2095.6%2019.2%20130.4%2054.1s56.2%2081.2%2056.1%20130.5c0%20101.8-84.9%20184.6-186.6%20184.6m101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5%202.8s-14.3%2018-17.6%2021.8c-3.2%203.7-6.5%204.2-12%201.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8%205.7-9.1%2016.3-30.3%201.8-3.7.9-6.9-.5-9.7s-12.5-30.1-17.1-41.2c-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2s-9.7%201.4-14.8%206.9c-5.1%205.6-19.4%2019-19.4%2046.3s19.9%2053.7%2022.6%2057.4c2.8%203.7%2039.1%2059.7%2094.8%2083.8%2035.2%2015.2%2049%2016.5%2066.6%2013.9%2010.7-1.6%2032.8-13.4%2037.4-26.4s4.6-24.1%203.2-26.4c-1.3-2.5-5-3.9-10.5-6.6%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i.insta-icon::before {
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2250%22%20height%3D%2250%22%20fill%3D%22%23ffffff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M224.3%20141a115%20115%200%201%200-.6%20230%20115%20115%200%201%200%20.6-230m-.6%2040.4a74.6%2074.6%200%201%201%20.6%20149.2%2074.6%2074.6%200%201%201-.6-149.2m93.4-45.1a26.8%2026.8%200%201%201%2053.6%200%2026.8%2026.8%200%201%201-53.6%200m129.7%2027.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9%200-35.8%201.7-67.6%209.9-93.9%2036.1s-34.4%2058-36.2%2093.9c-2.1%2037-2.1%20147.9%200%20184.9%201.7%2035.9%209.9%2067.7%2036.2%2093.9s58%2034.4%2093.9%2036.2c37%202.1%20147.9%202.1%20184.9%200%2035.9-1.7%2067.7-9.9%2093.9-36.2%2026.2-26.2%2034.4-58%2036.2-93.9%202.1-37%202.1-147.8%200-184.8M399%20388c-7.8%2019.6-22.9%2034.7-42.6%2042.6-29.5%2011.7-99.5%209-132.1%209s-102.7%202.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7%209-132.1c7.8-19.6%2022.9-34.7%2042.6-42.6%2029.5-11.7%2099.5-9%20132.1-9s102.7-2.6%20132.1%209c19.6%207.8%2034.7%2022.9%2042.6%2042.6%2011.7%2029.5%209%2099.5%209%20132.1s2.7%20102.7-9%20132.1%22%2F%3E%3C%2Fsvg%3E");
}

.social-links ul li a i:hover {
	background-color: rgba(238, 238, 238, 0.25);
}

.ftr-quick-links {
	width: 100%;
	padding: 15px 0;
	margin: 15px 0;
	border-bottom: 1px solid rgb(238 238 238 / 45%);
}

footer .q-links * {
	font-size: 14px;
	line-height: 25px;
}

.q-links .links-section h4 {
	color: #0bf;
	font-size: 17px;
	padding-top: 5px;
}

.links-section ul {
	margin: 5px 0;
}

.q-links ul li a {
	color: #fff;
}

.q-links ul li a:hover {
	color: #0bf;
}

@media only screen and (min-width: 768px) {
	.ftr-mdl-row {
		gap: 30px;
	}
}

@media only screen and (min-width: 1081px) {
	.mob-menu-contents {
		display: none;
	}

	.top-nav-sec ul li a {
		color: #000000;
	}

	.top-nav-sec ul li a:hover {
		color: #0f3db8;
	}

	.adm-contact-item {
		font-size: 14px;
	}

	.navbar-toggler {
		display: none;
	}

	span.mega-menu-category {
		margin: 5px;
	}

	.top-nav-sec {
		padding-top: 4px;
		display: flex;
		align-items: center;
		justify-content: end;
		gap: 14px;
	}

	.top-nav-sec ul {
		display: flex;
		gap: 15px;
	}

	.top-nav-sec {
		display: flex;
		align-items: center;
		justify-content: end;
		gap: 14px;
	}

	.top-nav-sec ul li {
		position: relative;
	}

	.top-nav-sec ul li::after {
		content: "";
		width: 1px;
		height: 95%;
		background: #aeaeae;
		position: absolute;
		top: 1px;
		right: -7px;
	}

	.top-nav-sec ul li:last-child:after {
		content: none;
	}

	.menu-row {
		gap: 20px;
	}

	.menu-col {
		position: relative;
	}

	.menu-col::after {
		content: "";
		position: absolute;
		width: 1px;
		height: 95%;
		background-color: #d0d0d0;
		top: 10px;
		left: -5px;
	}

	.menu-row > .menu-col:first-child::after {
		content: none;
	}

	ul.navbar-nav li {
		list-style-type: none;

		a {
			display: flex;
			align-items: center;
			text-decoration: none;
		}

		&:last-child a {
			padding-right: 0;
		}
	}

	ul.navbar-nav > li.nav-item > a {
		font-weight: 500;
	}

	ul.navbar-nav li.nav-item ul li {
		padding: 0 8px 6px 12px;
	}

	li.has-submenu > a {
		padding: 4px 8px;
	}

	ul.navbar-nav > li.nav-item > a {
		font-size: 16px;
		color: #000000;
		padding: 10px 8px 10px 0;
		line-height: 18px;
	}

	ul.navbar-nav > li:first-child a {
		padding-right: 15px;
	}

	ul.navbar-nav li.dropdown.last-item:last-child > div.dropdown-menu {
		right: 0;
		margin-right: 0;
	}

	ul.navbar-nav li:last-child a {
		padding-right: 0;
	}

	ul.navbar-nav > li.nav-item > a:hover {
		color: #0f3db8;
		background-color: rgba(15, 61, 184, 0.08);
		border-radius: 8px;
		transition: all 0.3s ease-in-out;
	}

	ul.navbar-nav li.dropdown {
		position: relative;
	}

	li.nav-item.dropdown.mega-menu {
		position: static;
	}

	ul.navbar-nav li.dropdown > a:after {
		content: "";
		width: 18px;
		height: 18px;
		line-height: 0;
		color: #a7a7a7;
		display: inline-block;
		background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMjgyODI4IiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgaWQ9IkZsYXQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTEyOCwxODhhMTEuOTYxODcsMTEuOTYxODcsMCwwLDEtOC40ODUzNS0zLjUxNDY1bC04MC04MGExMi4wMDAxLDEyLjAwMDEsMCwwLDEsMTYuOTcwNy0xNi45NzA3TDEyOCwxNTkuMDI5M2w3MS41MTQ2NS03MS41MTQ2NWExMi4wMDAxLDEyLjAwMDEsMCwwLDEsMTYuOTcwNywxNi45NzA3bC04MCw4MEExMS45NjE4NywxMS45NjE4NywwLDAsMSwxMjgsMTg4WiIvPgo8L3N2Zz4=");
		background-size: contain;
		background-repeat: no-repeat;
		margin-left: 2px;
		vertical-align: middle;
		transition: transform 0.3s ease;
	}

	ul.navbar-nav li.dropdown > a.level-sub:after {
		position: absolute;
		right: 5px;
	}

	div.dropdown-menu,
	div.sub-dropdown-menu {
		display: none;
	}

	ul.cs-nav li div.dropdown-menu.cs-megamenu {
		left: 0;
	}

	li.nav-item.dropdown ul li a {
		color: #1a1a1a;
	}

	li.nav-item.dropdown ul li a:hover {
		color: #0f3db8;
	}

	.menu-cat-title {
		font-weight: 500;
		color: #0060aa !important;
	}

	li.nav-item.dropdown ul.child-links li a {
		display: flex;
		justify-content: space-between;
		padding: 8px;
	}

	ul.navbar-nav.cs-nav {
		margin-block-start: 0;
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction: row;
	}

	ul.mm-contents {
		padding: 8px 15px;
	}

	ul.mm-links {
		padding: 5px;
	}

	ul.navbar-nav li.dropdown > a.arrowUp:after {
		transform: rotate(180deg);
	}

	div.dropdown-menu,
	div.sub-dropdown-menu {
		padding: 8px 0;
		border-top: 1px solid rgba(200, 200, 200, 0.4);
		border-bottom: 1px solid rgba(15, 61, 184, 0.2);
		background-color: rgba(255, 255, 255, 0.85);
		-webkit-backdrop-filter: blur(25px);
		backdrop-filter: blur(25px);
		display: none;
		animation: fadeIn 300ms 60ms ease-in-out forwards;
		opacity: 0;
		box-shadow: 0 8px 32px rgba(31, 38, 135, 0.12);
	}

	@keyframes fadeIn {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	div.dropdown-menu,
	div.sub-dropdown-menu {
		position: absolute;
		z-index: 100;
		border-left: 1px solid rgba(200, 200, 200, 0.3);
		border-right: 1px solid rgba(200, 200, 200, 0.3);
	}

	div.sub-dropdown-menu {
		top: -2px;
		right: 100%;
		margin-right: 0;
	}

	li.dropdown:hover > div.dropdown-menu {
		display: block;
	}

	ul.child-links > li.dropdown:hover > div.sub-dropdown-menu {
		display: block;
	}

	div.dropdown-menu,
	div.sub-dropdown-menu {
		min-width: 205px;
	}

	li.nav-item.dropdown ul.child-links li {
		border-bottom: 1px solid #e1e1e1;
	}

	span.mega-menu-category {
		border-bottom: 1px solid #dddddd;
	}

	.applyAdmission {
		column-gap: 8px;
	}

	.srch a img {
		width: 25px;
		height: 25px;
	}
}

@media only screen and (min-width: 1200px) {
	.ftr-col {
		width: auto;
	}
}

@media (min-width: 1081px) and (max-width: 1200px) {
	.site-logo a img {
		width: 210px;
	}

	ul.navbar-nav > li.nav-item > a {
		font-size: 16px;
	}
}

@media only screen and (min-width: 1400px) {
	div.dropdown-menu,
	div.sub-dropdown-menu {
		width: 100%;
	}
}

@media (min-width: 1081px) and (max-width: 1399px) {
	.mega-menu .cs-megamenu {
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

@media (max-width: 1080px) {
	.site-logo a img {
		width: 200px;
	}

	ul li a {
		width: 100%;
		display: block;
		color: #ffffff;
		position: relative;
		z-index: 10;
	}

	li.nav-item {
		position: relative;
	}

	li.dropdown:before {
		content: "";
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAwIiBoZWlnaHQ9IjgwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyOCAyNGExMDQgMTA0IDAgMSAwIDEwNCAxMDRBMTA0LjEyIDEwNC4xMiAwIDAgMCAxMjggMjRtMCAxOTJhODggODggMCAxIDEgODgtODggODguMSA4OC4xIDAgMCAxLTg4IDg4Ii8+PHBhdGggZD0iTTE2OS4zNTIgMTEwLjA1NGE4IDggMCAwIDAtMTEuMjk4LjU5NEwxMjggMTQ0LjA0MWwtMzAuMDU0LTMzLjM5M2E4IDggMCAwIDAtMTEuODkyIDEwLjcwNGwzNiA0MGE4IDggMCAwIDAgMTEuODkyIDBsMzYtNDBhOCA4IDAgMCAwLS41OTQtMTEuMjk4Ii8+PC9zdmc+");
		background-size: 35px;
		background-repeat: no-repeat;
		background-position: center;
		cursor: pointer;
		position: absolute;
		width: 40px;
		height: 40px;
		right: 0;
		top: -3px;
		transition: transform 0.3s ease;
		transform-origin: center;
		filter: brightness(0) invert(1);
	}

	li.dropdown.open::before {
		transform: rotate(180deg);
	}

	.dropdown-menu {
		background-color: #111f4a;
		padding: 8px 0 8px 8px;
		border-radius: 10px;
		display: none;
	}

	.has-submenu ul {
		padding-top: 8px;
		padding-left: 8px;
	}

	.has-submenu > a {
		width: 100%;
		display: block;
		background-color: #000d35;
		padding: 5px;
		border-radius: 10px;
	}

	.mobHide {
		display: none;
	}

	.mobile-menu {
		position: fixed;
		bottom: 0;
		width: 100%;
		background-color: #0e5ca7;
		border-top: 1px solid #fff;
		z-index: 100;
	}

	.mob-menu-contents {
		position: relative;
	}

	.mob-menu-contents .mobCTA {
		width: 100%;
		height: 50px;
		background: transparent;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-size: 13px;
		line-height: 15px;
		color: #fff;
		border-right: 1px solid #eee;
		border-radius: 0;
		cursor: pointer;
	}

	.mobCTA:active,
	.mobCTA:focus {
		background-color: #002040;
	}

	.mob-menu-contents .mobCTA:last-child {
		border: 0;
	}

	.bottom-nav-sec,
	.top-nav-sec {
		position: fixed;
		width: 100%;
		height: 100dvh;
		padding-bottom: 60px;
		top: 0;
		left: 0;
		z-index: 9;
		background-color: #000d35;
		overflow-y: auto;
	}

	.bottom-nav-sec {
		visibility: hidden;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		transform: translateY(100vh);
	}

	.top-nav-sec {
		visibility: hidden;
		transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		transform: translateX(100vw);
	}

	.main-menu-show-bottom {
		transform: translateY(0);
		visibility: visible;
		z-index: 11;
	}

	.side-menu-show-right {
		transform: translateX(0);
		visibility: visible;
		z-index: 10;
	}

	.sideNav {
		cursor: pointer;
		display: block;
		position: relative;
		width: 2.6rem;
		height: 2.4rem;
		right: 5px;
		z-index: 11;
	}

	.sideNav .bar {
		width: 2.6rem;
		height: 0.2rem;
		background: #0a5eb4;
		border-radius: 0.2rem;
		transition: 0.2s ease;
		display: block;
		cursor: pointer;
	}

	.sideNav .bar:not(:first-child) {
		margin-top: 0.8rem;
	}

	.sideNav .bar:nth-child(2) {
		width: 2rem;
	}

	.sideNav .bar:nth-child(3) {
		width: 1.4rem;
	}

	.sideNav.open-sideNav .bar {
		position: relative;
	}

	.sideNav.open-sideNav .bar:first-child {
		transform: rotate(-45deg);
		background: #fff;
		top: 15px;
	}

	.sideNav.open-sideNav .bar:nth-child(2) {
		opacity: 0;
	}

	.sideNav.open-sideNav .bar:nth-child(3) {
		top: -16px;
		transform: rotate(45deg);
		background: #fff;
		width: 2.6rem;
	}

	.top-nav-sec ul li a,
	.navbar-nav.cs-nav li {
		font-size: 20px;
	}

	.navbar-nav.cs-nav,
	.top-nav-sec {
		padding: 20px;
	}

	.navbar-nav.cs-nav li {
		padding-bottom: 12px;
	}

	.navbar-nav.cs-nav li:last-child {
		padding-bottom: 0;
	}

	.has-submenu > a {
		width: 100%;
		display: block;
		background-color: #000d35;
		padding: 5px;
		border-radius: 10px;
	}

	.top-nav-sec ul li {
		padding-bottom: 15px;
	}

	.top-menu-show-right {
		width: auto;
	}
}

@media (max-width: 767px) {
	.site-logo a img {
		width: 160px;
	}

	.sideNav {
		width: 2.4rem;
		height: 2rem;
	}

	.sideNav .bar {
		height: 0.19rem;
	}

	.ftr-mdl-row {
		gap: 15px;
	}

	.ftr-col {
		width: calc(100% / 2 - 15px);
	}
}

@media (max-width: 570px) {
	.ftr-top {
		justify-content: center;
		flex-wrap: wrap;
		gap: 20px;
	}

	.social-links ul {
		justify-content: center;
	}
}

/* splide.css */
.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}

	to {
		transform: rotate(1turn);
	}
}

.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	-ms-flex-align: center;
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0.7;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
	z-index: 1;
}

.splide__arrow svg {
	fill: #001c68;
	height: 2em;
	width: 2em;
}

.splide__arrow:hover:not(:disabled) {
	opacity: 0.9;
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: -3em;
}

.splide__arrow--prev svg {
	transform: scaleX(1);
}

.splide__arrow--next {
	right: -3em;
}

.splide__arrow--next svg {
	transform: scaleX(-1);
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 2em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: 0.7;
	padding: 0;
	position: relative;
	transition: transform 0.2s linear;
	width: 8px;
}

.splide__pagination__page.is-active {
	background: #fff;
	transform: scale(1.4);
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	background: #ccc;
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
}

@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

@media screen and (-ms-high-contrast: none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}

	.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
		border-color: #0bf;
	}
}

.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

.swiper {
	width: 100%;
	height: auto;
}

/* main-body.css */
.primary-blue {
	color: var(--color-primary-bg);
}

.light-gray {
	background-color: #f2f2f2;
}

/* .popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px);
    z-index: 100;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
} */

.popup-box {
	max-width: 380px;
	width: 95%;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	border-radius: 20px;
	transform: scale(0.7);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.apply-seat > span {
	font-size: 25px;
	text-align: center;
	display: block;
	font-weight: 500;
	color: #000031;
}

.course-apply a span {
	width: 35px;
	height: 35px;
	background-color: #044184;
	padding: 7px;
	border-radius: 50%;
}

.course-apply a {
	font-size: 20px;
	gap: 5px;
	margin: 10px 0;
}

.form-control {
	width: 100%;
	border-radius: 3.125rem;
	border: 1px solid #9d9d9d;
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
}

.form-group {
	margin-bottom: 10px;
}

.apply-now {
	margin-top: 0.75rem;
	border: 0;
	background-color: #fc5e63;
	height: 2.813rem;
	border-radius: 3.125rem;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	display: block;
	text-decoration: none;
	width: 100%;
	font-size: 20px;
	font-weight: 500;
}

.popup-overlay.showModal .popup-box {
	transform: scale(1);
	opacity: 1;
}

.popup-overlay.showModal {
	opacity: 1;
	visibility: visible;
}

.close-popup {
	position: absolute;
	right: -10px;
	top: -15px;
}

.close-popup button {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: red;
	color: #fff;
	font-size: 20px;
	padding: 0;
}

.apply-seat {
	padding: 10px 25px 10px 25px;
}

.recaptcha-wrap {
	display: flex;
	height: 35px;
	border: 1px solid #ccc;
	border-radius: 20px;
	position: relative;
	align-items: center;
	overflow: hidden;
}

.wrap {
	width: 100%;
	background-image: url(course-assets/captcha-logo.png);
	background-size: 30px;
	background-position: right;
	background-repeat: no-repeat;
	background-color: #fff;
}

.captcha {
	color: #4c4a4b;
	border-radius: 5px;
	color: #4c4a4b;
	display: flex;
	align-items: center;
}

.spinner {
	position: relative;
	width: 2rem;
	height: 2rem;
	display: flex;
	margin-left: 10px;
	align-items: center;
	justify-content: center;
}

.spinner > label {
	margin-bottom: 0;
}

.captcha input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

.captcha input[type="checkbox"]:checked + .checkmark {
	animation: 2s spin forwards;
}

.captcha input[type="checkbox"] + .checkmark {
	cursor: pointer;
}

.captcha input[type="checkbox"] + .checkmark {
	display: inline-block;
	width: 1.3rem;
	height: 1.3rem;
	background-color: #fcfcfc;
	border: 1px solid #c3c3c3;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.captcha input[type="checkbox"]:checked + .checkmark > span {
	animation: 1s fadein 1.9s forwards;
}

.captcha input[type="checkbox"] + .checkmark span {
	content: "";
	position: relative;
	margin-top: -3px;
	transform: rotate(45deg);
	width: 0.6em;
	height: 1em;
	opacity: 0;
}

.captcha input[type="checkbox"]:checked + .checkmark > span::before {
	animation: 0.5s rightslide 2.2s forwards;
}

.captcha input[type="checkbox"] + .checkmark > span::before {
	content: "";
	position: absolute;
	display: block;
	width: 3px;
	bottom: 0;
	right: 0;
	background-color: #029f56;
}

.captcha input[type="checkbox"]:checked + .checkmark > span::after {
	animation: 0.3s bottomslide 2s forwards;
}

.captcha input[type="checkbox"] + .checkmark > span::after {
	content: "";
	position: absolute;
	display: block;
	height: 3px;
	bottom: 0;
	left: 0;
	background-color: #029f56;
}

.form-check-label {
	font-size: 12px;
}

.vdo-contain video {
	display: block;
	width: 100%;
	height: auto;
	background-image: url("../assets/img/hero_fallback.jpeg");
	background-position: center;
}

.vdo-contain img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
	display: none !important;
}

video::-moz-range-track {
	display: none;
}

video[controls]::-webkit-media-controls {
	display: none !important;
}

.apply {
	padding: 4px 10px;
	background-color: #d61e3e;
}

.apply:hover {
	background-color: #ff1717;
}

.cta-btns .cta-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

.cta-btns {
	position: fixed;
	right: 0;
	bottom: 20%;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 100;
}

.cta-animate-left {
	position: relative;
	right: -150px;
	width: 190px;
	height: 35px;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	transition: all 0.4s ease;
	overflow: hidden;
	z-index: 5;
}

.cta-icon {
	margin-left: 10px;
}

.call-btn-text {
	margin-left: 8px;
}

.cta-phone {
	background: #d60012;
}

.cta-whatsapp {
	background: #14802b;
}

.cta-chat {
	background: #666666;
}

.cta-brochure,
.cta-brochure button {
	background: #0a72bd;
	padding: 0;
}

.cta-brochure button:hover {
	cursor: pointer;
}

.cta-brochure .call-btn-text {
	font-size: 15px;
}

.cta-animate-left:hover {
	right: 0;
}

.cta-phone button {
	width: 100%;
	border-radius: 0;
	padding: 0;
	background: none;
	align-items: center;
	font-size: 16px;
}

/* .total-visitors {
	position: fixed;
	bottom: 60px;
	color: #fff;
	background-color: #0f80d0;
	font-weight: 500;
	padding: 2px 8px;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	z-index: 5;
}

.total-visitors span {
	font-size: 14px;
} */

.section-links {
	background-color: var(--marron);
}

.important-links {
	flex-wrap: wrap;
}

.imp-item {
	width: 180px;
	text-align: center;
	padding: 25px 0;
}

.imp-title span {
	font-size: 20px;
	color: #fff;
}

.imp-icon,
.imp-title {
	padding-top: 5px;
}

.splide {
	display: flex;
	flex-direction: column;
}

.heading-content h1 {
	font-size: 40px;
	margin-bottom: 20px;
}

.heading-content span {
	font-weight: normal;
}

.sub-heading {
	text-transform: uppercase;
	font-size: 35px;
	font-weight: 800;
}

.sub-text {
	font-size: 25px;
	font-weight: 300;
}

.rec-logos {
	max-width: 900px !important;
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 30px !important;
	justify-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	flex-wrap: initial !important;
}

.rec-logo-item {
	width: 250px;
	height: 250px;
	text-align: center;
	padding: 0;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid #dbdada;
	border-radius: 50%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.rec-logo-img {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 50%;
	transition: filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rec-logo-img::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.6);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rec-logo-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
}

.rec-text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	background-color: transparent;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 2;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	line-height: 1.3;
	text-align: center;
}

.rec-text span {
	max-width: 80%;
	margin: 0 auto;
	font-size: clamp(12px, 2.2vw, 16px);
	line-height: 1.2;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.rec-logo-item:hover .rec-logo-img {
	filter: blur(4px) brightness(0.7);
}

.rec-logo-item:hover .rec-logo-img::after {
	opacity: 1;
}

.rec-logo-item:hover .rec-text {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1024px) {
	.rec-logos {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 640px) {
	.rec-logos {
		grid-template-columns: 1fr !important;
	}
}

.awards-ranks-contain,
.admisn-procedure-contain {
	padding-top: 40px;
}

.awards-ranks-contain .col4:nth-child(2n + 1) .awards-box {
	background-color: #d0e4f6;
}

.awards-ranks-contain .col4:nth-child(2n) .awards-box {
	background-color: #fff0df;
}

.awards-box {
	-webkit-box-shadow: 10px 10px 20px rgba(1, 1, 1, 0.15);
	box-shadow: 10px 10px 20px rgba(1, 1, 1, 0.15);
	border: 2px solid #ffffff;
	height: 230px;
}

.awards-box:hover {
	cursor: pointer;
}

.flip-box-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
}

.awards-box:hover .flip-box-inner {
	transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.flip-box-back {
	background-color: #f0f0f0;
	color: #000;
	transform: rotateY(180deg);
	padding: 10px;
}

.stat-data-item {
	padding: 20px 10px;
	background-color: var(--color-primary-bg);
	border: 1px solid var(--color-text-on-dark);
	color: var(--color-text-on-dark);
	border-radius: 24px;
}

.stat-data-item span:first-child {
	font-size: 50px;
	font-weight: 800;
	line-height: 50px;
	padding-bottom: 10px;
}

.adm-item-icon {
	padding-bottom: 15px;
}

.heading-bg {
	padding: 20px 0;
	height: 230px;
	position: relative;
}

.heading-bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(139, 46, 43, 0.88);
	mix-blend-mode: hard-light;
	z-index: 1;
}

.admission-procedure {
	background-color: #ebf8fa;
}

.admission-procedure .apply {
	padding: 10px 25px;
}

.ai-ready-programmes .heading-bg,
.placement .heading-bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
}

.ai-ready-programmes .heading-bg {
	background-image: url(assets/img/programme_stripe.jpeg);
}

.placement .heading-bg {
	background-image: url(assets/img/bwu-campus-students-group2.webp);
}

.ai-ready-programmes {
	padding-bottom: 40px;
}

.heading-bg .sub-heading-content {
	position: relative;
	z-index: 1;
	color: #fff;
}

.school-row {
	padding-top: 30px;
}

.school-item {
	background-color: #f2f2f2;
	border: 1px solid #e1e1e1;
}

.school-img {
	position: relative;
}

.pgrm-content {
	padding: 35px 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 315px;
}

.school-icon {
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -25px;
}

.pgrm-content a {
	color: #000;
}

.pgrm-cta {
	margin-top: 15px;
	gap: 10px;
}

.pgrm-cta a {
	text-align: center;
	color: #fff;
	padding: 10px 18px;
	font-size: 15px;
	border-radius: 25px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
}

.pgrm-cta .check-btn {
	background: linear-gradient(135deg, #f7b733 0%, #fc9d03 100%);
	flex: 1;
	box-shadow: 0 4px 10px rgba(252, 157, 3, 0.3);
}

.pgrm-cta .check-btn:hover {
	background: linear-gradient(135deg, #fc9d03 0%, #f7b733 100%);
	box-shadow: 0 6px 15px rgba(252, 157, 3, 0.5);
	transform: translateY(-2px);
}

.pgrm-cta .apply-btn {
	background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
	flex: 1;
	box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.pgrm-cta .apply-btn:hover {
	background: linear-gradient(135deg, #c2185b 0%, #e91e63 100%);
	box-shadow: 0 6px 15px rgba(233, 30, 99, 0.5);
	transform: translateY(-2px);
}

.placement-data-box span {
	color: #fff;
}

.placement-data-box span:first-child {
	font-size: 50px;
	font-weight: 900;
}

.placement-data-box span:last-child {
	font-size: 22px;
	font-weight: 600;
}

.md-promo-bg {
	background-image: url(assets/img/celebrating-tagore-bg.webp);
	background-position: top;
	background-size: cover;
	padding-top: 4%;
}

.cbt-img {
	width: clamp(180px, 25vw, 215px);
	padding-bottom: 30px;
	margin: 0 auto;
}

.md-img {
	margin: 0 auto;
}

.md-name {
	position: absolute;
	bottom: 0px;
	width: 100%;
}

.cbt-text {
	padding-bottom: 10%;
}

.bx-red {
	background-color: #e52226;
}

.bx-sky {
	background-color: #00a4d9;
}

.bx-green {
	background-color: #8dc142;
}

.bx-magenta-red {
	background-color: #c50574;
}

.bx-maroon {
	background-color: #c64600;
}

.placement-data-box {
	height: 150px;
}

.bg-white {
	background-color: #ffffff;
}

.bg-dark {
	background-color: #000000;
}

.bg-red {
	background-color: #d61e3e;
}

.bg-orange {
	background-color: #f47920;
}

.bg-blue {
	background-color: var(--color-primary-bg);
}

.bg-teal {
	background-color: #0c878a;
}

.bg-palatinate {
	background-color: #752775;
}

.bg-dark-grey {
	background-color: #736458;
}

.bg-dark-grey2 {
	background-color: #818181;
}

.bg-light-grey {
	background-color: var(--color-section-alt-bg);
}

.bg-green {
	background-color: #079247;
}

.bg-light-yellow {
	background-color: #fbb03c;
}

.bg-dark-blue {
	background-color: var(--color-primary-bg);
}

.light-blue {
	background-color: var(--color-section-alt-bg);
}

.view-more {
	background-color: var(--color-cta-bg);
	color: var(--color-text-on-dark);
	padding: 8px 20px;
	display: inline-block;
	margin: 16px 0;
	border-radius: 20px;
	font-weight: 600;
}

.view-more:hover {
	-webkit-box-shadow: 0px 8px 6px -6px rgba(0, 0, 0, 0.55);
	box-shadow: 0px 8px 6px -6px rgba(0, 0, 0, 0.55);
}

.international-collab-item {
	padding: 8px 6px;
	border: 1px solid #e1e1e1;
}

.infocard {
	padding: 8px;
}

.infocard {
	border-bottom: 4px solid var(--color-primary-bg);
	-webkit-box-shadow: 7px 7px 10px 0px rgba(1, 1, 1, 0.5);
	box-shadow: 7px 7px 10px 0px rgba(1, 1, 1, 0.5);
}

.person-photo {
	background-color: var(--color-primary-bg);
}

.person-info {
	padding: 10px;
}

.person-info h3 {
	font-weight: normal;
	color: var(--color-primary-bg);
}

.info-text {
	min-height: 160px;
	padding: 10px 0;
	font-size: 15px;
	font-weight: 300;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDExOCAxMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYzLjM3IDBoNTQuMzd2NDEuODhjMCAxNS40Mi0zLjIxIDI3LjU4LTkuNjIgMzYuNS02LjQyIDguOTItMTcuNDIgMTYuNzktMzMgMjMuNjNMNjMuMzcgNzkuNzZjOS41OC00LjUgMTYuMjEtOC45OCAxOS44OC0xMy40NHE1LjUwNS02LjY5IDYuMTItMTUuODFoLTI2ek0wIDBoNTQuMzd2NDEuODhjMCAxNS40Mi0zLjIxIDI3LjU4LTkuNjIgMzYuNS02LjQyIDguOTItMTcuNDIgMTYuNzktMzMgMjMuNjNMMCA3OS43NmM5LjU4LTQuNSAxNi4yMS04Ljk4IDE5Ljg4LTEzLjQ0cTUuNTA1LTYuNjkgNi4xMi0xNS44MUgweiIgZmlsbD0iI0YzRjNGMyIvPjwvc3ZnPg==);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
}

.person-info h3 span {
	color: #000;
	font-size: 15px;
}

.event-card h3 {
	font-size: 15px;
	font-weight: 500;
	padding: 12px 8px;
	height: 60px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.event-title {
	min-height: 70px;
}

.speakers-details {
	min-height: 150px;
	padding: 7px;
}

.speakers-details span {
	font-size: 15px;
}

.rd-info,
.sc-info {
	height: 240px;
	padding: 10px;
}

.rd-contain .rd-info.odd {
	background-color: #cef;
	color: #003f66;
}

.rd-contain .rd-info.even {
	background-color: #003f66;
	color: #cef;
}

.rd-info h3 {
	font-size: 65px;
	line-height: 65px;
	font-weight: 800;
}

.rd-info span {
	font-size: 25px;
	font-weight: 300;
}

.sc-contain .sc-info {
	color: #5e5e5e;
}

.sc-contain .sc-info.odd {
	background-color: #cfe5ff;
}

.sc-contain .sc-info.even {
	background-color: #fff0de;
}

.sc-info img {
	width: 120px;
	height: 120px;
}

.sc-info span {
	font-size: 18px;
}

.sc-info {
	transition: transform 0.3s ease;
}

.sc-info:hover {
	transform: scale(1.1);
}

.sc-info-txt {
	min-height: 60px;
	justify-content: center;
}

.ic-item {
	box-shadow: 0px 8px 6px -6px rgba(0, 0, 0, 0.55);
	border: 1px solid #e1e1e1;
	padding: 10px;
}

.hospitals-tieups-item {
	padding: 6px;
	overflow: hidden;
	border: 1px solid #e1e1e1;
}

.hospitals-tieups-item img {
	width: 165px;
	height: 95px;
	margin: 0 auto;
	object-fit: contain;
}

.vdo-thumbnail {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
}

.vdo-title span {
	font-size: 18px;
	font-weight: 500;
}

.bwu-journey-knowledge {
	background-image: url(assets/img/bwu-campus-monochrome.webp);
	background-size: cover;
	background-position: center;
	position: relative;
}

.bwu-journey-knowledge::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background-color: rgba(0, 0, 0, 0.7);
	left: 0;
}

.bwu-journey-knowledge .container {
	position: relative;
	z-index: 1;
}

.bwu-journey-knowledge .sub-heading {
	color: #fbb03c;
}

.timeline-info {
	color: #fff;
	padding: 10px;
	line-height: 21px;
}

.timeline-info .title {
	color: #fbb03c;
	padding-bottom: 5px;
	font-size: 17px;
	font-weight: 500;
}

.timeline-info .description {
	font-size: 15px;
}

#splide_journey_timeline .splide__arrows button.splide__arrow > svg {
	fill: #ffffff;
}

.contact-form {
	padding: 18px;
	background-color: rgb(207, 216, 241);
	border-radius: 18px;
}

.form-row {
	gap: 20px;
}

.form-ctrl {
	border: 1px solid #a5a5a5;
	border-radius: 15px;
	height: 40px;
	padding: 10px;
	background-color: #f7f7f7;
}

.form-ctrl.frm-msg {
	height: 100px;
}

.form-btn {
	padding: 10px 20px;
	font-size: 20px;
	border-radius: 14px;
	background-color: #2561ff;
	color: #fff;
	cursor: pointer;
	border: 0;
}

.addrs-contain {
	padding-bottom: 20px;
}

.contact-item p {
	padding-left: 30px;
}

.map-icon::before,
.mob-icon::before,
.mail-icon::before {
	content: "";
	width: 20px;
	height: 20px;
	padding-right: 10px;
	background-position: left;
	background-repeat: no-repeat;
	background-size: 20px;
}

.map-icon::before {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOTYuNTYyIDE5Ni41NjIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIHN0eWxlPSJmaWxsOiMwMDAwMDEiIGQ9Ik05OC4yODEgMTQwLjgyYzE0LjI4OCAwIDM4LjUxMi00My4yMDIgMzguNTEyLTc2LjAxMiAwLTMyLjYwMS0yMC45NDMtMzkuNDQ0LTM4LjUxMi0zOS40NDRzLTM4LjUxMiA2Ljg0My0zOC41MTIgMzkuNDQ0YzAgMzIuNjM4IDI2LjQyNSA3Ni4wMTIgMzguNTEyIDc2LjAxMk04MS41MTcgNjYuMTY0YzAtOS4yNDQgNy41MjEtMTYuNzY1IDE2Ljc2NS0xNi43NjVzMTYuNzY0IDcuNTIxIDE2Ljc2NCAxNi43NjUtNy41MjEgMTYuNzY1LTE2Ljc2NCAxNi43NjVjLTkuMjQ1IDAtMTYuNzY1LTcuNTIxLTE2Ljc2NS0xNi43NjVtMTE0LjQ3NCAxMDAuNDA1YTcuNSA3LjUgMCAwIDEtNi45MjkgNC42M0g3LjVhNy41IDcuNSAwIDAgMS01LjMwMy0xMi44MDNMNDIuNDkzIDExOC4xYTcuNSA3LjUgMCAwIDEgNS4zMDMtMi4xOTdINTguMDFhMTUwIDE1MCAwIDAgMCAzLjQ1MSA2Ljc1OGM2Ljc0IDEyLjM4NCAyMC40ODcgMzMuMTU5IDM2LjgyIDMzLjE1OSAxNS43MDMgMCAzMC4zNDMtMTcuMjE5IDQwLjMyOC0zOC40MTdoMTEuNjU2YzEuOTg5IDAgMy44OTcuNzkgNS4zMDMgMi4xOTdsMzguNzk3IDM4Ljc5NmE3LjUgNy41IDAgMCAxIDEuNjI2IDguMTczIi8+PC9zdmc+");
}

.mob-icon::before {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDUyIDUyIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBkPSJNNDguNSAzNy45IDQyLjQgMzNjLTEuNC0xLjEtMy40LTEuMi00LjgtLjFsLTUuMiAzLjhjLS42LjUtMS41LjQtMi4xLS4ybC03LjgtNy03LTcuOGMtLjYtLjYtLjYtMS40LS4yLTIuMWwzLjgtNS4yYzEuMS0xLjQgMS0zLjQtLjEtNC44bC00LjktNi4xYy0xLjUtMS44LTQuMi0yLTUuOS0uM0wzIDguNGMtLjguOC0xLjIgMS45LTEuMiAzIC41IDEwLjIgNS4xIDE5LjkgMTEuOSAyNi43UzMwLjIgNDkuNSA0MC40IDUwYzEuMS4xIDIuMi0uNCAzLTEuMmw1LjItNS4yYzEuOS0xLjUgMS44LTQuMy0uMS01LjciLz48L3N2Zz4=");
}

.mail-icon::before {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCA1LjM1OVYxNGgxNlY1LjM1OGwtOCA1eiIgZmlsbD0iIzAzMDcwOCIvPjxwYXRoIGQ9Ik0xNiAzVjJIMHYxbDggNXoiIGZpbGw9IiMwMzA3MDgiLz48L3N2Zz4=");
}

.map-icon span,
.mob-icon span,
.mail-icon span {
	padding-left: 10px;
}

.contact-item {
	padding-bottom: 10px;
}

.gmap {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #dfdfdf;
}

.video-modal {
	display: none;
}

@media (min-width: 380px) and (max-width: 519px) {
	.hospitals-tieups-item,
	.speakers-info,
	.ic-item {
		width: calc(100% / 2 - 16px);
	}
}

@media (min-width: 400px) {
	.rec-logo-item {
		width: 180px;
		height: 180px;
	}
}

@media (min-width: 768px) {
	.rec-logo-item {
		width: 188px;
		height: 188px;
	}

	.placement-data {
		top: -75px;
		position: relative;
		z-index: 2;
	}
}

@media (min-width: 992px) {
	.promo-col {
		width: 30%;
	}

	.txt-col {
		width: 40%;
	}

	.person-photo img {
		width: 150px;
	}
}

@media (min-width: 1200px) {
	.person-photo img {
		width: auto;
	}
}

@media (min-width: 1400px) {
	.sub-heading {
		font-size: 40px;
	}
}

@media (max-width: 1024px) {
	.splide__arrows {
		display: flex;
		justify-content: center;
		gap: 16px;
		order: 2;
		margin-top: 20px;
	}

	.splide__arrow {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		transform: none;
	}
}

@media (max-width: 991px) {
	.pgrm-content {
		min-height: auto;
	}

	.vdo-contain video {
		padding-top: 75px;
	}

	.imp-item {
		width: 130px;
		padding: 8px 0;
	}

	.promo-row {
		flex-wrap: wrap;
	}

	.promo-col,
	.txt-col {
		width: 100%;
	}

	.md-order-first {
		order: 1;
	}

	.md-order-second {
		order: 2;
	}

	.md-order-third {
		order: 3;
	}
}

@media (max-width: 767px) {
	.imp-item {
		width: 100px;
	}

	.imp-title span {
		font-size: 16px;
	}

	.imp-icon svg {
		width: 30px;
		height: 30px;
	}

	.vdo-contain video {
		padding-top: 60px;
	}

	.heading-content h1 {
		font-size: 25px;
		line-height: 30px;
	}

	.sub-heading {
		font-size: 24px;
	}

	.sub-text {
		font-size: 22px;
	}

	.placement .heading-bg > div {
		align-items: center;
	}

	.placement-data {
		padding: 20px 0;
	}

	.info-row {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}

	.person-info {
		text-align: center;
	}

	.company-name {
		justify-content: center;
		padding: 10px 0;
	}
}

@media (max-width: 600px) {
	.splide__track {
		order: 1;
	}

	.splide__arrows {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 18px;
		order: 2;
	}

	.splide__arrow {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		margin-top: 25px;
	}
}

@media (max-width: 1080px) {
	.cta-phone {
		display: none;
	}

	.footer {
		margin-bottom: 50px;
	}
}

/* webacs.css */
.dyslexia-friendly * {
	font-family: "OpenDyslexic" !important;
	letter-spacing: 0.05em;
	line-height: 1.8;
	word-spacing: 0.1em;
}

.highlight-heading {
	border-bottom: 4px solid #000000;
	padding-bottom: 4px;
	font-weight: 700 !important;
}

.highlight-link {
	border: 2px solid #ff0000;
	font-weight: bold;
}

.letter-spacing-wide {
	letter-spacing: 0.1em !important;
}

.letter-spacing-wider {
	letter-spacing: 0.2em !important;
}

.line-height-increased {
	line-height: 2 !important;
}

.line-height-more {
	line-height: 2.5 !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.fw-bolder {
	font-weight: 900 !important;
}

#magnifyTooltip {
	display: none;
}

#magnifyTooltip > div {
	position: fixed;
	width: fit-content;
	max-width: 80%;
	height: auto;
	max-height: 90vh;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #ffebb3;
	padding: 5px;
	border: 1px solid #333;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
	z-index: 9999;
	word-break: break-word;
	text-align: center;
	overflow-y: auto;
	font-size: inherit;
}

#magnifyTooltip > div * {
	border: 0;
	font-size: 1.6rem !important;
	background: none;
	text-decoration: none;
	color: #000000;
	margin: 0;
	padding: 0;
}

#magnifyTooltip > div {
	h1,
	h2 {
		font-size: 2.5rem !important;
	}
}

.toolTipTxt {
	position: relative;
	width: min-content;
	flex: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 4px solid #95bdff;
	border-radius: 5px;
	background-color: #2f82ff;
	color: #ffffff;
	text-wrap: auto;
	word-break: break-word;
	padding: 10px;
	display: none;
}

.toolTipTxt::before {
	content: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMmY4MmZmIiB3aWR0aD0iMzBweCIgaGVpZ2h0PSIzMHB4IiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgaWQ9IkZsYXQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTE2OCw0OFYyMDhhOC4wMDAxOCw4LjAwMDE4LDAsMCwxLTEzLjY1Njc0LDUuNjU3MjNsLTgwLTgwYTguMDAwMzQsOC4wMDAzNCwwLDAsMSwwLTExLjMxNDQ2bDgwLTgwQTguMDAwMSw4LjAwMDEsMCwwLDEsMTY4LDQ4WiIvPgo8L3N2Zz4=");
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
}

#textMagnify.acs-active ~ .toolTipTxt {
	display: block;
}

.magnify-active * {
	cursor:
		url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCIgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIiBzaGFwZS1yZW5kZXJpbmc9Imdlb21ldHJpY1ByZWNpc2lvbiI+CiAgPGNpcmNsZSBjeD0iMjgiIGN5PSIyOCIgcj0iMTgiIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMyIgLz4KICA8cmVjdCAKICAgIHg9IjM5LjUiIAogICAgeT0iMzkuNSIgCiAgICB3aWR0aD0iMjAiIAogICAgaGVpZ2h0PSI2IiAKICAgIGZpbGw9IiNmZmZmZmYiIAogICAgc3Ryb2tlPSIjMDAwMDAwIiAKICAgIHN0cm9rZS13aWR0aD0iMyIgCiAgICByeD0iMiIgcnk9IjIiIAogICAgdHJhbnNmb3JtPSJyb3RhdGUoNTAgNDAgNDIpIiAKICAvPgo8L3N2Zz4=")
			40 40,
		default !important;
}

.dark-contrast * {
	background-color: #000000 !important;
	color: #ffee00 !important;
	fill: #ffffff !important;
}

.dark-contrast .highlight-heading {
	border-color: #ffffff !important;
}

.dark-contrast .highlight-link,
.dark-contrast a {
	border: 2px dotted #ff0000;
	color: #ffffff !important;
}

.light-contrast
	:is(
		h1,
		h2,
		h3,
		h4,
		h5,
		h6,
		p,
		a,
		span,
		b,
		strong,
		button,
		i,
		img,
		svg,
		video
	) {
	background-color: #ffffff !important;
	color: #000000 !important;
}

.high-contrast {
	filter: contrast(1.2);
}

.low-saturation {
	filter: saturate(50%) !important;
}

.high-saturation {
	filter: saturate(150%) !important;
}

.gray-scale {
	filter: grayscale(100%) !important;
}

.rf-mode-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10000;
}

.rf-overlay {
	position: fixed;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.rf-overlay-top {
	top: 0;
}

.rf-overlay-bottom {
	bottom: 0;
}

.rf-focus-area {
	position: absolute;
	left: 0;
	width: 100%;
	background-color: transparent;
	border-top: 2px dashed rgba(255, 215, 0, 0.5);
	border-bottom: 2px dashed rgba(255, 215, 0, 0.5);
	z-index: 9999;
	pointer-events: none;
}

.big-cursor,
.big-cursor * {
	cursor:
		url("data:image/svg+xml,%3Csvg%20width%3D%2260%22%20height%3D%2290%22%20viewBox%3D%220%200%2030%2042%22%20version%3D%221.1%22%20id%3D%22svg1%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Asvg%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%20id%3D%22defs1%22%2F%3E%3Cg%20id%3D%22layer1%22%20transform%3D%22translate(-81.664743%2C-154.82904)%22%3E%3Crect%20style%3D%22fill%3Anone%3Bstroke-width%3A0.220285%22%20id%3D%22rect1%22%20width%3D%2235.330853%22%20height%3D%2244.899628%22%20x%3D%2280.966537%22%20y%3D%22154.20447%22%2F%3E%3Cg%20style%3D%22fill-rule%3Anonzero%22%20id%3D%22g1%22%20transform%3D%22matrix(0.26458333%2C0%2C0%2C0.26458333%2C59.086975%2C140.71793)%22%3E%3Cg%20transform%3D%22scale(5.33333)%22%20id%3D%22g2%22%20style%3D%22font-family%3Anone%3Bmix-blend-mode%3Anormal%3Bfill%3Anone%3Bfill-rule%3Anonzero%3Bstroke%3Anone%3Bstroke-width%3A1%3Bstroke-linecap%3Abutt%3Bstroke-linejoin%3Amiter%3Bstroke-miterlimit%3A10%3Bstroke-dasharray%3Anone%3Bstroke-dashoffset%3A0%22%3E%3Cpath%20d%3D%22m%2027.8%2C39.7%20c%20-0.1%2C0%20-0.2%2C0%20-0.4%2C-0.1%20-0.2%2C-0.1%20-0.4%2C-0.3%20-0.6%2C-0.5%20l%20-3.7%2C-8.6%20-4.5%2C4.2%20C%2018.5%2C34.9%2018.3%2C35%2018%2C35%2017.9%2C35%2017.7%2C35%2017.6%2C34.9%2017.3%2C34.8%2017%2C34.4%2017%2C34%20V%2012%20c%200%2C-0.4%200.2%2C-0.8%200.6%2C-0.9%20C%2017.7%2C11%2017.9%2C11%2018%2C11%20c%200.2%2C0%200.5%2C0.1%200.7%2C0.3%20l%2016%2C15%20c%200.3%2C0.3%200.4%2C0.7%200.3%2C1.1%20-0.1%2C0.4%20-0.5%2C0.6%20-0.9%2C0.7%20l%20-6.3%2C0.6%203.9%2C8.5%20c%200.1%2C0.2%200.1%2C0.5%200%2C0.8%20-0.1%2C0.2%20-0.3%2C0.5%20-0.5%2C0.6%20l%20-2.9%2C1.3%20c%20-0.2%2C-0.2%20-0.4%2C-0.2%20-0.5%2C-0.2%20z%22%20fill%3D%22%23ffffff%22%20id%3D%22path1%22%2F%3E%3Cpath%20d%3D%22m%2018%2C12%2016%2C15%20-7.7%2C0.7%204.5%2C9.8%20-2.9%2C1.3%20L%2023.6%2C28.9%2018%2C34%20V%2012%20m%200%2C-2%20c%20-0.3%2C0%20-0.5%2C0.1%20-0.8%2C0.2%20-0.7%2C0.3%20-1.2%2C1%20-1.2%2C1.8%20v%2022%20c%200%2C0.8%200.5%2C1.5%201.2%2C1.8%200.3%2C0.2%200.6%2C0.2%200.8%2C0.2%200.5%2C0%201%2C-0.2%201.4%2C-0.5%20l%203.4%2C-3.2%203.1%2C7.3%20c%200.2%2C0.5%200.6%2C0.9%201.1%2C1.1%200.2%2C0.1%200.5%2C0.1%200.7%2C0.1%200.3%2C0%200.5%2C-0.1%200.8%2C-0.2%20l%202.9%2C-1.3%20c%200.5%2C-0.2%200.9%2C-0.6%201.1%2C-1.1%200.2%2C-0.5%200.2%2C-1.1%200%2C-1.5%20l%20-3.3%2C-7.2%204.9%2C-0.4%20c%200.8%2C-0.1%201.5%2C-0.6%201.7%2C-1.3%200.3%2C-0.7%200.1%2C-1.6%20-0.5%2C-2.1%20l%20-16%2C-15%20C%2019%2C10.2%2018.5%2C10%2018%2C10%20Z%22%20fill%3D%22%23212121%22%20id%3D%22path2%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E")
			0 0,
		default !important;
}

.web-btn {
	padding: 10px 15px;
	margin: 5px;
	border: 1px solid #005fff;
	background-color: #fff;
	font-size: 13px;
	border-radius: 5px;
	color: #005fff;
	cursor: pointer;
	transition: all 0.2s ease;
}

.web-btn:disabled {
	background: #ccc;
	border-color: #999;
	color: #666;
	cursor: not-allowed;
}

.wac-widget {
	position: fixed;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #005fff;
	left: 5px;
	bottom: 95px;
	border: 0;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1030;
}

.wac-widget svg {
	border: 2px solid #fff;
	padding: 6px;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.wac-widget:hover svg {
	transform: scale(1.2);
}

#accessibility-widget {
	display: none;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #005fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	position: fixed;
	bottom: 0;
	left: 0;
	width: 385px;
	height: 100%;
	height: 100dvh;
	user-select: none;
	overflow: hidden;
	z-index: 1040;
}

#accessibility-widget.draggable {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	touch-action: none;
	cursor: move;
}

#accessibility-widget.minimized {
	width: 90px;
	border-radius: 5px;
}

#accessibility-widget.minimized .wac-topbar {
	padding: 15px;
}

#accessibility-widget.minimized .wac-topbar svg {
	width: 20px;
	height: 20px;
}

#accessibility-widget.minimized .wac-window-controls {
	top: 0px;
}

div#accessibility-widget.minimized .wac-menu .wac-topbar .wac-title {
	display: none;
}

.wac-container {
	position: relative;
	padding: 10px;
	scrollbar-width: thin;
	scrollbar-color: #c2d8ff #ebf3ff;
	height: calc(100% - 120px);
	overflow-y: auto;
	scrollbar-width: thin;
}

.wac-container::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

.wac-container::-webkit-scrollbar-thumb {
	background: #c2d8ff;
	border-radius: 10px;
}

.wac-container::-webkit-scrollbar-track {
	background: #ebf3ff;
}

.wac-container::-webkit-scrollbar-thumb:hover {
	background: #005fff;
}

.wac-menu {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	background-color: #005fff;
}

.wac-topbar {
	display: flex;
	justify-content: start;
	padding: 10px;
}

.wac-title {
	align-items: center;
	justify-content: center;
	display: flex;
	gap: 5px;
}

.wac-title span {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}

.wac-window-controls {
	position: absolute;
	top: 12px;
	right: 0px;
	z-index: 2;
}

.dragWidget,
.minmaxwidget,
.closeWidgetBtn {
	position: relative;
	width: 25px;
	height: 25px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 0;
	background: transparent;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: grab;
}

.wac-window-controls button svg {
	position: absolute;
}

.dragWidget,
.minmaxwidget {
	border-right: 0;
}

#accessibility-widget.drag-active {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	cursor: grab;
}

#accessibility-widget.drag-active:active {
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

#accessibility-widget.drag-active .wac-container {
	filter: contrast(0.5);
}

.drag-active .dragWidget > svg {
	fill: #ccc;
}

.minmaxwidget {
	cursor: pointer;
	font-size: 20px;
	font-weight: 700;
}

.closeWidgetBtn {
	cursor: pointer;
	font-size: 20px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

div:has(> .closeWidgetBtn) {
	display: flex;
}

#accessibility-widget h3 {
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 400;
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
	margin: 0;
	padding: 5px;
}

.wac-sec {
	margin-bottom: 8px;
	padding: 10px 10px 8px;
	background-color: rgb(235 243 255 / 50%);
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
}

.wacBdr-btm {
	border-radius: 8px;
	padding: 5px 0;
	margin-bottom: 8px;
	text-align: center;
	background-color: #ebf3ff;
	border: 1px solid #adc3ff;
	color: #005fff;
}

.wacBdr-btm > span {
	font-weight: 600;
}

.wac-options-title {
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 5px;
	display: flex;
	justify-content: center;
	gap: 5px;
	border-bottom: 1px solid #005fff;
}

.wac-options-title span {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: #005fff;
}

.font-adjust {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 8px;
	width: 100%;
}

.font-adjust .fs-adjust-bdr {
	display: flex;
	justify-content: space-between;
	width: 144px;
	height: 1px;
	background-color: #005fff;
}

#fontDecrease,
#fontIncrease {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.wac-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
}

.wac-btns .web-btn {
	width: 105px;
	height: 90px;
	margin: 0;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	line-height: 18px;
	letter-spacing: 0.8px;
}

.wac-btns .web-btn:hover span svg {
	fill: #ffffff;
}

.acs-active {
	background-color: #2575fc;
	color: #fff;
	border: 2px solid #ffffff;
}

.web-btn:hover {
	background: #2575fc;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pause-resume,
.stop {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 8px;
	border: 1px solid #005fff;
	color: #005fff;
	cursor: pointer;
}

#accessibility-widget button:disabled {
	color: #666;
	cursor: not-allowed;
	border: 1px solid #999;
}

#accessibility-widget button:disabled:hover,
.btn:disabled:hover {
	background: #ccc;
	color: #666;
	box-shadow: none;
	cursor: not-allowed;
}

.srn-controls {
	width: 100px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wac-save-reset {
	position: sticky;
	z-index: 1;
	width: 100%;
	bottom: 0px;
	background-color: #fff;
	border-top: 1px solid #d1d1d1;
}

.reset-save {
	display: flex;
	justify-content: center;
	padding: 0;
}

.reset-save .web-btn {
	display: flex;
	align-items: center;
	gap: 2px;
	margin: 5px;
	padding: 5px 6px;
}

.minimized {
	height: 0;
}

.showKbdBx {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 90%);
	z-index: 5;
}

.kbdBox * {
	display: none;
}

.showKbdBx > .kbdBox {
	width: 600px;
	max-width: 95vw;
	height: 85vh;
	border: 1px solid #878787;
	background-color: #000;
	border-radius: 10px;
	padding: 10px;
	position: relative;
	overflow-y: auto;
}

.showKbdBx > .kbdBox * {
	display: flex;
	color: #fff;
}

.kbdItem {
	padding: 10px 0;
	border: 1px solid #505050;
	border-bottom: 0;
}

.kbdItem span {
	margin: 0 8px;
}

.closeKbdBx {
	position: sticky;
	top: 2px;
	right: 2px;
	border-radius: 50%;
	background: #606060;
	border: 1px solid #878787;
	padding: 3px;
	cursor: pointer;
	margin-left: auto;
}

code {
	border: 1px solid #eee;
	background-color: #545454;
	padding: 4px 8px;
	border-radius: 10px;
	line-height: 20px;
	font-size: 18px;
}

.kbdBox .kbdItem:nth-child(2) {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.kbdBox .kbdItem:last-child {
	border-bottom: 1px solid #505050;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px;
	color: #ffffff;
	background-color: #005fff;
}

.copyright img {
	width: 30px;
}

.copyright small {
	padding-right: 8px;
}

.copyright a {
	color: #fff;
}

@media (min-width: 1081px) {
	.wac-widget {
		bottom: 5px;
	}
}

@media (max-width: 480px) {
	#accessibility-widget {
		width: 70%;
	}

	.wac-title span {
		font-size: 16px;
	}

	.wac-btns {
		justify-content: center;
	}

	.wac-btns button.lastChild {
		width: 100%;
	}

	.toolTipTxt::before {
		top: -24px;
		left: 0;
		right: 0;
		margin: 0 auto;
		transform: rotate(90deg);
	}
}

@media (max-width: 440px) {
	.copyright a {
		display: block;
		line-height: 15px;
	}
}

@media (max-width: 390px) {
	.wac-title span {
		font-size: 12px;
	}

	.wac-btns .web-btn {
		width: 48%;
	}

	.copyright small {
		padding-left: 5px;
		font-size: 11.5px;
	}
}

@media (max-width: 350px) {
	.wac-title span {
		display: none;
	}

	.wac-btns .web-btn {
		width: 100%;
	}
}
/* Custom Statistics Slider Styles */
.custom-slider-wrapper {
	display: flex;
	gap: 20px;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

.stat-slider-item {
	display: flex;
	flex: 0 1 calc(33.333% - 14px);
	min-width: 250px;
	transition: all 0.3s ease;
}

.stat-slider-item .stat-data-item {
	width: 100%;
	padding: 30px;
	background: var(--marron);
	color: white;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(139, 46, 43, 0.15);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.stat-slider-item .stat-data-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(139, 46, 43, 0.25);
}

.stat-slider-item .stat-data-item span:first-child {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 15px;
	display: block;
}

.stat-slider-item .stat-data-item span:last-child {
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	display: block;
}

.stat-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: white;
	border: 2px solid #0039b3;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0039b3;
	transition: all 0.3s ease;
	z-index: 10;
	padding: 0;
	font-size: 20px;
}

.stat-slider-btn:hover:not(:disabled) {
	background-color: #0039b3;
	color: white;
}

.stat-slider-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.stat-slider-prev {
	left: -60px;
}

.stat-slider-next {
	right: -60px;
}

.stat-slider-btn svg {
	width: 24px;
	height: 24px;
}

/* Responsive Design for Statistics Slider */
@media (max-width: 1024px) {
	.stat-slider-item {
		flex: 0 1 calc(50% - 10px);
		min-width: 220px;
	}

	.stat-slider-prev {
		left: -50px;
	}

	.stat-slider-next {
		right: -50px;
	}
}

@media (max-width: 768px) {
	.custom-slider-wrapper {
		gap: 15px;
	}

	.stat-slider-item {
		flex: 0 1 calc(50% - 7.5px);
		min-width: 180px;
	}

	.stat-slider-item .stat-data-item {
		padding: 20px;
	}

	.stat-slider-item .stat-data-item span:first-child {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.stat-slider-item .stat-data-item span:last-child {
		font-size: 14px;
	}

	.stat-slider-btn {
		width: 40px;
		height: 40px;
	}

	.stat-slider-prev {
		left: -45px;
	}

	.stat-slider-next {
		right: -45px;
	}
}

@media (max-width: 480px) {
	.custom-slider-wrapper {
		gap: 10px;
	}

	.stat-slider-item {
		flex: 0 1 100%;
		min-width: 100%;
	}

	.stat-slider-item .stat-data-item {
		padding: 25px 20px;
	}

	.stat-slider-item .stat-data-item span:first-child {
		font-size: 40px;
		margin-bottom: 12px;
	}

	.stat-slider-item .stat-data-item span:last-child {
		font-size: 14px;
		line-height: 1.3;
	}

	.stat-slider-btn {
		width: 38px;
		height: 38px;
		border-width: 1.5px;
	}

	.stat-slider-prev {
		left: -35px;
	}

	.stat-slider-next {
		right: -35px;
	}
}

/* PLACEMENTS SECTION */
.placements-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 60px 0;
}

.placements-section .sub-heading-content {
	margin-bottom: 50px;
}

.placements-section .sub-text {
	font-size: 16px;
	color: #555;
	max-width: 700px;
	margin: 15px auto 0;
	line-height: 1.6;
}

/* Placement Statistics */
.placement-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 25px;
	margin: 50px 0;
	padding: 40px 20px;
	background: linear-gradient(
		135deg,
		var(--color-primary-bg) 0%,
		var(--color-section-alt-bg) 100%
	);
	border-radius: 15px;
	box-shadow: 0 8px 24px rgba(139, 46, 43, 0.15);
}

.placement-stat-item {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.placement-stat-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placement-stat-item h3 {
	margin: 0 0 10px 0;
	color: var(--color-cta-bg);
	font-size: 14px;
	letter-spacing: 1px;
}

.stat-number {
	display: block;
	font-size: 36px;
	font-weight: 800;
	color: var(--color-cta-bg);
	line-height: 1;
}

.placement-stat-item p {
	color: #fff;
	font-size: 14px;
	margin-top: 10px;
	font-weight: 500;
}

/* Star Achievers Section */
.star-achievers-wrapper {
	margin-top: 60px;
}

.section-subheading {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-primary-bg);
	margin-bottom: 30px;
	text-align: center;
	letter-spacing: 0.5px;
}

.achievers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	padding: 30px 0;
}

.achiever-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(139, 46, 43, 0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	text-align: center;
	padding: 20px 15px;
}

.achiever-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 28px rgba(139, 46, 43, 0.2);
	border-color: var(--color-cta-bg);
}

.achiever-image {
	margin-bottom: 15px;
}

.placeholder-img {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	background: linear-gradient(
		135deg,
		var(--color-primary-bg),
		var(--color-section-alt-bg)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	box-shadow: 0 4px 12px rgba(139, 46, 43, 0.2);
}

.achiever-info h4 {
	font-size: 15px;
	color: #333;
	margin: 10px 0 5px 0;
	font-weight: 600;
	line-height: 1.3;
}

.achiever-info .company {
	color: var(--color-primary-bg);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 5px 0;
}

.achiever-info .degree {
	color: #888;
	font-size: 12px;
	margin: 5px 0 0 0;
}

/* Star Achievers Carousel */
.achievers-carousel-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 30px 0;
	position: relative;
}

.carousel-wrapper {
	flex: 1;
	max-width: 900px;
	overflow: hidden;
}

.carousel-slides {
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-slide {
	min-width: 100%;
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.carousel-slide.active {
	display: flex;
	opacity: 1;
}

.slide-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	width: 100%;
	padding: 20px;
}

.carousel-image {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 1;
	box-shadow: 0 4px 15px rgba(139, 46, 43, 0.15);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.carousel-image:hover img {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: white;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.carousel-image:hover .image-overlay {
	transform: translateY(0);
}

.image-overlay h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 5px 0;
}

.image-overlay .degree {
	font-size: 12px;
	margin: 0 0 3px 0;
	color: #ddd;
}

.image-overlay .company {
	font-size: 11px;
	color: #ffeb3b;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin: 0;
}

.carousel-btn {
	background: var(--color-primary-bg);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	z-index: 10;
}

.carousel-btn:hover {
	background: var(--color-cta-bg);
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(139, 46, 43, 0.3);
}

.carousel-btn.prev-btn {
	order: -1;
}

.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.indicator.active {
	background: var(--color-primary-bg);
	width: 14px;
	height: 14px;
	border-color: var(--color-cta-bg);
}

.indicator:hover {
	background: var(--color-primary-bg);
}

/* Responsive Carousel */
@media (max-width: 768px) {
	.slide-images {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.achievers-carousel-container {
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.carousel-image {
		aspect-ratio: auto;
		height: 300px;
	}

	.carousel-btn {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}

	.slide-images {
		padding: 10px;
	}
}

/* Prominent Recruiters Section */
.recruiters-wrapper {
	margin-top: 60px;
}

.recruiters-stripe-container {
	width: 100%;
	overflow: hidden;
	background: linear-gradient(90deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
	padding: 30px 0;
	border-radius: 12px;
	position: relative;
}

.recruiters-stripe-container::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5%;
	height: 100%;
	background: linear-gradient(90deg, #f9f9f9, transparent);
	z-index: 10;
	pointer-events: none;
}

.recruiters-stripe-container::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 5%;
	height: 100%;
	background: linear-gradient(90deg, transparent, #f9f9f9);
	z-index: 10;
	pointer-events: none;
}

.recruiters-stripe {
	display: flex;
	animation: scroll-left 18s linear infinite;
	gap: 40px;
	padding: 0 20px;
	will-change: transform;
}

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

.recruiters-stripe:hover {
	animation-play-state: paused;
}

.recruiter-logo-item {
	flex: 0 0 auto;
	width: 180px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid #e0e0e0;
}

.recruiter-logo-item:hover {
	transform: scale(1.08) translateY(-5px);
	box-shadow: 0 8px 20px rgba(139, 46, 43, 0.2);
	border-color: var(--color-primary-bg);
	background: #fafafa;
}

.recruiter-logo-item img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	width: auto;
	height: auto;
}

/* Responsive Design for Placements */
@media only screen and (max-width: 768px) {
	.placements-section {
		padding: 40px 0;
	}

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

	.stat-number {
		font-size: 28px;
	}

	.placement-stat-item p {
		font-size: 12px;
	}

	.section-subheading {
		font-size: 24px;
	}

	.achievers-grid,
	.recruiters-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 15px;
	}

	.achiever-card {
		padding: 15px 12px;
	}

	.placeholder-img {
		width: 70px;
		height: 70px;
		font-size: 35px;
	}

	.achiever-info h4 {
		font-size: 13px;
	}

	.recruiter-logo {
		font-size: 28px;
	}
}

@media only screen and (max-width: 480px) {
	.placements-section {
		padding: 30px 0;
	}

	.placement-stats {
		grid-template-columns: 1fr;
		padding: 20px 10px;
	}

	.stat-number {
		font-size: 24px;
	}

	.placement-stat-item h3 {
		font-size: 12px;
	}

	.placement-stat-item p {
		font-size: 11px;
	}

	.section-subheading {
		font-size: 20px;
	}

	.achievers-grid,
	.recruiters-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.achiever-card {
		padding: 12px 10px;
	}

	.placeholder-img {
		width: 60px;
		height: 60px;
		font-size: 30px;
	}

	.achiever-info h4 {
		font-size: 12px;
	}

	.recruiter-logo {
		font-size: 24px;
	}
}
