.enquiryWrapper {
	--width: 34px;
	position: fixed;
	isolation: isolate;
	right: 1rem;
	bottom: 1rem;
	z-index: 4;
	background-color: #fff;
	padding: 10px;
	border-radius: 30px;
	box-shadow: 0px 10px 20px rgb(0 0 0 / 15%);
}

.enquiryWrapper a {
	display: block;
	width: var(--width);
	height: var(--width);
}

.enquiryWrapper a i {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25em;
}

/* hero-sticky-wrapper */
.hero-sticky-wrapper {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 120px;
}

.hero-sticky-wrapper ul {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(6, 1fr);
	gap: 4px;
}

.sticky-item1 {
	grid-area: 2 / 1 / 4 / 2;
}

.sticky-item2 {
	grid-area: 4 / 1 / 6 / 2;
}

.sticky-item3 {
	grid-area: 1 / 2 / 3 / 3;
}

.sticky-item4 {
	grid-area: 3 / 2 / 5 / 3;
}

.sticky-item5 {
	grid-area: 5 / 2 / 7 / 3;
}

.hero-sticky-wrapper ul li a {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.5rem;
	background-color: rgb(255 255 255 / 25%);
	color: var(--white);
	text-transform: uppercase;
	font-family: var(--vintage-font);
	padding: 10px;
	transition: all .3s ease;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.hero-sticky-wrapper ul li a:hover {
	box-shadow: 0 0 0 60px #fff inset;
	color: var(--text-color);
}

.hero-sticky-wrapper ul li a i {
	max-width: 30px;
	font-size: 1.5rem;
	color: var(--clr);
}

.hero-sticky-wrapper ul li a img {
	max-width: 50px;
}

/* hero-sticky-wrapper */

/* ===== HEADER & NAVIGATION ===== */
.header-section {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	/* border-bottom: 1px solid rgba(0, 0, 0, 0.3); */
	transition: var(--transition);
}

.header-section.notfixed {
	top: -133px;
}

.header-section:hover, .header-section.fixed, .header-section.scrolled {
	box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.header-section:hover li .nav-link {
	/* opacity: 0.35; */
}

.header-section li .nav-link {
	color: var(--white);
	text-decoration: none;
	font-family: var(--serif-font);
	font-weight: 600;
	/* text-transform: uppercase; */
	line-height: 1;
	padding: 1rem;
	transition: var(--transition);
	position: relative;
	text-align: center;
}

@media (max-width: 1366px) {
	.header-section li .nav-link {
		/* font-size: 0.875rem; */
	}
}

.header-section li .nav-link i {
	font-size: .75em;
}

.header-section li .nav-link:hover, .header-section li .nav-link.active {
	opacity: 1;
	color: var(--bs-warning);
}

.header-section li .nav-link.active i {
	transform: rotate(180deg);
}

.header-section .main-header {
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.header-section .main-header .d-grid {
	grid-template-columns: 350px 1fr;
}

@media (max-width: 1199.9px) {
	.header-section .main-header .d-grid {
		grid-template-columns: 250px 1fr;
	}
}

@media (max-width: 540px) {
	.header-section .main-header .d-grid {
		grid-template-columns: 200px 1fr;
	}
}

.header-section .main-header .d-grid .main-nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.header-section .main-header .d-grid .main-nav .nav-menu {
	display: flex;
	list-style: none;
	justify-content: flex-end;
	color: var(--white);
	margin: 0;
	padding: 0;
}

.header-section .sub-header {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dropdown Menu Starts */
.header-section .dropdown-wrapper {
	position: absolute;
	top: calc(var(--header-height));
	left: 0;
	right: 0;
	/* min-height: 245px; */
	background-color: var(--white);
	z-index: 999;
	display: none;
}

.header-section .dropdown-wrapper .dropdown-inner {
	display: none;
}

.header-section .dropdown-wrapper .dropdown-inner .menu-image img {
	height: 100%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 600;
	aspect-ratio: 3 / 2;
	background: center / cover no-repeat;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgb(0 0 0 / 80%);
	opacity: 0;
	aspect-ratio: 1;
	transform: scale(0);
	border-radius: 50%;
	transform-origin: center bottom;
	transition: var(--transition);
	z-index: -1;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor span {
	width: 100%;
	padding: 10px 1rem;
	background-color: rgb(0 0 0 / 70%);
	border: 1px solid transparent;
	gap: 5px;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor span i {
	font-size: 0.75em;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor:hover {
	align-items: center;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor:hover::before {
	opacity: 1;
	transform: scale(1.5);
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor:hover span {
	background-color: transparent;
	justify-content: center !important;
	border-radius: 50px;
	border-color: rgb(255 255 255 / 60%);
	width: auto;
	transition: all 300ms ease-in-out;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-box .nav-anchor:hover span:hover {
	background-color: var(--accent-color);
	border-color: transparent;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-button .nav-button-link {
	padding: 10px 1rem;
	border: 1px solid rgb(0 0 0 / 30%);
	color: var(--text-color);
	transition: var(--transition);
}

.header-section .dropdown-wrapper .dropdown-inner .nav-button a.nav-button-link:hover {
	background-color: var(--accent-color);
	color: var(--white);
	border-color: transparent;
}

.header-section .dropdown-wrapper .dropdown-inner .nav-button .list > li > a {
	color: var(--text-color);
}

.header-section .dropdown-wrapper .dropdown-inner .nav-button .list > li > a:hover {
	color: var(--accent-color);
}

/* Dropdown Menu Ends */

.main-header {
	padding-top: .5rem;
	padding-bottom: .5rem;
}

.header-section.fixed .menuBtn {
	color: var(--body-color);
	background-color: transparent;
	box-shadow: none;
	padding: .5rem 0;
}

.header-section.fixed .menuBtn .menuLine::before, .header-section.fixed .menuBtn .menuLine::after {
	background-color: var(--primary-color);
}

/* menu button */
.menuBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 1rem;
	font-weight: 700;
	transition: all 300ms ease-in-out;
	position: relative;
	cursor: pointer;
	color: #000;
	overflow: hidden;
	background-color: transparent;
	padding: 0.5rem 1rem;
	border: 0;
}

.menuBtn .menuText span {
	display: block;
	transition: all 300ms ease-in-out;
}

.menuBtn .menuText::after {
	content: attr(data-menutext);
	display: table;
	position: absolute;
	top: 100%;
	left: 1rem;
	transition: all 300ms ease-in-out;
}

.menuBtn .menuLine {
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: relative;
	width: 26px;
	transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn .menuLine::before, .menuBtn .menuLine::after {
	content: "";
	width: 100%;
	height: 2px;
	background: var(--bs-warning);
	transform-origin: center center;
	transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn .menuLine::before {
	width: 100%;
}

.menuBtn .menuLine::after {
	width: 70%;
}

.menuBtn:hover {
	color: var(--primary-color);
}

.menuBtn:hover .menuLine::before, .menuBtn:hover .menuLine::after {
	background-color: rgb(255 255 255 / 60%);
}

.menuBtn:hover .menuLine::after {
	width: 85%;
}

.menuBtn.closeMenuBtn {
	gap: 2px;
}

.menuBtn.closeMenuBtn .menuText::after {
	top: .5rem;
}

.menuBtn.closeMenuBtn .menuText span {
	transform: translateY(-120%);
}

.menuBtn.closeMenuBtn .menuLine::before {
	-webkit-transform: rotate(45deg) translate(3px, 2px);
	transform: rotate(45deg) translate(3px, 2px);
}

.menuBtn.closeMenuBtn .menuLine::after {
	width: 100%;
	-webkit-transform: rotate(-45deg) translate(3px, -2px);
	transform: rotate(-45deg) translate(3px, -2px);
}

.menuContainer {
	position: fixed;
	inset: 0;
	z-index: 999;
	background-color: rgb(0 0 0 / 30%);
	display: none;
}

.menuContainer .inner {
	display: grid;
	grid-template-rows: 1fr auto;
	min-width: 540px;
	max-width: 40%;
	padding: 20px 30px;
	position: fixed;
	z-index: 999;
	top: var(--header-height);
	right: -50%;
	bottom: 0;
	visibility: hidden;
	color: #fff;
	background-color: var(--primary-color);
	transition: all 300ms ease-in-out;
}

.menuContainer.active .inner {
	visibility: visible;
	right: 0%;
}

.menuContainer .inner a {
	color: #fff;
}

.topAside {
	gap: 20px;
}

.menuContainerHeader .topAside .top-side .navi {
	gap: 10px;
}

.socialBtn {
	position: relative;
}

.socialBtn i {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgb(255 255 255 / 30%);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 200ms ease-in-out;
}

.socialBtn:hover > i {
	background-color: #fff;
	color: var(--primary-color);
}

.socialBtn ul {
	width: 200px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: space-between;
	position: absolute;
	left: 2px;
	pointer-events: none;
}

.socialBtn:hover ul {
	pointer-events: all;
}

.socialBtn ul li {
	opacity: 0;
	visibility: hidden;
	transform: translateY(calc(10px * var(--i)));
	transition: all calc(150ms * var(--i)) ease-in-out;
}

.socialBtn:hover > ul li {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	margin: 5px 0;
}

.menuContainerHeader .socialBtn ul i {
	width: 36px;
	height: 36px;
	font-size: 14px;
	box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
	transition: all 300ms ease-in-out;
}

i.fa-facebook-f:hover {
	background-color: var(--facebook);
}

i.fa-twitter:hover {
	background-color: var(--twitter);
}

i.fa-linkedin-in:hover {
	background-color: var(--linkedin);
}

i.fa-instagram:hover {
	background-color: var(--instagram);
}

i.fa-youtube:hover {
	background-color: var(--youtube);
}

/* main menu */
.mainMenu {
	margin-bottom: 3rem;
	position: relative;
}

.mainMenu > ul {
	max-width: 50%;
	padding-right: 10px;
	border-right: 1px solid rgb(255 255 255 / 30%);
}

.mainMenu ul {
	display: flex;
	flex-direction: column;
}

.mainMenu ul li {
	padding: 3px 0;
}

.mainMenu ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10px;
}

.mainMenu ul li:hover > a {
	background-color: rgb(255 255 255 / 15%);
}

.menuDrop {
	position: absolute;
	left: 46%;
	top: -5px;
	width: 54%;
	min-height: 100%;
	border-left: 35px solid transparent;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	max-height: 80vh;
}

.mainMenu ul li:hover > .menuDrop {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

.menuDrop ul li:not(:last-child) {
	border-bottom: 1px solid rgb(255 255 255 / 30%);
}

/* main menu */
.menuContainerFooter ul {
	gap: 10px;
}

.menuContainerFooter ul li a {
	font-size: 11px;
	text-transform: uppercase;
}

.menuContainerFooter ul li a:hover {
	border-bottom: 1px dashed rgb(255 255 255 / 100%);
}

/* ===== HEADER & NAVIGATION ===== */

/* ===== HERO BANNER ===== */
.hero-banner {
	position: relative;
	height: calc(100vh - (var(--header-height) + 45px));
	margin-top: var(--header-height);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	color: var(--white);
}

.hero-banner .swiper-slide {
	height: auto;
	position: relative;
}

.hero-banner img {
	height: 100%;
	object-fit: cover;
}

.hero-banner::after {
	content: '';
	position: absolute;
	inset: 0;
	/* background: rgb(0 0 0 / 50%);
    background: linear-gradient( transparent, rgb(0 0 0 / 50%)); */
	z-index: 1;
	pointer-events: none;
}

/* .hero-banner picture img {
	-webkit-animation: zoom 30s infinite alternate;
	animation: zoom 30s infinite alternate;
}

@-webkit-keyframes zoom {
	50% {
		transform: scale(1.25, 1.25);
		transform-origin: center bottom;
	}
}

@keyframes zoom {
	50% {
		transform: scale(1.25, 1.25);
		transform-origin: center bottom;
	}
} */

.homeVideo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.hero-description {
	font-size: 1.2rem;
	margin-bottom: 30px;
	max-width: 600px;
	line-height: 1.6;
}

.cta-link {
	color: var(--white);
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: var(--transition);
	padding: 10px 0;
}

.cta-link:hover {
	color: var(--accent-color);
	transform: translateX(5px);
}

.hero-cta {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.hero-banner .swiper-controls {
	position: absolute;
	bottom: 1rem;
}

/* Marquee */
/* 1. Outer Container */
.marquee-container {
	width: 100%;
	overflow: hidden;
	color: #000;
	padding: 10px 0;
}

/* 2. Moving Text Element */
.marquee-text {
	display: inline-block;
	white-space: nowrap;
	padding-left: 100%;
	animation: scroll-single 30s linear infinite;
}

.marquee-text a {
	color: var(--white);
}

.marquee-text a:hover {
	text-decoration: underline;
}

/* 3. Optional: Pause on Hover */
.marquee-container:hover .marquee-text {
	animation-play-state: paused;
}

/* 4. The Keyframe Animation */

@keyframes scroll-single {
	0% {
		transform: translateX(0); /* Starts inside the right padded area */
	}

	100% {
		transform: translateX(-100%); /* Moves fully out of view to the left */
	}
}

/* Marquee */

/* ===== SCHOOL OVERVIEW SECTION ===== */
.school-overview {
	background: var(--white);
	position: relative;
	z-index: 1;
}

.building-sketch {
	z-index: -1;
	filter: opacity(0.1);
}

.school-logo {
	margin-bottom: 2rem;
}

.logo-circle {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 40, 88, 0.2);
	background-color: #fff;
	padding: 10px;
}

/* Right Column - Content Section */
.content-subheading {
	font-family: var(--serif-font);
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--text-light);
	font-style: italic;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.content-description {
	text-align: justify;
}

.content-description em {
	font-style: italic;
	color: var(--secondary-color);
	font-weight: 500;
}

.slogan {
	font-size: 1.25rem;
	color: var(--primary-color);
	margin-top: 1rem;
	text-align: center;
	font-style: italic;
}

.slogan i {
	font-size: 0.875rem;
	vertical-align: text-top;
}

/* ---- */
/* .hm-card{
  .inner{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    overflow: hidden;

    .img-fluid{
      overflow: hidden;
      img{
        aspect-ratio: 4/3;
        object-fit: cover;
        transition: all 300ms linear;
      }
    }
    
    &:hover img{
      transform: scale(1.1);
    }

    article
    {
      padding-top: 1.5rem;
      color: var(--text-color);
      transition: all 300ms ease-in-out;
    }
  }
} */
.hm-card:nth-child(even) .inner {
	transform: translateY(-20%);
}

.hm-card .inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1rem;
	position: relative;
	aspect-ratio: 3 / 4;
	z-index: 1;
	overflow: hidden;
}

.hm-card .inner img {
	position: absolute;
	height: 100%;
	inset: 0;
	object-fit: cover;
	z-index: -1;
	transition: all 300ms linear;
}

.hm-card .inner:hover img {
	transform: scale(1.1);
}

.hm-card .inner article {
	padding: 1rem;
	color: var(--text-color);
	background-color: var(--white);
	transition: all 300ms ease-in-out;
}

/* ---- */

/* logos */
.affiliate-section .inner {
	background-color: var(--primary-color);
	padding: 2rem;
}

.affiliate-logos {
	height: 350px;
}

.logoBox .img-fluid {
	height: 100%;
	display: flex;
	justify-content: center;
	background-color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

/* logos */

/* ===== SCHOOL STATS ===== */
.image-row .inner {
	border-radius: var(--border-radius);
	overflow: hidden;
}

.image-row .inner .imgBox {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.image-row .inner .imgBox::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
	z-index: 1;
}

.image-row .inner .imgBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.image-row .inner:hover .imgBox img {
	transform: scale(1.1);
}

.img-label {
	position: absolute;
	inset: auto 0 0;
	padding-bottom: 10px;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--white);
	z-index: 2;
}

/* importants */
.hm-eventBox .inner {
	height: 100%;
	padding: 1rem;
	display: grid;
	grid-template-rows: auto 320px auto;
	border: 1px solid rgb(255 255 255 / 10%);
}

.impDates .inner {
	background-color: var(--white);
	color: var(--text-color);
}

.hm-eventBox .heading {
	margin-bottom: 20px;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.eventOfMonth .heading {
	border-bottom-color: rgb(255 255 255 / 10%);
}

.impDates .heading {
	border-bottom-color: rgba(0, 0, 0, 0.1);
}

.impDatesContainer .scroller {
	height: 100%;
	padding-right: 10px;
}

.impDatesContainer li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.impDatesContainer li:not(:last-child) {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.date {
	flex: 0 0 70px;
	max-width: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
	background-color: var(--accent-color);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.date span {
	font-size: 1.75rem;
	font-weight: 700;
}

.date span sup {
	font-size: 50%;
}

.newtag {
	position: absolute;
	right: 10px;
	top: 0;
	padding: 5px 10px;
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
	background-color: red;
	border-radius: 0 0 5px 5px;
	transform: translateY(-5px);
	box-shadow: 2px 2px 12px rgb(0 0 0 / 40%);
	animation: blink 1s alternate infinite;
	z-index: 1;
}

@keyframes blink {
	0% {
		background-color: red;
	}

	50% {
		background-color: var(--primary-color);
	}
}

.newtag::before,
.newtag::after {
	content: '';
	position: absolute;
	top: 0;
	height: 5px;
	width: 5px;
	background-color: maroon;
	z-index: -1;
}

.newtag::before {
	left: -5px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.newtag::after {
	right: -5px;
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.hm-quickLinks .iconBox .inner {
	background-color: var(--light);
	color: var(--text-color);
	padding: 1rem;
	height: 100%;
}

.hm-quickLinks .iconBox .inner:hover {
	background-color: var(--accent-color);
	color: var(--white);
}

.hm-quickLinks .iconBox .inner .img-fluid {
	filter: none;
}

/* importants */

/* news & Events */
.newText .inside {
	padding-top: 1rem;
}

.newText h4 a {
	color: var(--body-color);
	font-weight: 700;
}

.newText h4 a:hover, .newsBox a:hover article h5 {
	text-decoration: underline;
	color: var(--primary-color);
}

.newsSlider {
	padding-bottom: 60px;
}

.newsBox a {
	color: var(--body-color);
}

.newsBox a:hover {
	text-decoration: underline;
}

.newsBox a article {
	padding-top: 1rem;
}

.newsBox a article h5 {
	font-weight: 700;
}

/* news & Events */

/* Sticky section */
.sticky-container {
	height: 400dvh;
}

.sticky-site-item {
	position: sticky;
	top: 0px;
	height: calc(100dvh - 0px);
	margin-right: 0;
	margin-left: auto;
}

.sticky-site-item1 {
	width: calc(100% - 7.7rem * 0);
}

.sticky-site-item2 {
	width: calc(100% - 7.7rem * 1);
}

.sticky-site-item3 {
	width: calc(100% - 7.7rem * 2);
}

.sticky-site-item4 {
	width: calc(100% - 7.7rem * 3);
}

.sticky-site-item5 {
	width: calc(100% - 7.7rem * 4);
}

.sticky-site-item6 {
	width: calc(100% - 7.7rem * 5);
}

.sticky-site-item-img.bg-image::before {
	background-color: rgb(0 0 0 / 40%);
	/* background: linear-gradient(98deg, #000000 5.92%, rgba(0, 0, 0, 0.6) 100%); */
}

.sticky-content {
	display: flex;
}

.sticky-btn {
	writing-mode: sideways-rl;
	background-color: rgb(0 0 0 / 40%);
	font-size: 3rem;
	color: var(--bs-warning);
	padding: 4rem 1.5rem;
	text-align: left;
	font-weight: 500;
	border: none;
}

.sticky-caption {
	display: flex;
	align-items: flex-end;
	padding: 7rem 10%;
}

.sticky-caption .inner {
	max-width: 600px;
}

.sticky-caption .cta-buttons {
	margin-top: 3rem;
}

/* Sticky section */
.bg-light-n {
	background-color: #eceef1 !important;
}

/* stats */
.stats .statsBox:not(:last-child) {
	border-right: 1px solid rgb(0 0 0 / 20%);
}

.bg-primary .stats .statsBox {
	border-right-color: rgb(255 255 255 / 15%);
}

.stats .statsBox span {
	font-weight: 700;
}

/* stats */

/* ===== WHAT'S HAPPENING SECTION ===== */
.whats-happening {
	background: var(--light-gray);
}

.section-title {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.view-all-link {
	color: var(--secondary-color);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: var(--transition);
}

.view-all-link:hover {
	color: var(--accent-color);
}

.section-divider {
	border: none;
	height: 2px;
	background: var(--border-color);
	margin: 20px 0 40px 0;
}

.featured-news {
	margin-bottom: 30px;
}

.featured-image {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: var(--border-radius);
	margin-bottom: 15px;
}

.news-date {
	color: var(--text-muted);
	font-size: 0.75rem;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.news-title {
	font-size: 1.625rem;
	color: var(--primary-color);
	font-family: var(--vintage-font);
	font-weight: 700;
	line-height: 1.3;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.news-thumbnail {
	width: 80px;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.news-content {
	flex: 1;
}

.news-title-small {
	font-size: 1.125rem;
	color: var(--secondary-color);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 5px;
	font-family: var(--vintage-font);
}

.quick-links {
	background: var(--primary-color);
	padding: 40px 30px;
	border-radius: var(--border-radius);
	position: relative;
	overflow: hidden;
}

.quick-links::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
	opacity: 0.3;
}

.quick-links-title {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.quick-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.quick-links-list li:not(:last-child) {
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-links-list a {
	color: var(--white);
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	transition: var(--transition);
	display: block;
	padding: 5px 0;
}

.quick-links-list a:hover {
	color: var(--accent-color);
}

.bottom-section {
	margin-top: 40px;
	padding: 20px;
	background-color: var(--secondary-color);
	border-radius: var(--border-radius);
}

.admission-enquiry {
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
}

.vacancy-btn a {
	background-color: var(--accent-color);
	color: var(--text-color);
	text-decoration: none;
	padding: 12px 25px;
	border-radius: 6px;
	font-weight: 600;
	transition: var(--transition);
	display: block;
}

.vacancy-btn a:hover {
	background-color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Principal */
/* .principals-message.padding{
  padding-bottom: 10rem;
} */
.principal-sign img {
	width: 180px;
	height: auto;
	object-fit: contain;
}

/* Principal */

/* ===== ADMISSIONS SECTION ===== */
.admissions-section {
	min-height: 70vh;
	background: linear-gradient(#00000012, #00000082), url(../images/school-drone.jpg) center / cover no-repeat fixed;
}

.min-vh-50 {
	min-height: 50vh;
}

.admissions-subtitle {
	font-size: 1.25rem;
	line-height: 1.5;
	opacity: .9;
	margin-bottom: 40px;
}

/* ===== FACTS SECTION ===== */
.facts-section {
	background: var(--light-gray);
}

.facts-title {
	font-size: 2.5rem;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 50px;
	font-weight: 700;
}

/* Gallery */
.charSlide {
	height: auto;
	width: 38%;
	display: flex;
	align-items: flex-end;
}

.charSlide.swiper-slide-active + .charSlide .img-fluid {
	height: 500px;
}

.charSlide .img-fluid {
	height: 440px;
	transform: scale(.9, .9);
	transform-origin: right bottom;
	transition: all 300ms linear;
}

.charSlide.swiper-slide-active .img-fluid {
	height: 500px;
	transform: scale(1, 1);
}

.swiper-slide-shadow-left, .swiper-slide-shadow-right {
	display: none;
}

.charSlide .imgBox {
	height: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.charSlide img {
	height: 100%;
	object-fit: cover;
}

.charSlide .caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: max-content;
	color: var(--primary-color);
	font-family: var(--serif);
	font-size: 5em;
	text-transform: uppercase;
	z-index: -1;
	opacity: 0;
	text-align: center;
	-webkit-box-reflect: below -2.75rem linear-gradient(to bottom, transparent 25%, rgba(0, 0, 0, 0.4));
}

.charSlide.swiper-slide-active .caption {
	opacity: 1;
}

.charSlide .imgBox .caption {
	color: #fff;
	text-shadow: 1px 1px 1px rgb(0 0 0 / 20%);
	z-index: 1;
}

/* Gallery */

/* Testimonials */
.testimBox .inner {
	height: 100%;
	display: block;
	background: #fff;
	border: 1px solid #ececec;
	padding: 0;
	transition: all 300ms ease-in-out;
}

.testimBox .inner:hover {
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	transform: translateY(-8px);
	-webkit-box-shadow: 0 50px 30px -40px rgb(0 0 0 / 10%);
	box-shadow: 0 50px 30px -40px rgb(0 0 0 / 10%);
}

.testimBox .inner article {
	padding: 2.25rem 1.9rem 3.5rem;
	border-bottom: 1px solid #ececec;
}

.testimBox .inner article p {
	margin-bottom: 10px;
	text-align: center;
}

.testimBox .inner .testim-footer {
	text-align: center;
}

.testimBox .inner .testim-footer .img-fluid {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	margin: -25px auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	color: var(--white);
	font-size: 1.5rem;
}

.testimBox .inner .testim-footer p strong {
	display: block;
	color: var(--secondary-color);
}

/* Testimonials */

/* PM Modal */
.vscroll {
	animation: scroll 3s linear infinite;
}

.vscroll[data-hover="stop"]:hover {
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

.pm-msg {
	height: 90vh;
}

/* PM Modal */

/* ===== FOOTER ===== */
.footer-section {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 60px 0 20px 0;
	position: relative;
	overflow: hidden;
}

.footer-brand {
	position: relative;
	z-index: 1;
}

.footer-logo {
	max-width: 240px;
	margin-bottom: 20px;
}

.footer-address {
	margin-bottom: 20px;
}

.footer-address p {
	margin-bottom: 10px;
	font-size: 0.9rem;
	opacity: 0.9;
}

.footer-quick-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-section a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--transition);
}

.footer-section a:hover {
	color: rgb(255 255 255 / 60%);
}

.footer-navigation,
.footer-heritage {
	position: relative;
	z-index: 1;
}

.footer-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--white);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 500;
	transition: var(--transition);
}

.footer-links a:hover {
	color: rgb(255 255 255 / 60%);
}

.heritage-text {
	line-height: 1.5;
	margin-bottom: 20px;
	opacity: 0.9;
}

.heritage-btn {
	background: transparent;
	color: var(--white);
	text-decoration: none;
	padding: 10px 20px;
	border: 1px solid color-mix(in srgb, var(--white), transparent 70%);
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: var(--transition);
	display: inline-block;
}

a.heritage-btn:hover {
	background: var(--white);
	color: var(--accent-color);
}

.back-to-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.back-to-top .back-to-top-btn {
	background: transparent;
	border: 2px solid var(--white);
	color: var(--white);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: var(--transition);
	cursor: pointer;
}

.back-to-top .back-to-top-btn:hover {
	background: var(--white);
	color: var(--accent-color);
	transform: translateY(-2px);
}

.back-to-top .back-to-top-text {
	font-size: 0.8rem;
	font-weight: 600;
	text-align: center;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.footer-utility-links {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.footer-utility-links a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.footer-utility-links a:not(:last-child)::after {
	content: '|';
	position: absolute;
	right: -10px;
	color: rgba(255, 255, 255, 0.3);
}

.footer-utility-links a:hover {
	color: rgb(255 255 255 / 60%);
}

/* inside page */
.inside-banner {
	height: 35vw;
	margin-top: var(--header-height);
}

.pageHeading {
	padding: 1rem 0;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.pageHeading .pageHeading-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pageHeading .pageHeading-inner .page-title {
	font: 700 2rem var(--serif-font);
	color: var(--primary-color);
}

.pageHeading .pageHeading-inner .breadcrumb {
	width: auto;
	background: none;
	margin-bottom: 0;
	padding-left: 0;
	justify-content: center;
}

.pageHeading .pageHeading-inner .breadcrumb li {
	font: 600 13px var(--primary-font);
	text-transform: uppercase;
}

.pageHeading .pageHeading-inner .breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
	float: none;
	content: "\f101";
	font: 900 13px "Font Awesome 6 Free";
}

.pageHeading .pageHeading-inner .breadcrumb li.active {
	color: var(--accent-color);
}

.pageHeading .pageHeading-inner .breadcrumb li a {
	color: inherit;
}

.pageHeading .pageHeading-inner .breadcrumb li a:hover {
	text-decoration: underline;
}

/* side menu */
.rightPanel .insideMenuBtn {
	display: none;
}

.rightPanel > .inner {
	background: var(--primary-color);
	background: radial-gradient(circle at 100% 150%, var(--secondary-color), var(--primary-color));
	padding: 1.5rem 1.25rem;
	position: sticky;
	top: 1rem;
}

.rightPanel > .inner .pageHeader {
	margin-bottom: 2rem;
}

.rightPanel > .inner .pageQuicklinks .iconBox .inner {
	display: flex;
	align-items: center;
	gap: 10px;
	background-color: var(--white);
	padding: 1rem;
	text-align: left;
}

.rightPanel > .inner .pageQuicklinks .iconBox .inner::before {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	clip-path: circle(0% at 50% 50%);
	transition: all 300ms linear;
	z-index: -1;
}

.rightPanel > .inner .pageQuicklinks .iconBox .inner:hover {
	color: var(--white);
}

.rightPanel > .inner .pageQuicklinks .iconBox .inner:hover::before {
	clip-path: circle(100% at 50% 50%);
	box-shadow: 0 10px 30px rgb(0 0 0 / 70%);
}

.rightPanel > .inner .pageQuicklinks .iconBox .inner:hover .img-fluid {
	filter: brightness(0) invert(1);
}

.rightPanel > .inner .pageQuicklinks .iconBox .inner .img-fluid {
	margin: 0;
	width: 35px;
	padding: 0;
}

.pageHeader .heading {
	padding-bottom: 10px;
	border-bottom: 1px solid rgb(255 255 255 / 15%);
	width: 100%;
}

.pageHeader .pageMenu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.875rem;
	text-transform: uppercase;
	padding: 10px 0;
	color: rgb(255 255 255 / 70%);
	position: relative;
	z-index: 1;
	border-left: 0 solid var(--white);
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

.pageHeader .pageMenu li a i {
	color: var(--white);
	transition: all 300ms ease-in-out;
}

.pageHeader .pageMenu li.active > a i {
	transform: rotate(180deg);
}

.pageHeader .pageMenu li a:hover, .pageHeader .pageMenu li.active > a {
	border-left-width: 4px;
	color: #fff;
	padding-left: 10px;
}

.pageHeader .pageMenu li.active > .page-dropmenu {
	display: block;
}

.page-dropmenu {
	display: none;
	padding: 0 15px;
}

.page-dropmenu li {
	margin-bottom: 0;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.mainTextBodySection:not(:last-of-type) {
	padding-bottom: 3rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mainTextBodySection .founder-img {
	position: relative;
	overflow: hidden;
}

.mainTextBodySection .founder-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.mainTextBodySection .founder-img .founderText {
	position: absolute;
	inset: auto 0 0;
	padding: 2rem;
	color: #c7c7c7;
}

/* 2 x N Grid */
.image-collage.parent {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(10, 1fr);
	gap: 1rem;
}

.image-collage.parent .div1 {
	grid-area: 1 / 1 / 3 / 2;
}

.image-collage.parent .div2 {
	grid-area: 3 / 1 / 6 / 2;
}

.image-collage.parent .div3 {
	grid-area: 6 / 1 / 8 / 2;
}

.image-collage.parent .div4 {
	grid-area: 8 / 1 / 11 / 2;
}

.image-collage.parent .div5 {
	grid-area: 1 / 2 / 4 / 3;
}

.image-collage.parent .div6 {
	grid-area: 4 / 2 / 7 / 3;
}

.image-collage.parent .div7 {
	grid-area: 7 / 2 / 9 / 3;
}

.image-collage.parent .div8 {
	grid-area: 9 / 2 / 11 / 3;
}

.image-collage.parent .div9 {
	grid-area: 11 / 1 / 13 / 2;
}

.image-collage.parent .div10 {
	grid-area: 11 / 2 / 13 / 3;
}

.image-collage.parent .collage-slide {
	background-color: var(--text-color);
}

.image-collage.parent .collage-slide:hover img {
	object-fit: contain;
}

/* 2 x N Grid */
/* inside page */
.modern-school-chronicles {
	margin-bottom: 1rem;
	box-shadow: 0 1px #ccc;
	padding-bottom: 9px;
}

.modern-school-chronicles p {
	margin-bottom: 5px;
}

/* imgContainerBox */
.imgContainerBox .imgBox {
	margin-top: 1rem;
}

.imgContainerBox .imgBox img,
.imgContainerBox .imgBox video {
	width: 100%;
	object-fit: cover;
	/* height: 100%; */
	aspect-ratio: 3 / 3;
}

.gallery-main .gallery-box {
	border: 1px solid rgb(0 0 0 / 10%);
}

.gallery-main img {
	object-fit: cover;
	height: 200px;
}

.gallery-main p {
	color: #000;
	margin: 0;
	padding: 10px;
	font-size: 14px;
	text-align: center;
	line-height: 1.21;
	height: 53px;
	overflow: auto;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
}

.gallery-img-box img {
	object-fit: cover;
	height: 220px;
}

.gallery-img-box {
	border: 1px solid rgb(0 0 0 / 10%);
	padding: 1px;
}