:root {
	--font-primary: "DM Serif Display", sans-serif;
	--font-secondary: "DM Sans", sans-serif;
	--color-primary: #660022;
	--color-heading: #660022;
	--color-secondary: #fdbd0f;
	--color-heading: #fff;
	--color-default: #000000;
	scroll-behavior: smooth;
}

body {
	color: var(--color-primary);
	line-height: 1.5rem;
	font-size: 1rem;
	font-family: var(--font-secondary);
	overflow-x: hidden !important;
	cursor: default;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	color: var(--color-default);
	font-family: var(--font-primary);
	font-weight: 400;
	font-size: 1.6rem;
}

body,
p,
div,
button,
span,
td,
th,
a {
	font-family: var(--font-secondary) !important;
	font-size: 1rem;
}

p,
span,
a {
	line-height: initial;
}

table,
th,
td {
	border: 0.0625rem solid #ddd;
	color: #000;
}

p,
a,
li {
	color: var(--color-default);
	font-family: var(--font-secondary);
}

li,
td,
button {
	font-size: 1rem;
}

.shadow {
	box-shadow: rgba(60, 64, 67, 0.3) 0rem 0.0625rem 0.125rem 0rem,
		rgba(60, 64, 67, 0.15) 0rem 0.125rem 0.375rem 0rem;
}

.homePage-sectionHeading {
	color: var(--color-heading);
	font-size: 1.875rem;
	font-weight: 600 !important;
	line-height: normal;
}

.homePage-sectionHeading-white {
	color: #ffffff;
	font-size: 1.875rem;
	font-weight: 600 !important;
	line-height: normal;
}

.black-text-heading {

	color: #475569;
	font-family: Poppins;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 33px;

}

.blue-text-heading {
	color: #673AB7;
	font-family: Poppins;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 54px;
	/* 150% */
}

a:hover {
	color: var(--color-primary);
}

/*End Basic CSS */

/* header */

/* ------- top menu ---------------- */

.top-menu-bg {
	position: relative;
	border-top: 4px solid #F88379;
	margin-bottom: 10px;
}

/* Gradient bottom border */
.top-menu-bg::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(270deg, #bababa 0%, rgba(255, 255, 255, 0) 100%);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.top-menu-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.top-menu-right {
	display: flex;
	justify-content: end !important;
}

.top-menu-left ul li a {
	color: #333 !important;
	font-weight: 400;
	font-family: var(--font-secondary);
	padding: 10px;
}

.top-menu-right ul li a {
	padding: 10px;
	color: #121010;
	font-family: "DM Sans" !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
}

.topbar-menu {
	z-index: 1021;
}

.menu-alignment {
	display: contents;
	width: 100%;
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
	align-items: center;
	justify-content: end !important;
}

@media (max-width: 992px) {
	.top-menu-mobile-view {
		border-top: 1px solid #676a6d !important;
	}

	.top-menu-mobile-view li a {
		color: var(--color-heading) !important;
	}
}





/* ================================
   HAMBURGER MENU BASE
================================ */
.hamburger-menu {
	position: relative;
	display: inline-block;
	right: -25px;
}

.hamburger-icon {
	width: 28px;
	height: 28px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.hamburger-icon:hover {
	transform: scale(1.1);
}

/* ================================
   MAIN DROPDOWN MENU
================================ */
.dropdown-menu-top {
	display: none;
	position: absolute;
	top: 35px;
	right: 0;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	list-style: none;
	padding: 8px 0;
	margin: 0;
	border-radius: 8px;
	min-width: 180px;
	z-index: 999;
}

.dropdown-menu-top li {
	position: relative;
	/* needed for submenu positioning */
	padding: 0px 0px;
}

.dropdown-menu-top li a {
	color: #333;
	text-decoration: none;
	display: block;
	font-family: Arial, sans-serif;
	padding: 6px 14px;
	transition: all 0.3s ease;
}

.dropdown-menu-top li a:hover {
	background-color: #660022;
	color: #fff !important;
}

/* Show dropdown when active */
.dropdown-menu-top.show {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.submenu {
	display: none;
	position: absolute;
	top: 0;
	right: 100%;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	list-style: none;
	padding: 8px 0;
	margin: 0;
	border-radius: 8px;
	min-width: max-content;
	z-index: 1000;
	animation: fadeInLeft 0.3s ease;
}

.submenu li a {
	padding: 6px 14px;
	font-size: 14px;
}

/* Hover to show submenu on desktop */
.has-submenu:hover>.submenu {
	display: block;
}

/* Hover effect consistency */
.submenu li a:hover {
	background-color: #660022;
	color: #fff !important;
}

/* Smooth appear animation for left dropdown */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-5px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ================================
   RESPONSIVE FIXES (for mobile)
================================ */
@media (max-width: 768px) {
	.dropdown-menu-top {
		position: static;
		box-shadow: none;
		min-width: 100%;
		border-radius: 0;
	}

	.dropdown-menu-top li {
		padding: 0;
	}

	.dropdown-menu-top li a {
		padding: 10px 15px;
	}

	/* Submenu stacked view */
	.submenu {
		position: static;
		display: none;
		box-shadow: none;
		padding-left: 15px;
		border-left: 2px solid #eee;
		animation: none;
	}

	/* Arrow for mobile submenu */
	.dropdown-menu-top .has-submenu>a::after {
		content: "▼";
		float: right;
	}

	/* Toggle submenu visibility on mobile */
	.has-submenu.open>.submenu {
		display: block;
	}

	.has-submenu.open>a {
		color: #660022;
		font-weight: bold;
	}
}


/* top menu end */

/*  header College Name */

.header-logo {
	max-width: 140px;
	margin-top: 0px;
	margin-bottom: 12px;
}

.headermobile-img {
	width: 300px;
}

.site-header {
	text-align: center;
	padding: 10px;
}

.logo-holder,
.title-holder {
	display: inline-block;
	vertical-align: top;
}

.collegve-title {
	margin-left: 40px;
}

.header-college-name {
	font-family: "DM Serif Display" !important;
	font-size: 41px;
	font-style: normal;
	font-weight: 400;
	line-height: 45px;
	color: #660032;
	margin: 0px !important;
}

.head-line {
	color: #6E6E6E;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.header-row {
	margin-top: -47px;
}

.head-line-1.mt-2 {
	color: #030303;
	font-family: "DM Sans" !important;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0px !important;
}

/* .college-logo {
	text-align: right;
} */

/* ------- Main Menu ---------------- */
.main-menu-bg {
	font-family: var(--font-secondary);
	background: #ECECEC;
}

.main-menu .navbar-nav .nav-item a,
.second-menu li a {
	padding: 12px 10px;
	font-family: var(--font-secondary);
	color: #121010;
	font-family: "DM Sans" !important;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
}

.second-menu ul li a {
	color: #fff !important;
}

.main-menu .dropdown-menu a,
.main-menu .dropdown-item:hover {
	/* color: #fff !important; */
	/* background-color: var(--color-primary); */
	color: black !important;
	background-color: white;
	cursor: pointer;
	padding: 9px 10px !important;
}

.main-menu .dropdown-item:hover {
	background-color: #660032;
	color: #ffffff !important;
}

.web-cust-menu {
	justify-content: center !important;
}

.dropdown-menu li a:hover {
	color: #fff !important;
	border-radius: unset !important;
}

.main-menu .navbar-nav .nav-item a.active,
.second-menu li a.active {
	font-weight: 500;
	border-radius: 5px;
	background: #660032 !important;
	color: #fff !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	font-weight: 500;
	border-radius: 5px;
	background: #660032 !important;
	color: #fff !important;
}

.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-nav .nav-link.active {
	font-weight: 500;
	border-radius: 5px;
	background: #660032 !important;
	color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link:focus {
	font-weight: 500;
	border-radius: 5px;
	background: #660032 !important;
	color: #fff !important;
}

.navbar-nav .dropdown-menu li {
	border-bottom: 1px solid #cabe76 !important;
	font-weight: 500;
	border-radius: 5px;
	background: #660032 !important;
	color: #fff !important;
}

.navbar-nav .dropdown-menu li a.active {
	border-bottom: 1px solid #cabe76 !important;
}

.topbar-menu .navbar-nav .dropdown-menu li {
	border-bottom: 1px solid var(--color-secondary) !important;
}

.navbar-nav .dropdown-menu li:last-child {
	border-bottom: 0px !important;
}

.top-menu #navbarNavDropdown {
	justify-content: end !important;
}

nav#main_navbar {
	margin-bottom: 0px;
}

.dropdown-menu>li a:hover,
.dropdown-menu>li.show {
	background-color: var(--color-secondary);
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
	width: max-content;
	position: absolute;
	/* background-color: var(--color-primary); */
}



.web-cust-menu .navbar-nav.second-menu>.nav-item {
	position: relative;
	margin-right: 15px;
	/* optional spacing */
}

.web-cust-menu .navbar-nav.second-menu>.nav-item::after {
	content: "";
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 26px;
	background: #D9D0D0;
}

/* Remove border for last menu item */
.web-cust-menu .navbar-nav.second-menu>.nav-item:last-child::after {
	display: none;
}

/* Home slider start */
section.home-slider-sec {
	background: linear-gradient(176deg, rgba(255, 255, 255, 0.00) 60.78%, #DBDBDB 105.79%);
	position: relative;
}

.banner-slider {
	/* border-radius: 20px; */
	margin-top: 30px;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
	/* width: 3rem;
	height: 3rem; */
	/* border-radius: 3rem;
	background-color: #ffffff;
	border: 10px solid #ffffff; */
}

#header-carousel .carousel-control-prev {
	position: relative;
	left: 0px !important;
	top: -284px;
	z-index: 3;
	display: inline-block;
	align-items: center;
	justify-content: center;
	width: 4%;
	padding: 0;
	color: #fff;
	text-align: center;
	background: none;
	border: 0;
	opacity: 1;
}

#header-carousel .carousel-control-next {
	position: relative;
	top: -284px;
	z-index: 3;
	display: inline-block;
	align-items: center;
	justify-content: center;
	width: 4%;
	padding: 0;
	color: #fff;
	text-align: center;
	background: none;
	border: 0;
	opacity: 1;
	float: right;
}

.banner-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover !important;
	display: block;
}

.banner-slider::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(207deg, rgba(0, 0, 0, 0.00) 28.42%, #000 106.73%);
	z-index: 1;
	pointer-events: none;
	height: 550px;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
	filter: none !important;
}

#header-carousel .carousel-control-prev-icon {
	background-image: url("../img/home-left.svg");
	width: 35px;
	height: 35px;
}

#header-carousel .carousel-control-next-icon {
	background-image: url("../img/home-right.svg");
	width: 35px;
	height: 35px;
}

.banner-slider img {
	background: var(--color-primary);
	height: 550px;
	object-fit: cover !important;
	position: relative;
	overflow: hidden;
}

.carousel-caption {
	font-family: var(--font-secondary) !important;
	color: var(--color-default);
}

.carousel-caption span {
	font-size: 28px;
	font-weight: 600;
	font-family: var(--font-primary);
	font-style: normal;
	background: rgba(46, 46, 46, 0.5);
	padding: 10px 12px;
	border-radius: 5px;
}

.carousel-caption p {
	padding-top: 1.125rem;
}

.indicators li {
	list-style: none;
}

.indicators {
	align-items: center;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.indicators li {
	background-color: #cbcbcb;
	border-radius: 50%;
	width: 9px;
	height: 9px;
	margin: 0 5px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.indicators li.active {
	width: 60px;
	height: 9px;
	border-radius: 30px;
	background: #cbcbcb;
}

.indicators-container {
	display: flex;
	justify-content: start !important;
}

.home-slider-text {
	position: absolute;
	width: 600px;
	flex-shrink: 0;
	background: #660032;
	padding: 15px 35px;
	justify-content: space-between;
	bottom: 35px;
	left: 10%;
	z-index: 3;
}

.home-slider-text p {
	color: #FFF;
	font-family: Marcellus !important;
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/* news marquee start */

.importantNews-section {
	align-items: center;
	padding: 8px;
	top: -44px;
	position: relative;
	display: flex;
	padding-left: 0;
	height: 36px;
	background: #ffc454 !important;
}

.slider-news a {
	color: #000;
	text-align: center;
	font-family: Calibri;
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
	line-height: 30px;
}

.marquee-news-heading {
	width: 13%;
	color: #333;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	padding: 7px 12px;
	margin: 0;
}

.marquee-news-heading::after {
	content: "|";
	margin-left: 40px;
	font-size: 14px;
	font-weight: 700;
	color: #333;
}

.news-events .homePage-sectionHeading {
	margin: 0;
	padding: 8px 0px;
	border-radius: 10px 10px 0px 0px;
	background: #fff;
	box-shadow: 4px 0px 8px 2px rgba(0, 0, 0, 0.15);
}

.slider-news a {
	color: #333;
	font-family: var(--font-secondary);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.carousel-caption {
	display: flex;
	text-align: start;
	font-family: var(--font-secondary) !important;
	color: var(--color-default);
}

.carousel-caption h5::before {
	content: "";
	width: 40px;
	height: 4px;
	display: inline-block;
	background: #d00000;
	margin: 4px 10px;
}

/*  Home slider end */

/* news marquee start */
.news-section {
	border-radius: 10px;
	border: 1px solid rgba(172, 169, 158, 0.40);
	background: #FFF;
	box-shadow: 3px 4px 30px 0 rgba(186, 151, 104, 0.20);
	padding: 20px;
	height: 497px;
	position: relative;
	width: 395px;
}

.news-arrow {
	position: absolute;
	top: 0px;
	right: 0px;
}

.news-heading {
	color: #660032;
	font-family: "DM Sans";
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 46px;
	text-transform: capitalize;
}

.news-circular {
	height: 380px;
}

.news-date {
	margin-right: 25px;
	margin-bottom: 0px;
	float: left;
	text-transform: uppercase;
	text-align: center;
	color: white !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	border-radius: 4px 0px 0px 4px;
	background: var(--color-primary);
	width: 95px;
	padding: 12px 24px;
	font-family: var(--font-secondary);
}

.news-date::first-line {
	color: white !important;
	font-size: 20px !important;
	font-family: var(--font-secondary);
	font-weight: 600 !important;
}

.view-all {
	text-align: -webkit-right;
}

.holder ul li {
	border: unset;
	height: unset;
	margin: 10px;
	border-radius: 6px;
	display: flex;
	align-items: center;
}

.holder ul li a {
	padding-bottom: 4px;
	text-decoration: none;
	color: #333;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.holder ul {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

.holder-news ul li {
	border-radius: 8px;
	border: 1px solid #b2b2b2;
	height: 200px;
	margin: 10px;
	padding: 10px;
	list-style: none;
}

.holder-news {
	position: relative;
	height: 420px !important;
	overflow-y: scroll !important;
}

.holder ul li a {
	padding: 1px 0px;
	overflow-wrap: anywhere;
	color: #434343;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	/* line-height: 46px; */
	text-transform: capitalize;
}

.holder ul li i {
	color: var(--color-secondary);
	font-size: 15px;
	margin-right: 10px;
}

.holder ul li span {
	color: var(--color-heading);
	font-size: 15px;
}

.holder-news ul {
	padding: 0;
}

.holder {
	position: relative;
	height: 384px !important;
	/* overflow-y: unset !important; */
	left: -11px;
	width: 374px;
}

.holder::-webkit-scrollbar {
	margin: 0px 10px;
	width: 5px;
	border-radius: 24px;
	background: #e0e0e0;
}

.holder::-webkit-scrollbar-thumb {
	width: 5px;
	border-radius: 24px;
	background: #a1a1a1;
}

.holder::-webkit-scrollbar {
	margin: 0px 10px;
	width: 5px;
	border-radius: 24px;
	background: #e0e0e0;
}

.holder::-webkit-scrollbar-thumb {
	width: 5px;
	border-radius: 24px;
	background: #a1a1a1;
}

h2.news-main-head {
	font-family: "DM Serif Display";
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
}

.news-item-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	padding: 6px 0;
}

.news-title {
	flex: 1;
	text-decoration: none;
	color: #333;
	font-weight: 500;
}

.news-title:hover {
	text-decoration: underline;
}

.view-link {
	color: #660032 !important;
	text-decoration: underline !important;
}

/* events */
.event-outer {
	height: 498px;
	border-radius: 10px;
	border: 1px solid rgba(172, 169, 158, 0.40);
	background: #FFF;
	box-shadow: 3px 4px 30px 0 rgba(186, 151, 104, 0.20);
	padding: 48px 20px;
	position: relative;
	width: 395px;
}

.myTicker2 {
	position: relative;
	height: 420px !important;
	overflow: hidden !important;
	justify-content: center;
}

.myTicker2 ul {
	display: flex;
	position: absolute;
	white-space: nowrap;
}

.events-container {
	width: 100%;
}

.events-details img {
	height: 100%;
	width: 100%;
}

figcaption span {
	color: #5e35a7;
	font-family: Poppins;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 33px;
	padding-bottom: 0px;
}

figcaption {
	padding: 10px 20px;
}

figure p {
	padding: 0;
	margin: 0;
	overflow: hidden;
	color: #333;
	text-overflow: ellipsis;
	font-family: var(--font-secondary);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.events-container {
	overflow: hidden;
	/* border-radius: 24px; */
	background: #f0ebf8;
	border: 1px solid #B9B3B3;
	background: linear-gradient(180deg, #FFF 0%, #DEDEDE 50%, #FFF 99.99%);
	width: 328px;
	height: 423px;
}

.event-view-btn a {
	color: white;
	border-radius: 12px;
	background: #5e35a7;
	display: flex;
	padding: 11px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}

/* about-institute */

.about-institute h1 {
	color: #475569;
	font-family: Poppins;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 33px;
}

.about-institute h2 {
	color: #e89800;
	font-family: Poppins;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 54px;
}

.about-institute p {
	color: #333;
	text-align: justify;
	font-family: Roboto;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	/* 150% */
}

.apply-now {
	color: white;
	padding: 12px 24px;
	border-radius: 12px;
	background: #e89800;
	box-shadow: 127px 99px 45px 0px rgba(255, 205, 57, 0),
		81px 64px 41px 0px rgba(255, 205, 57, 0.03),
		46px 36px 35px 0px rgba(255, 205, 57, 0.09),
		20px 16px 26px 0px rgba(255, 205, 57, 0.15),
		5px 4px 14px 0px rgba(255, 205, 57, 0.18);
}

.read-more {
	color: #e89800;
	font-weight: 600;
	line-height: 24px;
	text-decoration-line: underline;
	padding: 12px 24px;
	border-radius: 12px;
}

.about-institute {
	position: relative;
	background-image: url(../img/style-circles.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}

.about-college-info {
	position: relative;
}

.vision-mission-box {
	display: flex;
	bottom: 100px;
	position: relative;
	justify-content: space-around;
}

.mission-box {
	height: fit-content;
	display: flex;
	width: 302px;
	padding: 24px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	border-radius: 24px;
	background: #f0ebf8;
}

.vision-box {
	height: fit-content;
	border-radius: 24px;
	background: #fff9e6;
	display: flex;
	width: 302px;
	padding: 24px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.mission-box h2 {
	color: #673ab7;
	font-family: Poppins;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 54px;
	opacity: 0.3;
}

.mission-box span {
	color: #673ab7;
	font-family: Poppins !important;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 33px;
}

.mission-box p {
	overflow: hidden;
	color: #333;
	text-overflow: ellipsis;
	font-weight: 400;
	line-height: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.mission-box a {
	color: #673ab7;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	text-decoration-line: underline;
	float: left;
}

.vision-box h2 {
	color: #e89800;
	font-family: Poppins;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 54px;
	opacity: 0.3;
}

.vision-box span {
	color: #e89800;
	font-family: Poppins !important;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 33px;
}

.vision-box p {
	overflow: hidden;
	color: #333;
	text-overflow: ellipsis;
	font-weight: 400;
	line-height: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.vision-box a {
	color: #e89800;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	text-decoration-line: underline;
	float: left;
}

/* department-section */

.department-section {
	background: #fff9e6;
	position: relative;
}

.department-image-container {
	position: relative;
}

.dept-info {
	left: 58%;
	transform: translate(-50%, -50%);
	bottom: -160px;
	position: absolute;
	height: fit-content;
	display: flex;
	width: 253px;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	border-radius: 31px;
	background: #f0ebf8;
}

.dept-info h2 {
	color: #673ab7;
	font-family: Poppins;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 33px;
	opacity: 0.3;
}

/* .dept-info h2::after {
	content: "\"";
	color: #673AB7;
	font-family: 'Inter', sans-serif;
	font-size: 64px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
  } */

.dept-info span {
	margin-top: -36px;
	color: #673ab7;
	font-family: Poppins;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 54px;
}

.dept-info p {
	overflow: hidden;
	color: #333;
	text-overflow: ellipsis;
	font-weight: 400;
	line-height: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.dept-info a {
	color: #673ab7;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	text-decoration-line: underline;
	float: left;
}

.about-college-info img {
	border: 4px solid white;
	border-radius: 24px;
	height: 297px;
	width: 60rem;

}

.custom-nav-tabs .custom-nav-link {
	padding: 16px;
	border: none;
	color: #997bcf;
	font-weight: bold;
	background-color: #f0ebf8;
	clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
}

.custom-nav-tabs .custom-nav-link.active {
	background-color: #673ab7;
	color: #f0ebf8;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	clip-path: polygon(0 0, 76% 0, 100% 100%, 0% 100%);
}

.custom-tab-content {
	padding: 20px;
	background-color: #673ab7;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	margin-top: -10px;
}

.contentclass {
	background-color: #f5f0ff;
	max-width: 600px;
	margin: 20px auto;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contentclass ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.contentclass li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	padding: 8px 12px;
	cursor: pointer;
	filter: drop-shadow(-1px 2px 15px rgba(0, 0, 0, 0.10));
	flex-shrink: 0;
	-webkit-filter: drop-shadow(-1px 2px 15px rgba(0, 0, 0, 0.10));
}

.contentclass li:hover {
	background-color: #eee;
}

.contentclass li::after {
	content: '>';
	color: #502a8d;
	position: absolute;
	right: 25px;
	font-family: 'Poppins';
	font-size: x-large;
}

@media (max-width: 480px) {
	.contentclass ul {
		grid-template-columns: 1fr;
	}
}

.custom-nav-tabs .nav-item {
	flex: 1 !important;
}


/* Placement cell new */
/* Adjust image sizes for responsiveness */
.placement-section img {
	height: 300px;
	width: 300px;
}

@media (min-width: 768px) {
	.placement-section img {
		height: 350px;
		width: 350px;
	}
}

@media (min-width: 992px) {
	.placement-section img {
		height: 400px;
		width: 400px;
	}
}

.placement-section {
	padding-top: 244px;
	position: relative;
	background-image: url(../img/style-circles.png);
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
	margin-bottom: 6rem;
	top: 60px;
}

.placement-section img {
	height: 400px;
	width: 400px;
}


.placement-card {
	background-color: #fff;
	box-shadow: 33px 33px 85px rgba(0, 0, 0, 0.3);
	border-radius: 26px;
	padding: 28px;
	text-align: center;
	box-sizing: border-box;
}


.placement-card img {
	max-width: 100%;
	height: auto;
}

.placement-heading {
	text-align: right;
	color: #f68b1f;
	position: relative;
	width: 100%;
	top: -68px;
}

/* .placement-heading::before{
	content: "";
	width: 564px;
	height: 564px;
	flex-shrink: 0;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), #FFE4B0;
	border-radius: 564px;
	position: absolute;
    z-index: 1000;
} */

.placement-heading h2 {
	font-size: 1.0rem;
}

.placement-heading h1 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #f68b1f;
	padding-bottom: 20px;
}

.placement-heading .btn-apply {
	background-color: #f68b1f;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: bold;
}

.placement-heading .btn-apply:hover {
	background-color: #d76b1a;
}

@media (min-width: 768px) {
	.placement-heading {
		text-align: right;
		/* Align to the right for medium screens and above */
		top: -40px;
		right: -30px;
	}
}

@media (min-width: 992px) {
	.placement-heading {
		top: -135px;
		right: -58px;
	}
}

.placement-heading h2 {
	font-size: 1.25rem;
	padding: 2px;
	font-weight: bold;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.placement-heading h2 {
		font-size: 1.75rem;
	}
}

.placement-heading .btn-apply {
	background-color: #f68b1f;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: bold;
	font-size: 1rem;
}

.placement-heading .btn-apply:hover {
	background-color: #d76b1a;
	transform: scale(1.05);
	transition: all 0.3s ease;
}

/* Adjusting padding and layout for small devices */
@media (max-width: 575.98px) {
	.placement-section {
		padding-top: 50px;
		margin-bottom: 2rem;
	}

	.placement-heading {
		text-align: center;
		top: 0;
		right: 0;
		margin-top: 0;
	}

	.placement-card {
		padding: 15px;
		border-radius: 12px;
	}

	.placement-heading h2 {
		font-size: 1.25rem;
	}

	.placement-heading .btn-apply {
		padding: 8px 16px;
		font-size: 0.9rem;
	}
}



/* home page quick links */

.section-back {
	background-color: var(--color-primary);
}

.segment-item p {
	margin-bottom: 0px;
	color: white;
	font-size: 18px;
	font-weight: 500;
}

.segment-item img:hover {
	transform: rotateY(360deg);
}

.segment-item img {
	width: 65px;
	margin: auto;
	transition: all 0.9s;
}

.segment-item .icon-holder {
	border-radius: 50%;
	height: 79px;
	width: 79px;
	margin: auto;
	margin-bottom: auto;
}

/* home page quick links */

/*  Departments Home Dept */

.departments .departments-item {
	box-sizing: content-box;
	margin: 30px 25px;
	box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
	position: relative;
	background: #fff;
	border-radius: 10px;
}

/* Photo Gallery start*/

/* .photo-gallerys-section {
	background-color: var(--color-primary);
}

.photo-gallerys-section ul li.nav-item button {
	width: 200px;
	font-weight: 600;
	font-size: 20px !important;
	color: #b2b2b2 !important;
	border: 2px solid #b2b2b2 !important;
	padding: 7px 15px;
	border-radius: 17px;
	background-color: var(--color-primary);
}

.photo-gallerys-section ul li.nav-item {
	margin: 0 auto;
	margin-bottom: 20px;
}

.photo-gallerys-section ul li.nav-item button.active {
	background-color: #ffffff !important;
	color: var(--color-primary) !important;
	font-weight: 600;
}

.photo-gallery-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	border: 2px solid white;
  } */
/* .gallery-container {
	position: relative;
	padding: 20px;
  }
  
  .gallery-heading {
	margin-bottom: 20px;
	text-align: center;
  }
  
  .gallery-heading h1 {
	font-size: 2rem;
	color: #333;
	margin-bottom: 10px;
  }
  
  .gallery-heading p {
	font-size: 2.5rem;
	color: #642ea4;
	font-weight: bold;
  }
  
  .explore-btn {
	background-color: #6c63ff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	margin-top: 10px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
  }
  
  .explore-btn:hover {
	background-color: #5748d4;
  }
  
  .tabs1 {
	text-align: center;
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
  }
  
  .tabs1 a {
	color: #a735c6c9;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	padding: 5px 10px;
	transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
  }
  
  .tabs1 a.active {
	color: #733db4;
	border-bottom: 2px solid #9e24ea;
  }
  
  .line {
	display: flex;
	justify-content: center;
	gap: 15px;
  }
  
  .line li {
	list-style: none;
  }
  
  .image-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
	margin-top: 20px;
  }
  
  .image-grid img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	object-fit: cover;
  }
  
  .photo-events {
	margin-top: 20px;
	position: relative;
  }
  
  .photo-gallery {
	position: relative;
  }
  
  .second-grid {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
  }
  
  .img-pure {
	height: 300px;
	width: 350px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
  }
  
  .img-pure:hover {
	transform: scale(1.05);
  }
   */

.photo-g-tab-btn {
	display: flex;
	justify-content: space-evenly;

}

.photo-g-tab-btn button {
	border: none;
	outline: none;
	background: none;
	color: #997BCF;
	font-weight: bold;
	position: relative;
	font-size: 16px;
	transition: color 0.3s ease, text-decoration 0.3s ease;
}

.photo-g-tab-btn button:hover {
	color: #673AB7;
}

.photo-g-tab-btn button .active {
	color: #673AB7;
	font-family: Poppins;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 33px;
}

.photo-g-tab-btn button.active::after {
	content: "";
	display: block;
	height: 3px;
	width: 100%;
	background-color: #673AB7;
	margin: 5px auto 0;
	transition: width 0.3s ease;
}

.photo-g-tab-btn button::after {
	content: "";
	display: block;
	height: 3px;
	width: 0;
	background-color: transparent;
	transition: width 0.3s ease;
}

.photo-g-tab-btn button:hover::after {
	width: 50%;
	background-color: #997BCF;
}

.photo-gallery-headings {
	gap: 20px;
}

.photo-g-heading button {
	border: none;
	outline: none;
	display: flex;
	padding: 12px 24px;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	border-radius: 12px;
	background: #673AB7;
	box-shadow: 139px 109px 50px 0px rgba(103, 58, 183, 0.00), 89px 70px 45px 0px rgba(103, 58, 183, 0.03), 50px 39px 38px 0px rgba(103, 58, 183, 0.09), 22px 17px 28px 0px rgba(103, 58, 183, 0.15), 6px 4px 16px 0px rgba(103, 58, 183, 0.18);
}

.photo-g-heading button a {
	color: white;
	font-weight: 600;
}

.home-photo-gallery-imgs img {
	height: 100%;
	height: 212px;
}

.home-photo-gallery-imgs .row {
	gap: 10px 0px;
}


.home-photo-gallery-imgs {
	top: 10px;
	position: relative;
	padding: 20px;
}

.gallery-grid {
	justify-content: end;
	display: flex;
	gap: 16px;
}

.gallery-grid a {
	text-align: center;
	display: block;
}

.gallery-grid img {
	display: block;
	border-radius: 8px;

}

.gallery-grid img:hover {
	transform: scale(1.05);
	/* Slightly enlarge on hover */

}

.heading-tabs {
	top: -20px;
	position: absolute;
}

.home-photo-gallery {
	background-image: url(../img/Photogallery.png);
}

/* Media query for tablets (max-width: 991px) */
@media (max-width: 991px) {
	.photo-g-tab-btn {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: center;
		/* Center tabs on smaller screens */
	}

	.gallery-grid {
		justify-content: center;
		/* Center align gallery items */
	}

	.gallery-grid a {
		flex: 1 1 calc(33.33% - 16px);
		/* 3 columns on medium screens */
		max-width: calc(33.33% - 16px);
	}
}

/* Media query for mobile devices (max-width: 767px) */
@media (max-width: 767px) {
	.photo-g-tab-btn {
		flex-direction: column;
		/* Stack tabs vertically */
		align-items: center;
	}

	.photo-g-tab-btn button {
		font-size: 14px;
	}

	.gallery-grid a {
		flex: 1 1 calc(50% - 16px);
		/* 2 columns on small screens */
		max-width: calc(50% - 16px);
	}

	.photo-gallery-headings {
		text-align: center;
		gap: 10px;
	}

	.photo-g-heading h1,
	.photo-g-heading h2 {
		font-size: 18px;
		line-height: 1.2;
	}
}

/* Media query for small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
	.gallery-grid a {
		flex: 1 1 100%;
		/* 1 column on extra small screens */
		max-width: 100%;
	}

	.home-photo-gallery-imgs img {
		height: auto;
		/* Auto height for better scaling */
	}

	.photo-g-heading h1 {
		font-size: 16px;
	}

	.photo-g-heading h2 {
		font-size: 14px;
	}

	.photo-g-tab-btn button {
		font-size: 12px;
	}
}


/* testimonial start */
/* .testimonials-section {
	padding: 60px 30px;
}

.testimonials-title {
	color: #475569;

	font-family: Poppins;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 33px; 
}

.testimonials-subtitle {
	color: #E89800;

	font-family: Poppins;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	line-height: 54px; 
}

.join-alumni {
	font-weight: bold;
	font-size: 1rem;
	color: #ff8500;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.join-alumni:hover {
	color: #ff9f1c;
}

.testimonial-card {
	border: none;
	border-radius: 10px;
	background-color:#F0EBF8;
	box-shadow: 389px 410px 158px 0px rgba(118, 118, 118, 0.00), 249px 263px 145px 0px rgba(118, 118, 118, 0.03), 140px 148px 122px 0px rgba(118, 118, 118, 0.09), 62px 66px 90px 0px rgba(118, 118, 118, 0.15), 16px 16px 50px 0px rgba(118, 118, 118, 0.18);
	padding: 20px;
	margin: 20px 0;
}

.testimonial-quote {
	font-size: 1rem;
	line-height: 1.6;
	color: #333333;
}

.testimonial-author {
	font-weight: bold;
	font-size: 1rem;
	color: #333333;
}

.testimonial-details {
	font-size: 0.9rem;
	color: #777777;
}

.profile-pic {
	border-radius: 50%;
	width: 60px;
	height: 60px;
	object-fit: cover;
}
 
.owl-carousel-testimonial .owl-stage {
	margin-right: -80px; 
	padding-right: 80px; 
  } */

.testimonials-section {
	padding: 3rem 1rem;
	border-radius: 20px;
	position: relative;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	background-image: url(../img/stylecircle.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.section-title {
	font-size: 22px;
	color: #E6BE8A;
	margin-bottom: 5px;
	font-weight: 600;
}


.section-subtitle {
	font-size: 32px;
	color: #ff9f3a;
	font-weight: 600;
}

.join-alumni-link {
	font-size: 18px;
	color: #f78e1e;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	transition: color 0.3s ease-in-out;
}

.join-alumni-link:hover {
	color: #e67600;
}

.testimonial-card {
	background-color: #fefeff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	margin: 0 15px;
	border: none;
	border-radius: 10px;
	background-color: #F0EBF8;
	padding: 20px;
	margin: 20px 0;
}

.testimonial-text {
	font-size: 16px;
	color: #555555;
	line-height: 1.8;
	position: relative;
}

.testimonial-text .quote {
	font-size: 32px;
	color: #ff9f3a;
	vertical-align: top;
}

.testimonial-profile {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.profile-img {
	border-radius: 50%;
	width: 50px !important;
	height: 50px;
	margin-right: 15px;
}

.testimonial-profile h4 {
	font-size: 18px;
	font-weight: bold;
	color: #333333;
	margin: 0;
}

.testimonial-profile p {
	font-size: 14px;
	color: #666666;
	margin: 2px 0;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	/* padding-left: 17px !important; */
	-moz-backface-visibility: hidden
}

/* testimonial end  */
/* contact start */

.get-directions {
	border-radius: 10px;
	top: 70%;
	transform: translate(7%, -50%);
	right: -43px;
	position: absolute;
	max-width: fit-content;

}

/* .get-directions a {
		position: relative;
		color: white;
		text-decoration: none;
		font-size: 11px !important;
		top: 38px;
		right: -28px;
} */

.left-side {
	position: relative;
	left: 0px;
	/* background-image: url(../img/Rectangle 4163 (2).svg); */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* z-index: 1000; */
	/* padding: 20px;*/
}

/* .firstcolumn{
	top: -100px;
    position: relative;
    left: -80px;
	line-height: 50px;
} */
.firstcolumn {
	top: -100px;
	position: relative;
	/* height: 323px; */
	/* width: 416px; */
	left: -65px;
	line-height: 50px;
}

.footer-section {
	position: relative;
}

.footer-section iframe {
	border-radius: 12px;
}

.footer {
	/* padding-top: 157px; */
	overflow: hidden;
	padding: 0px;
	background-color: #660032;
}

.firstset {
	position: relative;
	/* top: -300px; */
	/* z-index: revert-layer; */
	display: inline-flex;
}

/* .firstset::before {
	content: url("../img/Rectangle 4163 (2).svg");
	position: absolute;
	left: 0;
	left: -130px;
	top: -213px;
} */

.firstcolumn img {
	display: block;
	margin: 0 auto 15px;
	/* Center the logo and add bottom spacing */
	max-width: 150px;
	/* Restrict the image size */
}

/* .footer-section::before {
	content: url("../img/Wave.svg");
	position: absolute;
	bottom: 0px;
	top: 250px;
} */

/* .get-directions{
	background-image: url("../img/arrow.png");
	background-repeat: no-repeat;
	position: absolute;
    left: 378px;
    top: 222px;
    z-index: 1;
	color: #FFF;
} */

/* contact end  */
/* ------Home page Section start--------- */

.bred-img1 {
	background-image: url("../img/mnwc-bred.png") !important;
	height: 341px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--color-primary);
}

.bred-pos {
	position: relative;
	top: -123px;
	margin-top: -79px !important;
	left: -18px;
}

.bred-pos .bred-head {
	text-align: left;
	padding-top: 0px;
	margin-bottom: 0px;
	text-transform: capitalize !important;
	padding-left: 0px;
	color: #D4AF37;
	font-family: "DM Sans" !important;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

/* .footer-section {
    background-color: #660032;
} */



.right-res p,
.right-res a,
.right-res span {
	color: #FFF;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 20px;
}

.footer-section p,
.footer-section a,
.footer-section span {
	font-style: normal;
	font-size: 18px;
}

.right-res p a {
	text-decoration: underline !important;
}

.right-res p a:hover {
	text-decoration: none !important;
}

h2.quick-head-back-event {
	background-color: #ff9f2a;
	margin-bottom: 0px;
	padding: 7px 7px 10px 20px;
	color: #fff;
	border-radius: 10px 10px 0px 0px;
}

.footer-section h2,
.footer-section h3 {
	font-style: normal;
	font-weight: 600 !important;
}

a.email {
	text-decoration: underline;
}

.footer-section a:hover {
	color: white;
}

.social-icon .twitter img {
	filter: invert(1) grayscale(100);
	-webkit-text-stroke: 0.9px;
}

/* Styles for website counter container */
.website-counter {
	font-size: 28px !important;
	color: var(--color-default);
}

/* Styles for reset button */
#reset {
	margin-top: 20px;
	background-color: #008cba;
	cursor: pointer;
	font-size: 18px !important;
	padding: 8px 20px;
	color: white;
	border: 0;
}

/* Footer section end */


/* breadcrumb */

.bred-img {
	background-image: url("../img/mnwc-bred.png");
	height: 341px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--color-primary) !important;
}

.bred-head {
	text-align: left;
	padding-top: 130px;
	margin-bottom: 0px;
	text-transform: capitalize !important;
	padding-left: 0px;
	color: #D4AF37;
	font-family: "DM Sans" !important;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.breadcrumb {
	justify-content: left;
	width: auto;
	align-items: center;
	/* margin: 6px auto auto auto; */
}

.breadcrumb li a,
.breadcrumb-item+.breadcrumb-item::before {
	color: #D4AF37;
	text-align: center;
	font-family: "DM Sans" !important;
	font-size: 17.655px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

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

.breadcrumb li a:hover {
	text-decoration: none;
}

.breadcrumb-item.active {
	color: #D4AF37;
	text-align: center;
	font-family: "DM Sans" !important;
	font-size: 17.655px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/* -End breadcrumb- */

/* -Inner Page Style- */

.about-info {
	padding: 0px 0px 0px 25px;
}

.about-info .page-insight {
	box-shadow: unset;
	padding: 5px 10px 20px 10px;
	background-color: unset;
}

.page-headings {
	border-bottom: 3px solid #bbbbbb;
	margin-bottom: 20px !important;
	padding-bottom: 5px;
	padding-top: 5px;
	font-size: 25.6px !important;
	color: var(--color-primary);
	font-weight: 600 !important;
	display: none;
}

.sub-heading {
	padding-bottom: 8px;
	color: var(--color-primary);
	font-family: "Blinker", sans-serif !important;
	font-size: 25px !important;
	font-weight: 600 !important;
	line-height: 38px;
	letter-spacing: 0.02em;
}

.about-page .about-info p {
	margin-bottom: 0px !important;
}

.page-back {
	padding-left: 1px;
	/* background-image: url("../img/page-back.png"); */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	/* padding-bottom: 50px !important; */
}

/* NAAC Pages */
.naac-section a {
	display: block;
	border-bottom: 1px solid #ccc;
	padding: 10px 0px 10px 0px;
	text-decoration: underline;
}

.naac-section a:hover {
	text-decoration: none;
}

.naac-section a:before {
	content: "\f1c1";
	font-family: "Font Awesome 5 Free";
	color: var(--color-primary);
	width: 2.5% !important;
	display: inline-block;
	font-size: 19px;
	margin-right: 0px;
}

/* -End Naac Pages-- */

/* accordian start*/

.accordion-button:not(.collapsed) {
	color: var(--color-default);
	background-color: #dff5f9;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.accordion-button:focus {
	z-index: 3;
	border: none !important;
	outline: 0;
	box-shadow: none !important;
}

.accordion-button {
	color: #000 !important;
}

.accordion-item {
	border: 1px solid #a59a9a !important;
	margin-bottom: 5px;
}

.tab-horizontal1,
.tab-horizontal2 {
	width: 100% !important;
}

.tab-horizontal1 ul {
	flex-direction: inherit !important;
}

.inner-accordion-header {
	border: 1px solid #a59a9a !important;
}

.inner-accordion-header .accordion-button:not(.collapsed) {
	background: #f8f8f8 !important;
}

/* accordian end */

/* Styles added by Shruti J */
.table th,
table th {
	padding: 0.5rem 0.5rem;
	background: #ececec;
	border-color: #d9d9d9;
	box-shadow: inset 0 4px 3px -2px rgb(0 0 0 / 4%);
	text-align: center;
	font-weight: 700 !important;
}

.table .text-link {
	text-decoration: underline;
}

.table p {
	margin-bottom: 0px;
}

.table .text-link:hover {
	text-decoration: none;
	vertical-align: middle;
}

.text-link {
	text-decoration: underline;
}

.text-link:hover {
	text-decoration: none;
	cursor: pointer;
}

.table td,
table td {
	border-color: #d9d9d9;
	padding: 0.5rem 0.5rem;
}

.table th.srno {
	width: 75px !important;
}

.table td.al-right,
.table .srno {
	text-align: right;
}

.btn-primary:focus {
	color: var(--color-default);
	background-color: var(--color-secondary);
}

.content-holder {
	background: white;
	padding: 0 25px;
}

.subheader {
	padding: 0;
	margin: 0 0 5px 0;
	font-weight: 700 !important;
	font-family: var(--font-primary);
	font-style: normal;
	font-size: 18px;
}

@media only screen and (max-width: 980px) {
	.about-info {
		padding: 0 25px;
		margin: 25px 0 0;
	}
}

.vtabs .tabs-right {
	padding: 0;
}

.vtabs .tabs-right .tab-content {
	padding: 0;
}

.vtabs .tabsContent-holder {
	padding-left: 0;
}

.vtabs .tab-content {
	padding: 0.5rem !important;
}

.vtabs .accordion-item {
	border: 0 !important;
}

.sub-head {
	border-bottom: 3px solid #bbbbbb;
	margin-bottom: 8px;
	padding-bottom: 8px;
	font-family: var(--font-primary);
	font-weight: 700;
	font-style: normal;
	cursor: default;
}

.vtabs .accordion-body {
	padding: 0.5rem 1.25rem;
}

.vtabs .tabsName-holder {
	background-color: var(--color-primary);
	padding-left: 0;
	padding-right: 0;
	box-shadow: inset -11px 0px 8px -11px rgba(112, 108, 112, 1) !important;
}

.vtabs .nav-tabs .nav-link {
	color: #fff;
	margin-bottom: -1px;
	background: none;
	border: 1px solid #06406570;
	border-radius: 0;
}

.vtabs .nav-tabs .nav-link.active {
    background-color: #d4af37 !important;
    color: white;
}
.tabsName-holder .nav-link:hover {
    background-color: #d4af37 !important;
    color: #000 !important;
}
.vtabs .accordion-button:not(.collapsed) {
	color: #064065;
	background: #dff5f9;
}

.vtabs .accordion-button:not(.collapsed) {
	color: #000 !important;
	background: #efe290;
	border: 1px solid #9d9355;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}

.vtabs .accordion-button:not(.collapsed):after {
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.vtabs .nav-tabs .nav-link.active {
	background-color: #fff;
	color: #0b0a0a;
}



@media (max-width: 575px) {
	.owl-nav .owl-next {
		margin-left: 2px !important;
	}

	.owl-prev {
		padding-left: 23px;
	}
}

.link-active {
	background-color: #064065 !important;
	padding: 15px 10px !important;
}

.form-control:focus {
	box-shadow: 0 0 0 0.25rem rgb(6 64 101 / 18%);
}

/* ssr table */
.ssr-table tr td:first-child {
	text-align: center;
}

.ssr-table th:nth-child(3) {
	width: 185px;
}

.ssr-table th:first-child {
	width: 100px;
	text-align: center;
}

/* styles added by pranali */

.tabletext {
	vertical-align: middle;
}

#carousel-placement img {
	object-fit: contain;
	aspect-ratio: 3/2;
	padding: 4px 10px;
}

/* CMS Photo Gallery*/
.list-horizontal {
	padding: 0;
	margin: 0;
}

.list-horizontal li {
	display: inline-block;
	margin-right: 10px;
}

.btn-year {
	border: 1px solid;
	padding: 6px 36px;
	border-radius: 5px;
	background-color: var(--color-primary);
	color: #fff;
	text-transform: uppercase;
	line-height: 40px;
}

.btn-year:hover {
	color: white;
}

.btn-year.active {
	background-color: var(--color-secondary);
}

a.btn-year.ng-binding {
	cursor: pointer;
}

a.btn-year.ng-binding.active {
	cursor: auto;
}

.gallery {
	position: relative;
	width: 302px;
	display: inline-block;
	overflow: hidden;
	z-index: 0;
}

.gallery .viewGallery {
	background-color: green;
	color: #fff;
	display: inline-block;
	padding: 5px 25px 0;
	text-decoration: none;
	position: absolute;
	left: 25%;
	transform: translateY(400px);
	transition: all 0.3s ease 0s;
}

.gallery .desc {
	padding: 15px;
	text-align: center;
}

.gallery:hover .viewGallery {
	transform: translateY(100px);
}

.stack,
.nostack {
	border: 6px solid #fff;
	float: left;
	height: 175px;
	width: 240px;
	margin: 20px;
	position: relative;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.stack img,
.nostack img {
	width: 100%;
	height: 100%;
}

.stack:before,
.stack:after {
	content: "";
	height: 175px;
	width: 240px;
	position: absolute;
	z-index: -1;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	border: 6px solid #fff;
}

.stack:before {
	background: #eff4de;
	top: 0px;
	left: -10px;
	transform: rotate(-5deg);
}

.stack:after {
	background: #768590;
	top: 5px;
	left: 0px;
	transform: rotate(4deg);
}

.firstImage:after {
	display: block;
	content: "View Gallery";
	padding: 8px 15px;
	margin: auto;
	background-color: var(--color-secondary);
	position: absolute;
	top: 29%;
	left: 24%;
	color: #fff;
	transform: translateY(400px);
	transition: all 0.3s ease 0s;
}

.firstImage:hover:after {
	transform: translateY(30px);
}

.firstImageForCollegeNews:after {
	display: block;
	content: "View Paper";
	padding: 8px 15px;
	margin: auto;
	background-color: var(--color-secondary);
	position: absolute;
	top: 29%;
	left: 24%;
	color: #fff;
	transform: translateY(400px);
	transition: all 0.3s ease 0s;
}

.firstImageForCollegeNews:hover:after {
	transform: translateY(30px);
}

.first-image:hover:after {
	transform: translateY(30px);
}

.link-active {
	background-color: #fdbd0f !important;
	padding: 15px 10px !important;
	color: #fff !important;
}

.main-whitePanel {
	background-color: unset;
	box-shadow: unset;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
	position: relative;
	z-index: 100;
}

.carousel-wrap {
	margin: 90px auto;
	padding: 0 5%;
	width: 80%;
	position: relative;
}

.mydiv .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0 10px;
	pointer-events: none;
	box-sizing: border-box;
}

.mydiv .owl-nav .owl-prev,
.mydiv .owl-nav .owl-next {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	font-family: Arial !important;
	font-size: 22px !important;
	line-height: 1 !important;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.85) !important;
	pointer-events: all;
}

.mydiv .owl-nav .owl-prev.disabled,
.mydiv .owl-nav .owl-next.disabled {
	visibility: hidden;
}

/* Plan Of Action */

.table-responsive.plan {
	padding: 8px 15px;
}

a.btn.btn-primary.naac-certificate {
	padding-bottom: 11px;
	margin-top: 18px;
}

img.img-fluid.naac {
	width: 450px;
	height: 500px;
}

.inner-category-gallery {
	border-bottom: 2px solid;
}

.gallery-category {
	position: relative;
	display: inline-block;
	overflow: hidden;
	z-index: 0;
}

.gallery-category .viewGallery {
	background-color: green;
	color: #fff;
	display: inline-block;
	padding: 5px 25px 0;
	text-decoration: none;
	position: absolute;
	left: 25%;
	transform: translateY(400px);
	transition: all 0.3s ease 0s;
}

.gallery-category .desc {
	padding: 15px;
}

.gallery-category:hover .viewGallery {
	transform: translateY(100px);
}

.btn-handy {
	border: 1px solid #b5b5b5;
	background: #f2f2f2;
	margin-right: 10px;
	text-decoration: none;
	padding: 3px 8px;
	box-shadow: 0px 2px 2px rgb(0 0 0 / 20%);
}

.container.main-whitePanel h4 span {
	font-size: 1.6rem !important;
	font-style: normal;
	display: inline-block;
	border-bottom: 2px solid var(--color-primary);
	padding-right: 16px;
}

.saftey {
	margin-top: 10px;
}

.section.row.host.saftey {
	margin-left: 0px;
}

.lib-text {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 20px;
}

a.active.aqar-quickl {
	color: var(--color-secondary);
}

.yearHolder {
	background: #e7e7e7 !important;
	vertical-align: middle;
}

.noRecords {
	color: #babcc0;
}

.link-holder a {
	color: #333;
	text-decoration: underline !important;
}

.link-holder a:hover {
	color: #333;
	text-decoration: none !important;
}

.files-noMeric {
	padding: 15px 15px 15px 25px !important;
}

.faculty-text-center {
	text-align: center !important;
}

.text-justify {
	text-align: justify !important;
}

.dept-faculty {
	text-align: center !important;
}

.department-faculty-all-div {
	display: inline-table;
}

/*  End Departments Home Dept */

/* Department start css */
.newspannel {
	font-size: 26px;
	font-family: "Marcellus", serif;
	color: var(--mainColor);
	font-weight: 600 !important;
}

.newspanneltext {
	color: #babcc0;
	font-size: 16px;
	padding-right: 15px;
	font-weight: 400;
	margin: auto;
}

#newstext {
	font-size: 17px;
	margin: 0px;
}

.shareicon {
	text-align: right;
}

/* .bred-pos {
	margin-top: -125px !important;
} */

#clickhere {
	text-decoration: underline;
	color: #fff;
	font-size: 16px;
	margin: 0px;
}

.goToSection {
	border: 1px solid;
}

.goToSectionmenu a {
	font-size: 22px;
	color: black;
	font-weight: 400 !important;
	padding: 0.75rem 1.5rem;
	margin: 0px;
	background-color: white;
}

.SectionmenuView {
	border-radius: 0px 0px 10px 10px;
	padding: 13px;
	background-color: white;
}

.goToSectionmenu a:hover {
	color: #fff;
	font-weight: 400 !important;
	background-color: var(--color-primary);
}

.goToSectionmenu .dropdown-item.active {
	color: #fff;
	font-weight: 400 !important;
	background-color: var(--color-primary);
}

.new-ui-margin {
	padding: 15px;
	border-bottom: 2px solid #cacaca;
}

.goToSectionmenu h4 {
	font-size: 26px;
	font-family: "Marcellus", serif;
	color: black;
	font-weight: 600 !important;
	padding: 0.75rem 1.5rem;

}

.categoriesmanu {
	padding: 0px;
	margin: 0px;
	color: #fff;
}

.newslist {
	padding: 10px 5px 5px 13px;
}

.category {
	width: 100%;
	padding: 3px;
	border-radius: 4px;
	margin: 3px;
	background-color: #ebebeb;
	font-size: 16.5px !important;
}

.quick-head-back {
	/* background-color: var(--color-primary); */
	margin-bottom: 0px;
	padding: 7px 7px 10px 20px !important;
	font-size: 20px !important;
	/* color: #fff; */
	border-radius: 10px 10px 0px 0px;

}

/* Department End css */

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #000;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--color-secondary);
	letter-spacing: 1px;
	box-shadow: none;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}

/* Start Media Queries */

@media only screen and (max-width: 1399px) {
	.naac-section a:before {
		margin-right: 5px;
	}

	.top-menu-hide {
		display: none;
	}

	.home-slider-text {
		left: 12%;
	}

	.formitem {
		width: 206.176px !important;
		height: 311.854px !important;
	}

	.enrich-center p {
		font-size: 16px !important;
	}

	.enrich-head {
		font-family: "DM Serif Display";
		font-size: 29px !important;
	}

	.collaboration-sec .item {
		width: 264px !important;
		height: 140px !important;


	}
}

@media only screen and (max-width: 992px) {
	.navbar-toggler-icon {
		background: #660032;
	}

	.web-cust-menu .navbar-nav.second-menu>.nav-item::after {
		display: none !important;
	}

	.events-program-box {
		padding-right: 0px;
		border-right: none;
		border-bottom: 2px dashed #8b7ed2;
	}

	.top-menu-mobile-view li a {
		color: #000 !important;
	}

	.container.about-page {
		margin-left: 11px;
	}

	.title-lines {
		margin-right: 0px !important;
	}

	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: static !important;
	}

	.quick-hover-section {
		display: none;
	}

	.quick-inner-top {
		margin-top: 25px;
	}

	.view-all a {
		margin-top: -2em;
	}

	.news-div .btn-news-down {
		margin-top: -0.7em;
	}

	.top-line {
		padding-bottom: 25px;
	}

	.header-logo {
		margin-top: 0px !important;
	}

	.site-header {
		text-align: center;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		width: 100%;
		max-width: 100%;
	}

	.news-section {
		width: 100%;
	}

	.holder {
		height: 210px;
		margin-top: 25px;
	}

	.quick-hover-section:hover {
		opacity: 1;
		border: 1px solid transparent;
		left: -63px;
	}

	.container.about-page {
		max-width: 100%;
		padding-right: 40px;
	}

	.photo-gallery-img {
		width: 210px !important;
	}

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

	.collegve-title {
		margin-left: 0px;
		text-align: center;
	}

	.home-slider-text p {
		font-size: 22px;
	}

	.home-slider-text {
		position: absolute;
		width: 400px;
		left: 17%;
	}

	.news-section {
		margin-bottom: 20px;
	}

	.about-sec .col-lg-3 {
		text-align: left;
		margin-top: 55px;
	}

	.about-img-content h4 {
		color: #FFF;
		text-align: center !important;
	}

	.about-img-content p {
		color: #FFF;
		text-align: center !important;
	}

	.events-details img {
		object-fit: contain;
	}

	.about-sec .col-lg-9 {
		border-right: unset !important;
	}

	.about-img-content {
		text-align: left;
	}

	.vision-con {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.mission-col {
		top: 0px !important;
		clip-path: unset !important;
		width: 550px !important;
	}

	.vision-value-col {
		clip-path: unset !important;
	}

	.pathway-content h3 {
		font-size: 23px !important;
	}

	.pathway-content p {
		font-size: 14px !important;
	}

	.prince-content h1 {
		font-size: 33px !important;
	}

	img.iqac-img {
		margin-bottom: 40px;
		margin-top: -53px;
	}

	section.alumni-sec .owl-item {
		display: flex;
		justify-content: center;
	}

	section.alumni-sec .col-lg-5 {
		margin-bottom: 64px;
	}

	.owl-nav .owl-prev {
		left: 43%;
	}

	.owl-nav .owl-next {
		right: 44%;
	}

	.alumni-head {
		padding: 0px !important;
	}

	.owl-nav {
		display: none;
	}

	.event-outer {
		width: 100%;
	}
}

@media only screen and (max-width: 808px) {
	.header-row {
		margin-top: -61px !important;
	}

	.site-header img.logo {
		width: 100px;
	}

	.responsive-logo {
		display: inline-block;
	}

	.responsive-logo2 {
		display: none;
	}

	.site-header {
		text-align: center;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		max-width: 100% !important;
	}

	section.program-sec .owl-item {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.formitem {
		width: 327.176px !important;
		height: 460.854px !important;
	}

	.bred-img1 {
		background-image: unset !important;
		height: 170px;
	}

	.bred-pos {
		position: relative;
		top: -35px !important;
		left: 0px;

	}

	.bred-img {
		height: auto;
		background-image: unset !important;
	}
}

@media only screen and (max-width: 768px) {
	.bred-img {
		height: auto;
	}

	.naac-section a:before {
		margin-right: 10px !important;
	}

	.carousel-control-next {
		right: 14px;
	}

	.collaboration-sec .item {
		width: 242px !important;
		height: 140px !important;
	}

	.alimni-right-info {
		width: 215px !important;
	}

	.headermobile-img {
		width: 501px;
	}
}

@media only screen and (max-width: 741px) {
	.owl-nav .owl-next {
		right: 39% !important;
	}

	.collaboration-sec .item {
		width: 236px !important;
		height: 140px !important;
	}

	.alimni-right-info {
		width: 226px !important;
	}

	.apply-section {

		margin-bottom: 20px;
	}

	.foot-phone {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 676px) {
	.formitem {
		width: 500px !important;
		height: 600px !important;
	}

	.head-line-1.mt-2 {
		font-size: 17px;
	}

	.header-college-name {
		font-size: 33px;
	}

	.prince-content {
		margin-bottom: 35px;
	}
}

@media only screen and (max-width: 575px) {
	.head-line-1.mt-2 {
		font-size: 16px;
	}

	.collaboration-sec .owl-item {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.alumni-head.mb-4 {
		flex-direction: column;
		gap: 20px;
	}

	.alumni-head a {
		font-size: 13px;
	}
}

@media only screen and (max-width: 500px) {
	.head-line-1.mt-2 {
		font-size: 13px;
	}

	.header-college-name {
		font-size: 30px;
	}

	.home-slider-text {
		left: 0%;
	}

	.vision-value-col {
		width: 100% !important;
	}

	.mission-col {
		width: 100% !important;
	}

	.owl-nav .owl-next {
		right: 35% !important;
	}

	.holder {
		width: 100% !important;
	}

	.iqac-img {
		width: 300px;
	}

	.about-sec {
		padding: 40px 0px !important;
	}

	.about-content p {
		font-size: 16px !important;
	}

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

	.maniben-section {
		padding: 0px;
	}

	.about-info.col-lg-12 {
		padding: 0px;
	}

	.view-btn {
		font-size: 11px !important;
	}

	.fc-toolbar .fc-right {
		float: left !important;
		margin-top: 10px !important;
	}

	.about-info {
		padding: 0 0px !important;
	}
}


@media only screen and (max-width: 428px) {
	span.carousel-control-prev-icon {
		margin-left: 0px !important;
		padding-left: 0px !important;
	}

	span.carousel-control-next-icon {
		margin-right: 0px !important;
		padding-right: 7px !important;
	}

	.carousel-control-next {
		right: 22px;
	}

	img.iqac-img {
		width: 260px;
	}

	.vision-value-col {
		width: 100% !important;
	}

	.mission-col {
		width: 100% !important;
	}

	.alumni-item {
		width: 406px;
		height: 345px;
	}

	.principal-wrapper a {
		font-size: 13px;
	}

	.head-line-1.mt-2 {
		font-size: 11px;
	}

	.header-college-name {
		font-size: 26px;
	}

	.content-prince {

		flex-direction: column;
	}

	.content-prince img {
		width: 184px;
		text-align: center;
	}

	.content-prince {
		display: flex;
		gap: 0px;
		margin-left: 0px !important;
		align-items: center;
	}

	.home-slider-text p {
		font-size: 16px;
	}

	.home-slider-text {
		width: 358px;
	}

	.home-slider-text img {
		width: 40px;
	}
}

@media only screen and (max-width: 393px) {
	.header-college-name {
		font-size: 23px;
	}

	.head-line-1.mt-2 {
		font-size: 10px;
	}

	.home-slider-text {
		bottom: 0px;
	}

	.pathway-content h3 {
		font-size: 25px;
	}

	img.iqac-img {
		width: 340px;
	}

	.alumni-item {
		width: 378px !important;
		height: 360px !important;
	}

	.owl-nav .owl-prev {
		left: 31%;
	}
}

/* Change tabs → accordion conversion breakpoint */
@media (max-width: 767px) {

	.left-tabs .nav-tabs {
		display: none !important;
		/* hide tabs */
	}

	.tabsContent-holder .accordion-item .accordion-header {
		display: block !important;
		/* show accordion */
	}

}

/* Desktop (≥768px) keep tabs, hide accordion buttons */
@media (min-width: 768px) {

	.tabsContent-holder .accordion-item .accordion-header {
		display: none !important;
	}

}




/* home news & event */
/* .news-events .news-notice-view {
    border: 1px solid #ccc;
    padding: 10px;
    display: inline-block;
    float: right;
}

.news-events {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.news-events .event-title {
    background-color: var(--color-primary);
    margin-bottom: 0px;
    color: #fff;
    padding: 10px 15px;
}

.news-events .news-text-line {
    margin-top: 10px;
    background-color: none;
}

.news-events .card-img-overlay {
    padding: 0rem;
    top: 25px;
}

.news-events .event-title {
    background-color: var(--color-primary);
    margin-bottom: 0px;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
}

.event-date-overlay {
    margin-bottom: 0px;
    background-color: var(--color-primary);
    display: inline-block;
    padding: 10px;
    color: #fff;
    font-size: 25px;
    text-align: center;
}

.news-events .event-title a i {
    color: #fff;
}

.news-events .card-img img {
    height: 270px;
    width: 100%;
}
.view-all-past-event {
    display: flex;
    justify-content: flex-end;
}
.view-all-past-event a {
    color: #ffffff !important;
    text-decoration: none;
    background-color: var(--color-primary);
    border-radius: 10px;
    padding: 7px 63px
    
}
.event-description {
    max-height: 3em; 
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-events .card-img-overlay{
    color: #fdbd0f !important;
} */

/* home news & event */
/* home news & event */
.news-events .news-notice-view a {
	border: 1px solid #ccc;
	padding: 10px;
	display: inline-block;
	float: right;
	margin-top: 25px;
}

.news-events {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.news-events .event-title {
	background-color: var(--main-color);
	margin-bottom: 0px;
	color: #fff;
	padding: 10px 15px;
}

.news-events .news-text-line {
	margin-top: 10px;
	background-color: white;
	color: black;
	max-height: 15em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.news-events .card-img-overlay {
	padding: 0rem;
	top: 25px;
}

.news-events .event-title {
	background-color: #110069;
	margin-bottom: 0px;
	color: #fff;
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.event-date-overlay {
	margin-bottom: 0px;
	background-color: #110069;
	display: inline-block;
	padding: 10px;
	color: #fff;
	font-size: 15px;
	text-align: center;
}

.news-events .event-title a i {
	color: #fff !important;
}

a.view-event-link {
	color: white !important;
}

.news-events .card-img img {
	height: 270px;
	width: 100%;
}

/* .event-description {
    max-height: 3em; 
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
} */

/* home news & event */

.view-all-event {
	text-align: end;
	margin-top: 18px;
	margin-left: 14px;
}

.view-all-event a {
	color: var(--color-default);
	text-decoration: underline;
	float: left;
	left: 10px;
	margin-top: -0.5em;
}

.view-all-event a {
	color: #ffffff !important;
	text-decoration: none;
	background-color: #ff9f2a;
	border-radius: 10px;
	padding: 7px 63px;
}

.view-all-event a:hover {
	text-decoration: none;
}

.event-div {
	background-color: white;
}

.event-div .btn-news {
	border: none;
	color: #ff9f2a;
	background-color: white;
	float: right;
}

.event-div .btn-news-down {
	border: none;
	color: #ff9f2a;
	background-color: white;
	float: right;
	margin-top: 0.5em;
}

/* home news & event */
.news-events .news-notice-view {
	border: 1px solid #ccc;
	padding: 10px;
	display: inline-block;
	float: right;
	margin-top: 25px;
}

.news-events {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.news-events .event-title {
	background-color: var(--color-primary);
	margin-bottom: 0px;
	color: #fff;
	padding: 10px 15px;
}

.news-events .news-text-line {
	margin-top: 10px;
	background-color: var(--color-primary);
	color: #fff;
}

.news-events .card-img-overlay {
	padding: 0rem;
	top: 25px;
}

.news-events .event-title {
	background-color: var(--color-primary);
	margin-bottom: 0px;
	color: #fff;
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.event-date-overlay {
	margin-bottom: 0px;
	background-color: #ff9f2a;
	display: inline-block;
	padding: 10px;
	color: #fff;
	font-size: 15px;
	text-align: center;
}

.news-events .event-title a i {
	color: #fff;
}

.news-events .card-img img {
	height: 270px;
	width: 100%;
}

/* home news & event */

.quick-inner-top {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
		rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	border-radius: 10px;
	/* position: fixed;
    top: 52%;
    left: 10%;
    right: 90%;
    width: 18%; /* Adjust width as needed */
	/* background-color: #fff; /* Background color of the fixed section */
	/* z-index: 999; Ensure it's above other content */
}

.quick-links .col-lg-3 {
	text-align: center;
}

.events-readmore {
	border: 1px solid #ccc;
	padding: 10px;
	display: inline-block;
	float: right;
	margin-top: 25px;
}

/* whatsaap popup */
/* a:link,
a:visited {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
} */

/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
	font-size: 16px;
	font-weight: 600;
	padding-bottom: 0px;
	margin-bottom: 0px;
	line-height: 1.5;
	color: white;
}

#whatsapp-chat {
	box-sizing: border-box !important;
	outline: none !important;
	position: fixed;
	width: 350px;
	border-radius: 10px;
	box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
	bottom: 164px;
	right: 160px;
	overflow: hidden;
	z-index: 1103;
	animation-name: showchat;
	animation-duration: 1s;
	transform: scale(1);
}

a.blantershow-chat {
	/* background: #009688; */
	/* background: #fff; */
	color: #404040;
	position: fixed;
	display: flex;
	font-weight: 400;
	justify-content: center;
	z-index: 6;
	bottom: 90px;
	right: 107px;
	font-size: 15px;
	padding: 27px 20px;
	border-radius: 87px;
	/* box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28); */
}

a.blantershow-chat svg {
	transform: scale(2.2);
	margin: 0 0px 0 0;
	background-size: cover;
}

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	z-index: 9999;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}

	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 91px;
	right: 102px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 0px;
	border: 16px solid #25d366;
	opacity: 0;
	animation-name: pulse-border;
	animation-duration: 1.8s;
	animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}

	75% {
		padding: 50px;
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.header-chat {
	background: #009688;
	background: #095e54;
	color: #fff;
	padding: 20px;
}

.header-chat h3 {
	margin: 0 0 10px;
}

.header-chat p {
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.info-avatar {
	position: relative;
}

.info-avatar img {
	border-radius: 91%;
	width: 63px;
	height: 49px;
	float: left;
	margin: -2px 11px 2px 0px;
}

a.informasi {
	padding: 20px;
	display: block;
	overflow: hidden;
	animation-name: showhide;
	animation-duration: 0.5s;
}

a.informasi:hover {
	background: #f1f1f1;
}

.info-chat span {
	display: block;
}

#get-label,
span.chat-label {
	font-size: 12px;
	color: #888;
}

#get-nama,
span.chat-nama {
	margin: 5px 0 0;
	font-size: 15px;
	font-weight: 700;
	color: #222;
}

#get-label,
#get-nama {
	color: #fff;
}

div#admission {
	z-index: 1043;
}

span.my-number {
	display: none;
}

/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
	font-family: "Arial", sans-serif;
	width: 100%;
	height: 50px;
	padding: 10px;
	font-size: 14px;
}

a#send-it {
	width: 48px;
	/* margin-left: 10px; */
	font-weight: 900;
	padding: 12px 13px 5px;
	background: #dadada;
	/* border-radius: 10px;*/

	svg {
		fill: #a6a6a6;
		height: 24px;
		width: 24px;
	}
}

input.styles-module_input__2IYfc {
	background-color: #fefefe;
	border: none;
	outline: none;
	border-radius: 20px;
	min-height: 45px;
	padding: 0 10px;
	transition: box-shadow 0.2s ease-in-out;
	width: 100%;
}

.first-msg {
	background: transparent;
	padding: 30px;
	text-align: center;

	& span {
		background: #e2e2e2;
		color: #333;
		font-size: 14.2px;
		line-height: 1.7;
		border-radius: 10px;
		padding: 15px 20px;
		display: flex;
		padding: 10px;
		background: #dcdcdc;
	}
}

.start-chat .blanter-msg {
	display: flex;
	padding: 10px;
	background-color: #dadada;
}

#get-number {
	display: none;
}

a.close-chat {
	position: absolute;
	top: 5px;
	right: 15px;
	color: #fff;
	font-size: 30px;
}

@keyframes ZpjSY {
	0% {
		background-color: rgb(182, 181, 186);
	}

	15% {
		background-color: rgb(17, 17, 17);
	}

	25% {
		background-color: rgb(182, 181, 186);
	}
}

@keyframes hPhMsj {
	15% {
		background-color: rgb(182, 181, 186);
	}

	25% {
		background-color: rgb(17, 17, 17);
	}

	35% {
		background-color: rgb(182, 181, 186);
	}
}

@keyframes iUMejp {
	25% {
		background-color: rgb(182, 181, 186);
	}

	35% {
		background-color: rgb(17, 17, 17);
	}

	45% {
		background-color: rgb(182, 181, 186);
	}
}

@keyframes showhide {
	from {
		transform: scale(0.5);
		opacity: 0;
	}
}

@keyframes showchat {
	from {
		transform: scale(0);
		opacity: 0;
	}
}

@media screen and (max-width: 480px) {
	#whatsapp-chat {
		width: auto;
		left: 5%;
		right: 5%;
		font-size: 80%;
	}
}

.hide {
	display: none;
	animation-name: showhide;
	animation-duration: 0.5s;
	transform: scale(1);
	opacity: 1;
}

/* .show {
  display: block !important;
  animation-name: showhide;
  
  transform: scale(1);
  opacity: 1;
} */

.whatsapp-message-container {
	display: flex;
	z-index: 1;
}

.whatsapp-message {
	padding: 7px 14px 6px;
	background-color: rgb(255, 255, 255);
	border-radius: 0px 8px 8px;
	position: relative;
	transition: all 0.3s ease 0s;
	opacity: 0;
	transform-origin: center top 0px;
	z-index: 2;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
	margin-top: 4px;
	margin-left: -54px;
	max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
	padding: 20px 20px 20px 10px;
	background-color: rgb(230, 221, 212);
	position: relative;

	&::before {
		display: block;
		position: absolute;
		content: "";
		left: 0px;
		top: 0px;
		height: 100%;
		width: 100%;
		z-index: 0;
		opacity: 0.08;
		background-image: url("https://elfsight.com/assets/chats/patterns/whatsap.png");
		/* background-image: url('assets/images/whatsaap-bg.png'); */
	}
}

.dAbFpq {
	display: flex;
	z-index: 1;
}

.eJJEeC {
	background-color: rgb(255, 255, 255);
	width: 52.5px;
	height: 32px;
	border-radius: 16px;
	display: flex;
	-moz-box-pack: center;
	justify-content: center;
	-moz-box-align: center;
	align-items: center;
	margin-left: 10px;
	opacity: 0;
	transition: all 0.1s ease 0s;
	z-index: 1;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
	position: relative;
	display: flex;
}

.ixsrax {
	height: 5px;
	width: 5px;
	margin: 0px 2px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	top: 0px;
	background-color: rgb(158, 157, 162);
	animation-name: ZpjSY;
}

.dRvxoz {
	height: 5px;
	width: 5px;
	margin: 0px 2px;
	background-color: rgb(182, 181, 186);
	border-radius: 50%;
	display: inline-block;
	position: relative;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	top: 0px;
	animation-name: hPhMsj;
}

.kAZgZq {
	padding: 7px 14px 6px;
	background-color: rgb(255, 255, 255);
	border-radius: 0px 8px 8px;
	position: relative;
	transition: all 0.3s ease 0s;
	opacity: 0;
	transform-origin: center top 0px;
	z-index: 2;
	box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
	margin-top: 4px;
	margin-left: -54px;
	max-width: calc(100% - 66px);

	&::before {
		position: absolute;
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: contain;
		content: "";
		top: 0px;
		left: -12px;
		width: 12px;
		height: 19px;
	}
}

.bMIBDo {
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
	font-size: 14px;
	line-height: 19px;

	margin-top: 4px;
	color: rgb(17, 17, 17);
}

.iSpIQi {
	font-size: 14px;
	line-height: 19px;
	margin-top: 4px;
	color: rgb(17, 17, 17);
}

.cqCDVm {
	text-align: right;
	margin-top: 4px;
	font-size: 12px;
	line-height: 16px;
	color: rgba(17, 17, 17, 0.5);
	margin-right: -8px;
	margin-bottom: -4px;
}

.limited-lines {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	/* Limit to 3 lines */
}

/* Alumni Registration state */

.autocomplete {
	position: relative;
}

.autocomplete-items {
	position: absolute;
	border: none !important;
	z-index: 99;
	top: 100%;
	left: 0;
	right: 0;
}

.autocomplete-items div {
	padding: 5px;
	cursor: pointer;
	background-color: #efeeee;
	border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
	background-color: #e9e9e9;
}

.autocomplete-active {
	background-color: DodgerBlue !important;
	color: #ffffff;
}

/* admissiom form */

.wizard,
.wizard .nav-tabs,
.wizard .nav-tabs .nav-item {
	position: relative;
}

.wizard .nav-tabs:after {
	content: "";
	width: 80%;
	border-bottom: solid 2px #ccc;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	top: 38%;
	z-index: -1;
}

.wizard .nav-tabs .nav-item .nav-link {
	width: 34px;
	height: 34px;
	margin-bottom: 2%;
	background: #110069;
	border: 2px solid #110069;
	color: #ccc;
	z-index: 10;
}

.wizard .nav-tabs .nav-item .nav-link:hover {
	color: #333;
	border: 2px solid #333;
}

.wizard .nav-tabs .nav-item .nav-link.active {
	background: #fdbd0f;
	border: 2px solid #fdbd0f;
	color: #110069 !important;
}

.wizard .nav-tabs .nav-item .nav-link:after {
	content: " ";
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	opacity: 0;
	margin: 0 auto;
	bottom: 0px;
	border: 5px solid transparent;
	border-bottom-color: #0dcaf0;
	transition: 0.1s ease-in-out;
}

/* .nav-tabs .nav-item .nav-link.active:after {
	content: " ";
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	opacity: 1;
	margin: 0 auto;
	bottom: 0px;
	border: 10px solid transparent;
	border-bottom-color: #931962;
} */

.wizard .nav-tabs .nav-item .nav-link svg {
	font-size: 25px;
}

.section-program {
	padding: 30px 15px;
	border-radius: 15px;
	background: #f5f5f5;
}

.admission-form-header {
	color: #000;
	font-family: "Roboto";
	font-size: 20px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
	margin-bottom: 10px;
}

.modal-enquiryForm-section label {
	margin-bottom: 10px;
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: 20px;
}

.modal-enquiryForm-section label em {
	margin-bottom: 10px;
	color: #ff0000;
	font-family: Poppins;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
}

.otp-linkHolder {
	display: flex;
	justify-content: center;
	gap: 7px;
	vertical-align: middle;
	align-items: center;
}

.otp-linkHolder a {
	text-decoration: underline;
}

.msg-OTPsent {
	display: block;
	color: black;
	font-size: 14px !important;
	margin-bottom: 15px;
	font-style: italic;
}

.email-id-group {
	margin: 0 auto;
	display: flow;
	text-align: center;
}

.email-varify-btn {
	color: #000000;
	text-align: center;
	font-family: "Rounded Mplus 1c";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 14px;
	width: 144px;
	height: 45px;
	border-radius: 40px;
	border: 1.333px solid #f1efff;
	background: var(--Neutral-Colors-White, #fff);
	box-shadow: 5px 3px 5px -2px rgb(199 192 244);
}

select.form-control {
	font-size: 14px;
	appearance: auto;
}

.adhar-input {
	padding: 6px;
}

.education-form-header {
	color: #460b2f;
	font-family: Poppins;
	font-size: 17px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
}

.form-control {
	font-size: 14px !important;
	display: block;
	width: 100%;
	padding: 0.475rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	appearance: none;
	border-radius: 4px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.admission-enquiryForm-header {
	color: #110069;
	font-family: Poppins;
	font-size: 23px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
}

.wizard-count {
	margin: 0;
	color: white;
	font-family: Poppins;
	font-size: 25px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
}

.wizard-titel {
	font-weight: 500;
}

.wizard .nav-tabs .nav-item .nav-link ::after {
	content: "";
	height: 2px;
	width: 100%;
	background-color: #000;
}

.email.varification.image {
	width: 300px;
}

.email-id-group .form-group .form-control {
	text-align: center;
	font-size: 14px !important;
	display: block;
	width: 100%;
	padding: 0.475rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	appearance: none;
	border-radius: 4px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-info {
	color: #ffffff;
	background-color: #110069 !important;
	border-color: #ffffff;
}

.btn-info:hover,
.btn-info:focus {
	color: #110069 !important;
	background-color: #fdbd0f !important;
	border-color: #ffffff !important;
}

.btn-secondary {
	color: #ffffff !important;
	background-color: #110069 !important;
	border-color: #ffffff !important;
}

.form-control:focus {
	color: #525368;
	background-color: #fff;
	border-color: none !important;
	outline: 0;
	box-shadow: none !important;
}

.wizard .nav-tabs .nav-item .nav-link.active i {
	color: white !important;
}

.wizard .nav-tabs .nav-item .nav-link .active .wizard-count {
	color: #ffffff !important;
}

.wizard .nav-tabs .nav-item .nav-link.active p {
	color: #fff;
}

.verify-mail-box {
	margin: 0 auto;
	width: 400px;
}

.search-container {
	position: relative;
	display: inline-block;
}

.search-input {
	width: 200px;
	padding: 10px;
	display: none;
	position: absolute;
	top: 37px;
	right: -2px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	background-color: white;
}

.search-icon {
	cursor: pointer;
	font-size: 22px;
	color: #555;
	transition: color 0.3s ease;
	top: 6px;
	right: -8px;
	position: inherit;
}

.search-icon:hover {
	color: #000;
}

.fac-coll {
	padding: 0px;
	text-align: center;
	position: relative;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #f1f1f1;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 18px;
}

.button-css {
	position: relative;
	height: 0px;
	width: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	background-color: transparent;
	border: none;
	top: 47px;
	left: 15px;
}

.staff-details-goback {
	height: 45px;
	width: auto;
	position: relative;
}

/* Skeleton Loader Container */
.skeleton-loader {
	/* background-color: #f0f0f0; */
	border-radius: 4px;
	margin: 10px 0;
	overflow: hidden;
	position: relative;
}

/* Individual skeleton blocks (title, content) */
.skeleton-title,
.skeleton-content {
	background-color: #e0e0e0;
	background-image: linear-gradient(90deg,
			#e0e0e0 25%,
			#f0f0f0 50%,
			#e0e0e0 75%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
	border-radius: 4px;
}

.skeleton-title {
	height: 20px;
	width: 60%;
	margin-bottom: 15px;
}

.skeleton-content {
	height: 15px;
	width: 100%;
	margin-bottom: 10px;
}

/* Shimmer Animation */
@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}

	100% {
		background-position: 200% 0;
	}
}

.skeleton-loader:empty {
	display: block;
	background-color: #bdc3c7 !important;
	border-color: #bdc3c7 !important;
	animation-name: skeletonAnimation;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.skeleton-loader:empty.others {
	height: 200px;
}

.skeleton-loader:empty.prod-name {
	height: 20px;
}

.skeleton-loader:empty.prod-description {
	width: 80%;
	height: calc(100% - 30px);
}

@keyframes skeletonAnimation {
	0% {
		opacity: 0.8;
	}

	50% {
		opacity: 0.4;
	}

	100% {
		opacity: 0.8;
	}
}

/*From here the styles are for demo purpose only*/
.wrapper {
	margin: auto;
	display: flex;
	width: 80%;
	padding: 0 30px;
	border-radius: 6px;
	border: 1px solid lightgray;
	box-shadow: 0px 0px 18px -1px #2e2e2e;
	font-family: "Open Sans", sans-serif;
	flex-wrap: wrap;
}

.wrapper .row {
	width: 100%;
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.wrapper .row .prod-img {
	border: 1px solid lightgray;
	width: 80px;
	height: 80px;
	border-radius: 50%;
}

.wrapper .row .details {
	width: calc(100% - 95px);
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.wrapper .row .details .prod-name {
	width: 100%;
}

.wrapper .row .others {
	width: 30%;
	margin-top: 30px;
}

.wc-footer-img {

	padding: 30px;
	height: 100%;
	top: -116px;
	left: -70px;
	position: absolute;
	background: url(../img/Rectangle\ 4163\ \(2\).svg);
	background-repeat: no-repeat;

}

.wc-footer {
	background-color: #FFE4B0;
	position: relative;
}

.address-box {
	margin-left: 100px;
}

.linkone {
	color: black !important;
}

.tynmce-css {
	padding: 29px 25px 10px 10px;
}

.testimonal-card {
	height: 353px;
}

.birthday-card {
	background: url("bdaycard-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px;
	width: 100%;
	max-width: 500px;
	margin: auto;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	font-family: 'Segoe UI', sans-serif;
	position: relative;
}


.card-header {
	background: #666;
	color: white;
	padding: 10px 15px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
}

.card-body {
	padding: 20px;
	top: 30px;
	position: relative;
	text-align: center;
	background: #f8f8f8 url('birthday-text.png') no-repeat center/cover;

}

.greeting-image {
	margin: 0;
	padding: 0;
}



.school-name {
	font-weight: bold;
	color: #a10000;
	font-size: 18px;
	margin-top: 60px;
	text-decoration: underline;
}

.wish-text {
	margin: 10px 0;
	font-size: 14px;
	color: #555;
}

.student-name {
	background: none;
	color: #c96330;
	/* similar rich violet tone */
	font-weight: 500;
	font-size: 24px;
	text-align: center;
	display: inline-block;
	margin-top: 10px;
	font-family: 'Great Vibes', cursive;
}





.student-class {
	font-size: 14px;
	color: #333;
}

.student-image {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.student-image img {
	/* border-radius: 50%;               /* Slightly bigger for better view */
	/* height: 120px; */
	object-fit: cover;
	/* Ensures the face fits well */
	border: 3px solid #fff;
	/* White border for a clean look */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	/* Soft shadow */
	background-color: #fff;
}


.quote-text {
	font-style: italic;
	margin-top: 15px;
	font-size: 13px;
	color: #444;
	padding: 0 10px;
}

.navigation {
	position: absolute;
	top: 50%;
	width: 100%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
}

.nav-btn {
	background: #fff;
	border: 1px solid #999;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	line-height: 26px;
	text-align: center;
}

/* 
.confetti-left,
.confetti-right,
.cake-icon {
	font-size: 20px;
	position: absolute;
}



.confetti-left {
	top: 10px;
	left: 10px;
}

.confetti-right {
	top: 10px;
	right: 10px;
}

.cake-icon {
	bottom: 15px;
	right: 20px;
}  */

/* Birthday card animation */
/* Position the emojis */
/* Common confetti styling */
.cardd-body {
	position: relative;
	padding: 1.5rem;
	background: #fffaf0;
	border-radius: 10px;
}

/* Confetti styles */
.confetti-left,
.confetti-right {
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	font-size: 2rem;
	z-index: 10;
	line-height: 1;
	/* ✅ ensures consistent vertical alignment */
}


.confetti-left {
	left: 10px;
}

.confetti-right {
	right: 10px;
}

/* Clean spacing and text styling */
.school-name {
	font-weight: bold;
	color: #d32f2f;
}

.wish-text {
	font-size: 1.1rem;
	color: #555;
}

.student-name {
	font-weight: 600;
}

.student-class {
	color: #777;
}

.quote-text {
	font-style: italic;
	color: #666;
}

/* Animation keyframes */
@keyframes burst-left {
	0% {
		transform: translateY(-50%) translate(0, 0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateY(-50%) translate(100px, -50px) scale(2);
		opacity: 0;
	}
}

@keyframes burst-right {
	0% {
		transform: translateY(-50%) translate(0, 0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateY(-50%) translate(-100px, -50px) scale(2);
		opacity: 0;
	}
}

/* When animation starts */
.confetti-left.confetti-animate {
	animation: burst-left 1s ease-out;
	opacity: 1;
}

.confetti-right.confetti-animate {
	animation: burst-right 1s ease-out;
	opacity: 1;
}

.cake-rise-emoji {
	font-size: 60px;
	position: absolute;
	top: 85%;
	/* push below the text image */
	left: 50%;
	transform: translateX(-50%) scale(0.5);
	opacity: 0;
	z-index: 10;
	pointer-events: none;
}



.cake-rise-animate {
	animation: cake-rise 1.5s ease-in-out forwards;
}

@keyframes cake-rise {
	0% {
		transform: translateX(-50%) translateY(20px) scale(0.3) rotate(-10deg);
		opacity: 0;
	}

	50% {
		transform: translateX(-50%) translateY(-10px) scale(1.3) rotate(10deg);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-20px) scale(1) rotate(0deg);
		opacity: 1;
	}
}

.party-emoji {
	position: absolute;
	font-size: 30px;
	z-index: 5;
	animation: confetti-burst 2s ease-out forwards;
	pointer-events: none;
	opacity: 0;
}

.confetti-animate {
	animation: confetti-burst 2s ease-out forwards;
}

@keyframes confetti-burst {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.3) rotate(0deg);
	}

	50% {
		opacity: 1;
		transform: translateY(-10px) scale(1.3) rotate(15deg);
	}

	100% {
		opacity: 1;
		transform: translateY(0px) scale(1) rotate(0deg);
	}
}

.fa-chevron-right:before {
	content: "\f054";
	position: relative;
	margin-right: 107px;
}

.fa-chevron-left:before {
	content: "\f053";
	position: relative;
	margin-left: 100px;
}



/* New CSS */
.about-sec {
	position: relative;
	background-image: url("../img/about-back.png");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	color: #fff;
	overflow: hidden;
	padding: 100px 0px;
}

/* The dark overlay */
.about-sec::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.78);
	z-index: 0;
}

/* Ensure content stays above overlay */
.about-sec .container {
	position: relative;
	z-index: 2;
}

.about-content h1 {
	color: #FFF;
	font-family: "DM Serif Display" !important;
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.about-content p {
	color: #FFF;
	font-family: "DM Sans" !important;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	/* 145.455% */
}

.about-content a {
	border-radius: 5px;
	background: #F88379;
	padding: 10px 15px;
	color: #FFF;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	text-decoration: none;
}

.about-sec .col-lg-9 {
	border-right: 1px solid #fff;
	padding-right: 30px;
}

.about-sec .col-lg-3 {
	text-align: center;
}

.about-img-content h4 {
	color: #FFF;
	text-align: center;
	font-family: "DM Serif Display";
	font-size: 29px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 10px;
}

.about-img-content p {
	color: #FFF;
	text-align: center;
	font-family: "DM Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/* Vision Mission */
.vision-con {
	display: flex;
}

.vision-value-col {
	width: 548px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 49px 97px 79px;
	gap: 15px;
	clip-path: polygon(0px 0px, 100% 0px, 100% 85%, 50% 100%, 0px 85%);
	background-color: rgb(250, 243, 224);
	height: 530px;
}

.vision-value-col h1 {
	font-family: "DM Serif Display";
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
}

.vision-value-col p {
	text-align: center;
	font-family: "DM Sans" !important;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: none;
	color: #660032;
}

.mission-col {
	background-color: rgb(102, 0, 50);
	width: 428px;
	clip-path: polygon(0px 0px, 100% 0px, 100% 85%, 50% 100%, 0px 85%);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
	gap: 15px;
	position: relative;
	top: -32px;
	z-index: 1;
	height: 567px;
	padding-left: 55px !important;
	padding-right: 55px !important;
}

.mission-col h1 {
	color: #FFF;
	font-family: "DM Serif Display";
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.mission-col p {
	color: #FFF;
	text-align: center;
	font-family: Marcellus !important;
	font-size: 27px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 20px 87px;
}


/* Desktop view: show full content, hide mobile image */
/* .vision-sec .vision-con {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
} */

.vision-mobile-img {
	display: none;
}

/* Mobile view: hide section content, show only mobile image */
@media (max-width: 992px) {
	.vision-sec .vision-con {
		display: none;
	}

	.vision-mobile-img {
		display: block;
		text-align: center;
		position: relative;
		top: -9px;
	}

	.vision-mobile-img img {
		width: 100%;
		height: auto;
	}
}


/* Pathway */
.pathway-content h1 {
	font-family: "DM Serif Display";
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
}

.pathway-content h3 {
	color: #525258;
	font-family: "DM Serif Display" !important;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 137.477%;
	/* 38.494px */
}

.pathway-content p {
	color: #525258;
	font-family: "DM Sans" !important;
	font-size: 23px;
	font-style: normal;
	font-weight: 400;
	line-height: 130.558%;
}

/* Principal Section */
.content-prince {
	display: flex;
	gap: 10px;
	margin-left: -20px;
}

.prince-content h1 {
	font-family: "DM Serif Display";
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
}

.principal-wrapper p {
	color: #696984;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 30px;
}

.principal-wrapper a {
	border-radius: 5px;
	background: #F88379;
	padding: 10px 15px;
	color: #FFF;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

.principal-wrapper a:hover {
	background: #660032;
}

/* Audio College */
.audio-player {
	display: flex;
	align-items: center;
	padding: 15px 32px;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
	width: 100%;
	gap: 20px;
	height: 102px;
	overflow: hidden;
	border-radius: 70px;
	background: #F8FAFC;
}

.left {
	display: flex;
	align-items: center;
	gap: 23px;
}

.title {
    color: #670037;
    font-family: "DM Serif Display" !important;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.play-btn {
	background: #5a537b;
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}

.play-btn:hover {
	background: #670037;
}

.visualizer {
	width: 475px;
	display: flex;
	align-items: center;
	height: 40px;
}

canvas {
	width: 100%;
	height: 40px;
}

.time {
	font-size: 13px;
	color: #555;
	min-width: 90px;
	text-align: center;
	font-family: "DM Sans", sans-serif;
}

.controls {
	display: flex;
	align-items: center;
	gap: 12px;
}

.controls button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.controls img {
	width: 32px;
	height: 32px;
	filter: grayscale(50%) brightness(0.5);
	transition: all 0.2s ease;
}

.controls img:hover {
	filter: none;
	transform: scale(1.1);
}

.composer {
	font-size: 14px;
	color: #696984;
	text-align: left;
	min-width: 250px;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	line-height: normal;
}

@media(max-width: 768px) {
	.audio-player {
		flex-direction: column;
		text-align: center;
		gap: 10px;
		height: 260px;
	}

	.composer {
		text-align: center;
	}

	.visualizer {
		width: 100%;
	}
}


/* IQAC SEc */
.iqac-sec {
	background: #F4F4F4;
}

.enrich-center {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 20px;
}

.enrich-center p {
	color: #696984;
	font-family: "DM Sans";
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.enrich-head {
	font-family: "DM Serif Display";
	font-size: 34px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
	margin-bottom: 20px;
}

.iqac-side {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 35px;
}

.scheme {
	color: #696984;
	font-family: "DM Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0px;
}

.scheme-desc {
	color: #696984;
	font-family: "DM Sans";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0px;
}


/* Collaboration sec */
.collaboration-sec {
	padding-bottom: 100px !important;
}

section.collaboration-sec .item img {
	width: 231px;
	height: auto;
}

.collaboration-sec .item {

	border: 1px solid #A7A7A7;
	width: 297px;
	height: 149px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.collab-head {
	text-align: center;
	font-family: "DM Serif Display";
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
}

.collaboration-sec .owl-nav {
	display: none;
}

#gallery-carousel .owl-dots .owl-dot.active {
	background: #660032 !important;
	transform: scale(1.2);
}

/* Program section */
.formitem {
	position: relative;
	overflow: visible !important;
	border-radius: 10px;
	cursor: pointer;
	width: 235.176px;
	height: 334.854px;
	transition: transform 0.6s ease, box-shadow 0.6s ease;
}

h2.program-heading {
	font-family: "DM Serif Display";
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
	text-align: center;
}

.program-sec .owl-stage {
	height: 423px;
	margin-top: 50px;
}

.formitem img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	border-radius: 10px;
	/* border: 10px 10px 10px 10px solid #fff; */
	box-shadow: 10px 15px 60px rgba(255, 201, 196, 0.9);
	border-left: 10px solid #fff;
	border-right: 10px solid #fff;
	border-top: none;
	border-bottom: none;
}

.formitem:hover img {
	transform: scale(1.05);
}

.formitem .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(0deg, #696984 0%, rgba(105, 105, 132, 0) 100%); */
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 20px;
	border-radius: 0 0 10px 10px;
	transition: all 0.6s ease;
	overflow: hidden;
}

.formitem .title {
	font-family: "DM Sans" !important;
	font-size: 16px;
	color: #fff;
	font-weight: 900;
	text-align: center;
	margin: 0;
	z-index: 2;
	transform: translateY(0);
	transition: transform 0.6s ease;
}

.formitem .description {
	font-size: 0.9rem;
	opacity: 0;
	transform: translateY(20px);
	text-align: center;
	margin-top: 5px;
	transition: all 0.6s ease;
	max-height: 0;
	overflow: hidden;
	color: #FFF;
	text-align: center;
	font-family: "DM Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

/* On hover — description appears and both move up smoothly */
.formitem:hover .description {
	opacity: 1;
	transform: translateY(0);
	max-height: 100px;
}

.formitem:hover .title {
	transform: translateY(-15px);
}

/* Carousel scaling */
.owl-carousel-program .owl-item.active .formitem {
	transform: scale(0.72);
	transform-origin: center center;
	opacity: 0.8;
}

.owl-carousel-program .owl-item.active.middle .formitem {
	transform: scale(1);
	opacity: 1;
}

.owl-carousel-program .owl-item .formitem {
	transition: transform 0.6s ease, opacity 0.6s ease;
}

@media (max-width: 767px) {
	.owl-carousel-program .owl-item .formitem {
		transform: scale(1) !important;
		width: 100% !important;
		/* height: auto !important; */
	}
}


.formitem:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 40px rgba(179, 0, 89, 0.25);
	transition: all 0.6s ease;
}

.formitem:hover img {
	transform: scale(1.1);
}

/* Optional subtle glow on hover */
.formitem::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(255, 200, 230, 0.3), transparent 70%);
	opacity: 0;
	border-radius: 10px;
	transition: opacity 0.6s ease;
}

.formitem:hover::after {
	opacity: 1;
}



/* Alumni Sec */
.alumni-sec {
	background-color: #FFF7EA;
}

.alumni-desc {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.alumni-desc img {
	width: 89px !important;
}

.alumni-item {
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0 0 20px 0 rgba(247, 231, 206, 0.25);
	padding: 30px;
	width: 435px;
	height: 299px;
	flex-shrink: 0;
	float: right;
}

.alumni-con p {
	color: #696984;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.alumni-info .name {
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
	margin-bottom: 5px;
	color: #660032;
}

.alumni-batch {
	color: #000;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	margin-bottom: 5px;
}

.alumni-sec .owl-nav {
	display: block !important;
}

.alumni-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 0 90px;
}

.alumni-heading {
	font-family: "DM Serif Display";
	font-size: 35px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	color: #660032;
	text-align: center;
	flex: 1;
	/* let heading take remaining space to appear centered */
	margin: 0;
	/* remove default margins */
}

.alumni-head a {
	border-radius: 5px;
	background: #F88379;
	padding: 10px 15px;
	color: #FFF;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	text-decoration: none;
	margin-left: 20px;
}

.alumni-head a:hover {
	background: #660032;
}

/* Alumni Right */
.alumni-sec .col-lg-7 {
	padding-left: 30px;
}

.alimni-right-info {
	width: 337px;
}

.alimni-right-info video {
	height: 299px;
}

.alimni-right-info p {
	color: #696984;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 10px;
}

img.alumni-photo {
	border-radius: 50%;
	width: 89px !important;
}

.owl-carousel-alumni-right .owl-nav {
	display: none !important;
}

/* Footer New CSS */
.footer-heading {
	color: #E6BE8A;
	font-family: "DM Sans";
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.apply-section {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 0px;
	margin-top: 15px;
}




.apply-section a {
	color: #FFF;
	font-family: "DM Sans";
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
}

.foot-phone p {
	color: #FFF;
	font-family: "DM Sans";
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
}

.foot-phone a {
	color: #FFF;
	font-family: "DM Sans";
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
}

.c-time {
	color: #FFF;
	font-family: "DM Sans";
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 34px;
}

.right-res {
	background: #660032;
}

.copy-con {
	border-top: 1px solid rgba(255, 247, 234, 0.20);
}

/* Side Buttons Start*/

/* ---- Container ---- */
/* =========================
   CONTACT SIDE PANEL - ANIMATION SAFE OPTIMIZED VERSION
   ========================= */

/* ---- Container ---- */
#ssi-absolute {
	position: fixed;
	top: 250px;
	right: 0;
	width: auto;
	z-index: 1050;
	/* safer value than 9999 */
	pointer-events: auto;
}

/* ---- Adjust icons ---- */
#ssi-absolute i,
#ssi-absolute svg {
	position: relative;
	left: 5px;
}

/* ---- List styling ---- */
.contact-side {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ---- List item ---- */
.contact-side li {
	margin-bottom: 5px;
	width: 177px;
	height: 36px;
	display: block;
	background: rgba(236, 236, 236, 0.8);
	line-height: 30px;
	text-align: left;
	font-size: 24px;
	position: relative;
	right: -140px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.4) 1px 2px 5px -3px;
	transition: right 0.3s ease-in-out, background 0.3s, color 0.3s;
	border: none !important;
}

/* ---- Hover (slide in only using right) ---- */
.contact-side li:hover {
	right: 0;
}

/* ---- Text ---- */
.contact-side li span {
	float: right;
	margin-left: 26px;
	margin-top: 7px;
	font-size: 16px;
	font-family: "Poppins", sans-serif !important;
	position: relative;
	left: -15px;
	color: #000000b2 !important;
	transition: color 0.3s ease;
}

/* ---- Image/Icon ---- */
.contact-side li img {
	text-align: right;
}

/* ---- Social Icon base ---- */
.bi-facebook,
.bi-twitter-x,
.bi-instagram,
.bi-youtube {
	padding: 0px 5px;
	margin-top: 8px;
	margin-right: 12px;
	color: #000000b2;
	transition: color 0.2s ease, width 0.2s ease, height 0.2s ease;
}

/* ---- Hover rotation/zoom ---- */
.ssi-facebook:hover .bi-facebook,
.ssi-instagram:hover .bi-instagram,
.ssi-youtube:hover .bi-youtube,
.ssi-twitter:hover .bi-twitter-x,
.ssi-linkedin:hover .bi-linkedin {
	color: #ffffff;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	opacity: 0.8;
	cursor: pointer;
}

/* ---- Individual platform background hover ---- */
.ssi-facebook:hover {
	background: #fff;
}

.ssi-twitter:hover {
	background: #fff;
}

.ssi-instagram:hover {
	background: #fff;
}

.ssi-linkedin:hover {
	background: #fff;
}

.ssi-youtube:hover {
	background: #fff;
}

.ssi-phone:hover {
	background: #fff;
}

.ssi-envelope:hover {
	background: #28944a;
}

.ssi-github:hover {
	background: #141414;
}

.ssi-store:hover {
	background: #bce63e;
}

.ssi-pinterest:hover {
	background: #ce1829;
}

.ssi-search:hover {
	background: orange;
}

.ssi-skype:hover {
	background: #00aff0;
}

.ssi-tumblr:hover {
	background: #639ec8;
}

.ssi-foursquare:hover {
	background: #0894c9;
}

/* ---- Icon Tweaks ---- */
.linkedin-icon,
.call-icon {
	font-size: 25px;
	color: #000000b2;
	padding: 6px;
	border-radius: 50%;
	display: inline-block;
}

/* ---- Phone icon on hover ---- */
.ssi-phone:hover .call-icon {
	color: #fff;
}

/* ---- Text color change ---- */
.contact-side li:hover span {
	color: #fff;
}

/* =========================
   RESPONSIVE FIXES
   ========================= */
@media (max-width: 768px) {
	#ssi-absolute {
		top: auto;
		bottom: 120px;
		right: 10px;
	}

	.contact-side {
		display: block;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 8px;
	}

	.contact-side li {
		width: auto;
		right: 0 !important;
		height: auto;
		font-size: 18px;
		line-height: 32px;
		background: #ececec;
		padding: 4px 8px;
		border-radius: 8px;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
		transition: none;
		/* disables slide animation */
	}

	.contact-side li span {
		display: none;
	}

	.contact-side li img {
		width: 32px;
		height: 32px;
	}

	.contact-side li:hover {
		right: 0 !important;
	}
}


/* =========================
   SAFE NOTES:
   - No keyframes or transform used (safe for AOS/WOW)
   - Uses right + background transitions only
   - Gradients used instead of infinite animations
   ========================= */

/* =========================
   PERFORMANCE NOTES:
   - Removed continuous color-change animations.
   - Removed transform & keyframes to prevent AOS/WOW conflicts.
   - Lowered z-index below sticky headers and modals.
   ========================= */



#btnAdmission {
	height: 0px;
	width: 69px;
	position: fixed;
	right: 0;
	top: 56%;
	z-index: 9999;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	display: none;
}

/* --- MOBILE VIEW FIX --- */


/* Home Page Animations */

/* .home-slider-sec {
	overflow: hidden;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.slider-image {
	transition: transform 0.6s ease;
}

.carousel-caption {
	transition: transform 0.6s ease, opacity 0.6s ease;
}

.home-slider-text {
	transition: transform 0.6s ease, opacity 0.6s ease;
} */

/* On-scroll animation */
[data-scroll] {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.9s ease-out;
}

[data-scroll].visible {
	opacity: 1;
	transform: translateY(0);
}


.about-img-content img {
	display: block;
	margin: 0 auto;
	transform-origin: center center;
	animation: rotateImage 50s linear infinite;
	transition: transform 0.5s ease-in-out;
}

/* Optional: Pause rotation on hover */
.about-img-content img:hover {
	animation-play-state: paused;
}

@keyframes rotateImage {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


/* Vsion animations */



[data-scroll="fade-up"].active {
	transform: translateY(0);
}

[data-scroll="zoom-in"].active {
	transform: scale(1);
	animation: zoomIn 1s ease;
}

[data-scroll="zoom-in"] {
	transform: scale(0.8);
}

[data-scroll="rotate-in"].active {
	animation: rotateIn 1s ease forwards;
}

[data-scroll="slide-left"] {
	transform: translateX(50px);
}

[data-scroll="slide-left"].active {
	transform: translateX(0);
}

[data-scroll="slide-right"] {
	transform: translateX(-50px);
}

[data-scroll="slide-right"].active {
	transform: translateX(0);
}

@keyframes zoomIn {
	from {
		transform: scale(0.7);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes rotateIn {
	from {
		transform: rotate(-45deg);
		opacity: 0;
	}

	to {
		transform: rotate(0deg);
		opacity: 1;
	}
}

.owl-carousel-alumni-left .owl-item.active .alumni-item,
.owl-carousel-alumni-right .owl-item.active .alumni-item-right {
	animation: waveRise 1.1s cubic-bezier(0.25, 1, 0.5, 1) both;
}

@keyframes waveRise {
	0% {
		transform: translateY(40px) scale(0.95);
		opacity: 0;
	}

	60% {
		transform: translateY(-8px) scale(1.02);
		opacity: 1;
	}

	100% {
		transform: translateY(0) scale(1);
	}
}








/* Inner Page css */
/* Pdf Css */
.btn-container {
	padding: 20px 0;
}

.btn-pdf {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.9rem 1rem 0.9rem 3rem;
    background: linear-gradient(135deg, #660022, #8b0033);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(102, 0, 34, 0.15);
    position: relative;
    overflow: hidden;
    border: none;
    height: auto !important;
    margin-bottom: 1rem;
    width: 277px;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.3;
    text-align: left;
    word-break: break-word;
}

.btn-pdf:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(102, 0, 34, 0.25);
	color: white;
}

/* PDF icon */
.btn-pdf::before {
	content: '';
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	background-image: url("https://whitecodesystems.com/staging/mnwc-college/uploads/file-pdf-svgrepo-com.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.3s ease;
}

.btn-pdf:hover::before {
	transform: translateY(-50%) scale(1.15);
}

/* Shine effect */
.btn-pdf::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.15),
			transparent);
	transition: left 0.6s ease;
}

.btn-pdf:hover::after {
	left: 100%;
}

/* Fade-in animation */
@keyframes buttonFadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn-pdf {
	animation: buttonFadeIn 0.5s ease-out forwards;
}


@media (max-width: 576px) {
	.btn-pdf {
		font-size: 0.85rem;
		padding: 0.7rem 1rem 0.7rem 2.5rem;
		height: 55px;
		/* ✅ fixed compact height on small screens */
		line-height: 1.2;
	}

	.btn-pdf::before {
		width: 16px;
		height: 16px;
		left: 0.9rem;
	}
}

/* Image Css & Heading Css */


.title-head {
	font-size: 20px;
	font-weight: 600;
	color: #F88379;
}

.title-subhead {
	font-size: 20px;
	font-weight: 600;
	margin-top: 5px;
	color: #d4af37;
	cursor: default;
}

/* Program Outcomes */

.program-card {
	background: white;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(102, 0, 34, 0.1);
	transition: all 0.4s ease;
	border-top: 4px solid #d4af37;
	height: 100%;
	position: relative;
	overflow: hidden;
	animation: fadeInUp 1s ease;
}

.program-card:nth-child(1) {
	animation-delay: 0.1s;
}

.program-card:nth-child(2) {
	animation-delay: 0.2s;
}

.program-card:nth-child(3) {
	animation-delay: 0.3s;
}

.program-card:nth-child(4) {
	animation-delay: 0.4s;
}

.program-card:nth-child(5) {
	animation-delay: 0.5s;
}

.program-card:nth-child(6) {
	animation-delay: 0.6s;
}

.program-card:nth-child(7) {
	animation-delay: 0.7s;
}

.program-card:nth-child(8) {
	animation-delay: 0.8s;
}

.program-card:nth-child(9) {
	animation-delay: 0.9s;
}

.program-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;

}

/* .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 0, 34, 0.15);
        } */

.program-card:hover::before {
	transform: scaleX(1);
}

.program-card h4 {
	color: #660022;
	font-weight: 500;
	position: relative;
	/* margin-bottom: 20px;
            padding-bottom: 10px;*/
}

/*   .program-card h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        
        .program-card:hover h4::after {
            width: 100%;
        } */

.program-head {
	color: #660022;
	font-weight: 600;
	margin: 20px 0 15px;
	display: flex;
	align-items: center;
	background: linear-gradient(to right, #E6BE8A, #f0e2cc);
	padding: 10px 15px;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(230, 190, 138, 0.3);
	font-size: 19px;
	cursor: default;
}

.program-head::before {
	content: '\f0a9';
	font-family: 'Font Awesome 5 Free';

	font-weight: 900;
	margin-right: 10px;
	color: #660022;
}

.program-card ul {
	padding-left: 0;
	list-style: none;
}

.program-card li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.program-card li::before {
	content: '\f054';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	padding-right: 10px;
	left: 0;
	color: #F88379;
	font-size: 0.8rem;
	position: absolute;
	top: 6px;
}

.program-card a {
	color: #660022;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	padding: 5px 0;
	position: relative;
	font-weight: 500;
	text-decoration: underline;
	font-size: 17px;
}

.program-card a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #d4af37;
	transition: width 0.3s ease;
}

.program-card a:hover {
	color: #F88379;
	transform: translateX(5px);
}

.program-card a:hover::after {
	width: 100%;
}

.program-card a i {
	margin-left: 5px;
	font-size: 0.8rem;
	opacity: 0;
	transition: all 0.3s ease;
	color: #d4af37;

}

.program-card a:hover {
	text-decoration: none;
}

.program-card a:hover i {
	opacity: 1;
	transform: translateX(3px);

}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
	}
}


/* Tab Structure */


.nav-pills {
	background-color: hsl(300, 100%, 100%);
	/* border-radius: 8px; */
	/* padding: 10px; */
	position: sticky;
	top: 51px;
}

.left-tab {
	padding: 0;
}

.nav-pills .nav-link {
	color: #fff;
	margin-bottom: -1px;
	background: #660022;
	border: 1px solid #06406570;
	border-radius: 0;
	text-align: left;
}

.nav-pills .nav-link:hover {
	background-color: #fdbd0f;
	color: #333;
}

.nav-pills .nav-link.active {
	background-color: #ffffff;
	color: black;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	font-weight: 600;
}


/* Mobile View: Accordion */
.accordion-button {
	background-color: var(--primary-color);
	color: white;
	font-weight: 500;
}

.accordion-button:not(.collapsed) {
	background-color: var(--active-color);
	color: var(--primary-color);
	box-shadow: none;
}

.accordion-button:hover {
	background-color: var(--hover-color);
	color: #333;
}

.accordion-body {
    padding: 10px !important;
}

.accordion-item {
	border: 1px solid var(--border-color);
	margin-bottom: 10px;
	border-radius: 6px;
	overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.table-responsive {
		border: 1px solid var(--border-color);
		border-radius: 6px;
	}
}

.tab-content {
	padding: 0 !important;
}

@media (max-width: 768px) {
	.btn-pdf {
		padding: 10px 15px 10px 50px;
	}

	.btn-pdf:before {
		left: 15px;
		width: 25px;
		height: 25px;
	}

	.btn-text {
		font-size: 0.8rem;
	}

}

.table-bg {
	background: #ececec;
}

th.serial-width {
	width: 76px;
	text-align: end;
}





/* Accordion-button-css */
.accordion-button {
	color: #ffff !important;
	font-weight: 600;
	border: none;
	/* border-radius: 10px; */
	padding: 1rem 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.35s ease;
	letter-spacing: 0.5px;
	background: #660032;
}

.accordion-button:hover {
	background: #660022;
	color: #ffff;
	transform: scale(1.02);
}

.accordion-button:not(.collapsed) {
	background: #660022;
	color: #ffff !important;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.accordion-button:focus {
	box-shadow: 0 0 0 3px rgba(165, 0, 93, 0.4);
	border: none;
}

.accordion-button::after {
	filter: invert(1) brightness(1.5);
	transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
}



/* list CSS */
.sparkle::before {
	content: '✧';

	left: 10px;
	top: 0 px;
	color: #660022;
	font-size: 20px;
	font-weight: bold;
	text-shadow: 0 0 8px rgba(102, 0, 50, 0.4);
	padding-right: 10px;
}

.star::before {
	content: '❖ ';
	left: 10px;
	top: 0 px;
	color: #660022;
	font-size: 20px;
	font-weight: bold;
	/* text-shadow: 0 0 8px rgba(102, 0, 50, 0.4); */
	padding-right: 5px;
}







/*  MNWC Milestone CSS Code*/
/* Timeline Container */
.timeline {
	position: relative;
	max-width: 1000px;
	margin: auto;
}

/* Vertical Line */
.timeline::before {
	content: "";
	position: absolute;
	width: 20px;
	background-color: #662200;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

/* Milestone Box */
.milestone {
	position: relative;
	width: 50%;
	padding: 10px 0;
}

.milestone.left1 .content {
	text-align: left;
}


.milestone.left1 {
	left: 0;
	text-align: right;
}

.milestone.right {
	left: 50%;
	text-align: left;
}

/* Content Box */
.content {
	background: #fff;
	padding: 20px;
	border-radius: 6px;
	border-left: 5px solid #550029;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.content ul {
	list-style: none;
	padding-left: 0;
	text-align: left;
}

.content ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 8px;
	color: #555;
	line-height: 1.5;
}

/* Star icon before list item */
.content ul li::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "❖ " !important;
	color: rgb(102, 0, 50);
	font-size: 20px;
	font-weight: bold;
	padding-right: 5px;
}

.milestone.left1 .content {
	margin-right: 80px;
}

.milestone.right .content {
	margin-left: 80px;
}

.milestone::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: #d4af37;
	border-radius: 50%;
	z-index: 3;
}

.milestone.left1::before {
	right: -20px;
}

.milestone.right::before {
	left: -20px;
}

.milestone h3 {
	margin: 0 0 10px;
	color: #333;
	font-size: 20px;
	text-align: left;
}

.milestone .content::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 75px;
	/* dotted line length */
	height: 0;
	border-top: 3px dotted #662200;
	z-index: 1;
}

/* For LEFT side boxes */
.milestone.left1 .content::before {
	right: -75px;
	/* dotted line goes toward circle */
}

/* For RIGHT side boxes */
.milestone.right .content::before {
	left: -75px;
	/* dotted line goes toward circle */
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
	.timeline::before {
		left: 25px;
		/* vertical line left side */
	}

	.milestone {
		width: 100%;
		padding: 20px 0 20px 50px;
		text-align: left;
		position: relative;
	}

	/* Both milestones left aligned in mobile */
	.milestone.left1,
	.milestone.right {
		left: 0;
		text-align: left;
	}

	/* same spacing for both left & right boxes */
	.milestone.left1 .content,
	.milestone.right .content {
		margin: 10px 0 10px 50px !important;
	}

	/* Circle (icon) positioning for mobile */
	.milestone::before {
		left: 5px !important;
		/* same for both left & right */
		right: auto;
		top: 50%;
		transform: translateY(-50%);
	}
}





/***Smt. Maniben - Our Role Model css code***/
.maniben-section {
	margin-top: 10px;
}

.maniben-section h3 {
	color: #550029;
	font-weight: 600;
	margin-bottom: 10px;
}

.maniben-img {
	border-radius: none;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: fill;
	object-position: top;
	height: 294px;
	transition: transform 0.3s ease;
	vertical-align: top;
}

.maniben-img:hover {
	transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
	.maniben-section .row {
		text-align: center;
	}

	.maniben-section .col-md-6,
	.maniben-section .col-md-3 {
		margin-bottom: 20px;
	}

	.maniben-img {
		max-height: 320px;
	}

	.program-card {
		margin-bottom: 20px;
	}
}

/*Table */
.table-head-style thead th {
	background-color: #660022 !important;
	color: white !important;
}


td.table-txt {
	color: white;
}

.table-bg {
	background: #660022;
}


.view-btn {
	background-color: #f88379;
	color: #ffffff;
	border-radius: 6px;
	border: transparent;
	width: 100%;
	padding: 2px 10px;
	text-decoration: none;
}

.view-btn:hover {
	transition: 0.5s;
	color: white;
	background-color: #660022;
}

@media (max-width: 1440px) {
	img.img-fluid.rounded.shadow.img-8-nss-yrc {
		height: 175px;
		width: 100%;
	}

	img.img-fluid.rounded.shadow.img-19-nss-yrc {
		height: 175px;
		width: 100%;
	}

	img.img-fluid.rounded.shadow.img-17-nss-yrc {
		height: 170px;
		width: 100%;
	}

	img.img-fluid.rounded.shadow.img-22-nss-yrc {
		width: 100%;
		height: 176px;
	}
}

@media (max-width: 1024px) {
	img.img-fluid.rounded.shadow.img-8-nss-yrc {
		height: 123px;
		width: 100%;
	}

	img.img-fluid.rounded.shadow.img-22-nss-yrc {
		width: 100%;
		height: 123px;
	}

	img.img-fluid.rounded.shadow.img-19-nss-yrc {
		width: 100%;
		height: 123px;
	}

	img.img-fluid.rounded.shadow.img-17-nss-yrc {
		width: 100%;
		height: 123px;
	}
}

@media (max-width: 768px) {
	img.img-fluid.rounded.shadow.img-8-nss-yrc {
		height: 115px;
		width: 300px;
	}

	img.img-fluid.rounded.shadow.img-17-nss-yrc {
		height: 115px;
		width: 300px;
	}

	img.img-fluid.rounded.shadow.img-19-nss-yrc {
		height: 115px;
		width: 300px;
	}

	img.img-fluid.rounded.shadow.img-22-nss-yrc {
		height: 115px;
		width: 300px;
	}
}

/* Admission Procedure */
.admission-para {
	margin-bottom: 1.5rem;
	text-align: justify;
	animation: fadeIn 1s ease-out 0.4s both;
}

.list-group {
	margin-bottom: 1.5rem;
}

.list-group li {
	position: relative;
	padding: 10px 15px 10px 40px;
	margin-bottom: 10px;
	background-color: rgba(230, 190, 138, 0.1);
	border-left: 3px solid #E6BE8A;
	border-radius: 0 8px 8px 0;
	transition: all 0.4s ease;
	animation: fadeInUp 0.8s ease-out;
	animation-fill-mode: both;
}

.list-group li:nth-child(1) {
	animation-delay: 0.5s;
}

.list-group li:nth-child(2) {
	animation-delay: 0.6s;
}

.list-group li:nth-child(3) {
	animation-delay: 0.7s;
}

.list-group li:nth-child(4) {
	animation-delay: 0.8s;
}

.list-group li:nth-child(5) {
	animation-delay: 0.9s;
}

.list-group li:nth-child(6) {
	animation-delay: 1.0s;
}

.list-group li:nth-child(7) {
	animation-delay: 1.1s;
}

.list-group li:nth-child(8) {
	animation-delay: 1.2s;
}

.list-group li:nth-child(9) {
	animation-delay: 1.3s;
}

.list-group li:nth-child(10) {
	animation-delay: 1.4s;
}

.list-group li:nth-child(11) {
	animation-delay: 1.5s;
}

.list-group li:hover {
	background-color: rgba(230, 190, 138, 0.25);
	transform: translateX(8px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: default;
}

.list-group li:before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #d4af37;
}

.list-group ol li {
	counter-increment: list;
	padding-left: 45px;
}

.list-group ol li:before {
	content: counter(list) ".";
	font-family: inherit;
	font-weight: 600;
	color: #660022;
}


hr {
	border: 0;
	height: 4px;
	background: linear-gradient(to right, #fcf8f3, #d4af37, #fcf8f3);
	margin: 10px !important;
	animation: expandWidth 2s ease-out;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes expandWidth {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.section-title {
		font-size: 1.8rem;
	}


	.list-group li {
		padding: 8px 12px 8px 35px;
	}
}

.content-card {
	background: white;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

	border-top: 4px solid #d4af37;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	animation: fadeIn 1s ease-out 0.2s both;
}


/* Floating animation for visual interest */
.floating {
	animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
	0% {
		transform: translate(0, 0px);
	}

	50% {
		transform: translate(0, 10px);
	}

	100% {
		transform: translate(0, -0px);
	}
}

.content-card.obj-card {
	padding-bottom: 0px;
	padding-top: 0px;
}

.content-card.func-card {
	padding-bottom: 0px;
	padding-top: 0px;
}

/*Equal Opportunity Cell */

.equal-opportunity-card {
	padding-top: 0px;
	padding-bottom: 0px;
}

.function-head {
	margin-top: 15px;
}

/* NSS */
img.img-fluid.rounded.shadow.img-22-nss-yrc {
	height: 176px;
	width: 100%;
}



/* Administration staff card  */

.staff-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 0.6rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	/* needed for ::before bar */
	overflow-wrap: anywhere;
}


.staff-card img {
	width: 150px;
	height: 200px;
	object-fit: cover;
	border: 2px solid #000;
	border-radius: 0.4rem;
}

/* Text styling */
.staff-card p {
	margin-bottom: 6px;
	color: #333;
	font-size: 0.95rem;


	text-align: left;
	letter-spacing: normal;
	word-spacing: normal;
}

.staff-card strong {
	color: #120f10;
}

/* Decorative top bar */
.staff-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: #6b1731;
	border-top-left-radius: 0.6rem;
	border-top-right-radius: 0.6rem;
}

/* Responsive tweak */
@media (max-width: 768px) {
	.staff-card img {
		width: 120px;
		height: 120px;
	}
}

@media (max-width:375px) {

	.bncdc-staff.p-3 {
		height: 300px !important;
	}
}


/* Counseling Cell */

.section-title1 {
	color: #660022;
	border-bottom: 2px solid #E6BE8A;
	padding-bottom: 10px;
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 1.2rem;
}

/* Introduction Section */
.introduction {
	margin-bottom: 30px;
}

.introduction p {
	margin-bottom: 15px;
	text-align: justify;
	padding: 0 10px;
}

/* Vision & Mission */
.vision-mission {
	margin-bottom: 30px;
	background-color: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.vision-mission h5 {
	margin-top: 10px;
}

.mission-item {
	position: relative;
	padding: 12px 0 12px 50px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #E6BE8A;
}

.mission-item:last-child {
	border-bottom: none;
}

.mission-item .icon-img {
	position: absolute;
	left: 0;
	top: 12px;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

/* Counselor Info */
.counselor-info {
	background-color: #fff9f0;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 30px;
	border-left: 5px solid #e6be8a;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.counselor-info a {
	color: #660022;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.counselor-info a:hover {
	color: #8B0033;
	text-decoration: underline;
}

/* Cards Layout */
.card-container {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-bottom: 25px;
}

.counseling-card {
	flex: 1 1 calc(50% - 25px);
	background-color: white;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	border-top: 4px solid #e6be8a;
}

.counseling-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.facility-item,
.process-item {
	padding: 10px 0 10px 45px;
	margin-bottom: 8px;
	position: relative;
}

.facility-item .icon-img,
.process-item .icon-img {
	position: absolute;
	left: 0;
	top: 10px;
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.nested-list {
	margin-top: 10px;
	margin-left: 20px;
}



/* Responsive Design */
@media (max-width: 768px) {
	.counseling-card {
		flex: 1 1 100%;
	}


}

@media (max-width: 480px) {
	.section-title {
		font-size: 1.3rem;
	}

	.counseling-card {
		padding: 15px;
	}

	.mission-item,
	.facility-item,
	.process-item {
		padding-left: 40px;
	}

	.mission-item .icon-img,
	.facility-item .icon-img,
	.process-item .icon-img {
		width: 24px;
		height: 24px;
	}
}

.text-danger {
	color: #660022 !important;

}


/* Ordered List Styling */
.styled-ol {
	list-style-type: none;
	counter-reset: custom-counter;
	padding-left: 0;

}

.styled-ol li {
	counter-increment: custom-counter;
	position: relative;
	padding: 15px 0 15px 45px;
	border-bottom: 1px dashed #E6BE8A;
	font-size: 1.1rem;
	line-height: 1.2;
	cursor: default;
}

.styled-ol li:last-child {
	border-bottom: none;
}

.styled-ol li:before {
	content: counter(custom-counter);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #660022, #8B0033);
	color: white;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1rem;
	box-shadow: 0 4px 8px rgba(102, 0, 34, 0.3);

}


@media (max-width: 768px) {
	.styled-ol li {
		padding-left: 55px;
		font-size: 1rem;
	}

	.styled-ol li:before {
		width: 25px;
		height: 25px;
		font-size: 0.9rem;
	}

	.unstyled-ul li {
		padding-left: 40px;
		font-size: 1rem;
	}


}

@media (max-width: 480px) {
	.styled-ol li {
		padding-left: 50px;
		font-size: 0.95rem;
	}

	.styled-ol li:before {
		width: 20px;
		height: 20px;
		font-size: 0.85rem;
	}

	.unstyled-ul li {
		padding-left: 35px;
		font-size: 0.95rem;
	}

}

/* Unordered list */

/* Option 1: Icon-based Design */
.unstyled-ul {
	list-style-type: none;
	padding-left: 0;

}

.unstyled-ul li {
	position: relative;
	padding: 5px 0 5px 30px;
	cursor: default;
}

.unstyled-ul li:before {
	content: "➥";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #660022;
	font-size: 1.2rem;
	font-weight: bold;
}

.unstyled-ul li:hover:before {
	color: #E6BE8A;
	transform: translateY(-50%) scale(1.2);
	transition: all 0.3s ease;

}


/* Our Toppers & Awards */
.main-container {
	max-width: 1400px;
	margin: -60px auto 0;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

/* Stats Cards */
.stats-section {
	margin-bottom: 50px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.stat-card {
	background: white;
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(102, 0, 34, 0.1);
	transition: all 0.4s ease;
	border: 1px solid rgba(102, 0, 34, 0.1);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(102, 0, 34, 0.15);
}

.stat-icon {
	font-size: 2.2rem;
	color: #660022;
	margin-bottom: 15px;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #660022;
	margin-bottom: 5px;
	display: block;
}

.stat-label {
	color: #660022;
	font-weight: 600;
	font-size: 0.95rem;
}

/* Toppers Grid */
.toppers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 50px;
}

.topper-card {
	background: white;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 8px 25px rgba(102, 0, 34, 0.08);
	transition: all 0.3s ease;
	border-top: 4px solid #d4af37;
	height: 100%;
}

.topper-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(102, 0, 34, 0.12);
}

.year-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #E6BE8A;
}

.year-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #660022;
	margin: 0;
}

.year-badge {
	background: #d4af37;
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

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

.topper-item {
	padding: 10px 0;
	border-bottom: 1px dashed #eee;
	position: relative;
	padding-left: 25px;
	font-size: 17px;
}

.topper-item:last-child {
	border-bottom: none;
}

.topper-item::before {
	content: '\f521';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #d4af37;
	font-size: 0.8rem;
}

/* Awards Section */
.awards-section {
	margin-top: 60px;
}

.awards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
}

.award-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(102, 0, 34, 0.1);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
}

.award-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(102, 0, 34, 0.15);
}

.award-header {
	background: linear-gradient(135deg, #660022, #8B0032);
	color: white;
	padding: 25px;
	text-align: center;
}


.award-head {
	color: #ffff;
}


.award-para {
	color: #ffff;
}

.award-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin: 0 auto 15px;
	display: block;
}


.award-body {
	padding: 25px;
	flex-grow: 1;
}

.award-img {
	width: 100%;
	border-radius: 10px;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-container {
	margin-top: 20px;
}

.custom-badge {
	background: linear-gradient(135deg, #660022, #8B0032);
	color: white;
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	margin-right: 8px;
	margin-bottom: 8px;
	display: inline-block;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin: 0 0 40px;
}

.section-title {
	color: #660022;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}


.section-subtitle {
	color: #666;
	font-size: 1.1rem;
	margin: 0 auto;
}




/* Responsive Design */
@media (max-width: 768px) {
	.toppers-grid {
		grid-template-columns: 1fr;
	}

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

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

	.section-title {
		font-size: 1.8rem;
	}
}

@media (max-width: 576px) {

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

	.section-title {
		font-size: 1.6rem;
	}
}

/* Video Podcast */

.video-podcast-section {
	max-width: 1200px;
}

/* Card styling */
.podcast-card {
	transition: transform 0.3s ease;
	border-radius: 12px;
}

.podcast-body {
	margin-bottom: 10px;
	padding-top: 0;
}

.podcast-card:hover {
	transform: scale(1.03);
}

/* Thumbnail */
.podcast-thumbnail {
	cursor: pointer;
	border-radius: 12px 12px 0 0;
}

/* Text styling */
.podcast-title {
	font-weight: 500;
	color: #660032;
}

/* Modal styling */
.podcast-modal .modal-content {
	border-radius: 0.75rem;
	overflow: hidden;
}

.podcast-modal .btn-close {
	z-index: 10;
}


/* MNAA Speaks */

video.video-thumb {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
}

video.video-thumb:hover {
	transform: scale(1.03);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-content {
	background: #fff;
	border: none;
}

.btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: white;
	border-radius: 50%;
	padding: 8px;
	opacity: 1;
}

.btn-close:hover {
	background-color: #ddd;
}


.li-item {
	text-decoration: underline;
}

.li-item:hover {

	color: #8b0000;
}

.document-heading-width {
	width: 275px;
}

@media (max-width:1025px) {
	.document-heading-width {
		width: 192px;
	}
}

@media (max-width:770px) {
	.document-heading-width {
		width: 136px;
	}
}

@media(max-width:426px) {
	.document-heading-width {
		width: 81px;
	}
}

/* CRM */

.course-img,
.classroom-img,
.subject-img,
.project-img img {
	width: 80%;
	height: auto;
	max-width: 100%;
	border-radius: 8px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

/* Add spacing between sections */
.section {
	margin-bottom: 3rem;
}

/* For smaller screens */
@media (max-width: 768px) {

	.course-img,
	.classroom-img,
	.subject-img,
	.project-img img {
		margin-top: 1rem;
		border-radius: 6px;
	}
}


/* Principal msg */
.principal-section {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.section-headers {
	background: linear-gradient(to right, #660022, #f88379);
	color: white;
	padding: 20px 30px;
	border-bottom: 5px solid rgba(255, 255, 255, 0.2);
}

.section-headers h2 {
	margin: 0;
	font-weight: 600;
	font-size: 1.8rem;
	color: #ffff;
	text-align: left;
}

.section-headers .college-name {
	font-size: 1rem;
	opacity: 0.9;
	margin-top: 5px;
	color: #ffff;
	text-align: left;

}

.message-content {
	padding: 0px 30px;
}

.message-font {
	font-size: 1.3rem;
	font-weight: 600;
	color: #660022;
	display: block;
}

.message-content p {
	text-align: justify;
}

.highlight-word {
	color: #f88379;
	font-weight: 700;
	font-size: 1.2em;
}

.principal-info {
	background-color: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-bottom: 5px solid #660022;
}

.principal-photo {
	width: 230px;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
	border: 3px solid #660032;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.principal-name {
	font-weight: 700;
	color: #660022;
	font-size: 1.3rem;
	margin-bottom: 5px;
}

.principal-title {
	color: #f88379;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 18px;
}


.college-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 25px 0;
}

.closing-message {
	background-color: rgb(252 246 225);
	border-left: 4px solid #f88379;
	padding: 20px;
	border-radius: 0 8px 8px 0;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.principal-section {
		margin: 15px;
	}

	.message-content {
		padding: 0px 20px;
	}

	.principal-info {
		margin-top: 30px;
	}
}

/* Chairperson msg */
.Chairperson-content {
	background: linear-gradient(135deg, #f7dde6 0%, #ffffff 100%);
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin: 30px auto;
	max-width: 1200px;
}

.highlight-year {
	color: #f88379;
	font-weight: 500;
	font-size: 1em;
}

.chairperson-info {
	background-color: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-bottom: 5px solid #660022;
}

.chairperson-photo {
	width: 230px;
	height: 250px;
	object-fit: cover;
	border-radius: 10px;
	border: 3px solid #660032;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.chairperson-name {
	font-weight: 700;
	color: #660022;
	font-size: 1.3rem;
	margin-bottom: 5px;
}

.chairperson-title {
	color: #f88379;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 18px;

}

@media (max-width: 768px) {
	.Chairperson-content {
		margin: 15px;
	}


	.chairperson-info {
		margin-top: 30px;
	}
}


/* management body card */

.management-card {
	background: #ffffff;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	border: 1px solid #e0e0e0;
	border-bottom: 6px solid #660022;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.management-card img {
	width: 100px;
	max-width: 150px;
	border-radius: 10px;
	border: 1px solid #800000;
	/* Maroon border */
}

.management-card p {
	margin: 0;
	color: #333;
	font-size: 16px;
}


/* CARD BOX */
.content-block {
	background: #fff;
	padding: 25px 30px;
	border-radius: 0 px;
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-bottom: 2px solid #d4af37;
}

/* Pathway */

.about-section {
	padding-top: 0px !important;

}

.section-title1 {
	font-size: 26px;
	font-weight: 700;
	color: #660022;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* IMAGE ICON */

.pathway-img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	animation: pop 1.4s ease-in-out infinite alternate;
	filter: invert(12%) sepia(90%) saturate(900%) hue-rotate(-20deg) brightness(80%) contrast(120%);
	margin-inline-end: 10px;
}



/* animation */
@keyframes pop {
	0% {
		transform: scale(1);
		opacity: 0.85;
	}

	100% {
		transform: scale(1.25);
		opacity: 1;
	}
}

/* RESPONSIVE */
@media(max-width: 768px) {
	.section-title1 {
		font-size: 22px;
	}

	.content-block {
		padding: 20px;
	}
}


p {
	color: #696984;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

li {
	color: #696984;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;

}

.inner-para {
	color: #696984;
	font-family: "DM Sans" !important;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	cursor: default;
}

.history-photo {
	width: 215px;
	height: 215px;
	border-radius: 10px;
	border: 3px solid #660032;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.award-body {
	display: flex;
	flex-direction: column;
}

.certificate-btn {
	align-self: flex-end;
	margin-top: 10px;
	padding: 6px 15px;
	background: #f88379;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
}

.certificate-btn:hover {
	color: #fff;
}


/* LMS */
.login-card {
	background: #faf3e0;
	border-radius: 12px;
	padding: 45px 25px 30px;
	text-align: center;
	border: 1px solid #e5e5e5;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	position: relative;
	margin-top: 40px;
}

.icon-circle {
	width: 70px;
	height: 70px;
	background: #800000;
	border-radius: 50%;
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 5px solid #fff;
	box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

.icon-small {
	width: 35px;
	height: 35px;
	object-fit: contain;
}

.card-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 70px 25px;
}

.login-card h3 {
	margin-top: 20px;
	font-size: 22px;
	color: #800000;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.login-card p {
	margin: 8px 0 20px;
	font-size: 15px;
	color: #555;
}

.login-btn {
	background: #f88379;
	color: #fff;
	padding: 10px 30px;
	border-radius: 25px;
	font-weight: 600;
	display: inline-block;
	transition: 0.3s ease;
}

.login-btn:hover {
	background: #800000;
	color: #fff;

}

.principal-info2 {
	background-color: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* IMAGE CSS ONLY - RIGHT SIDE */
.main-image-container {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	transition: transform 0.3s ease;
	border: 2px solid #e0e0e0;
	/* Faint gray border */
	height: 300px;
}

.main-image-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.image-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(102, 0, 34, 0.9), transparent);
	color: white;
	padding: 12px 15px;
	font-size: 0.95rem;
	font-weight: 500;
}

@media (max-width: 991px) {
	.main-image-container {
		margin-top: 15px;
	}
}

@media (max-width: 576px) {
	.image-caption {
		padding: 10px 12px;

	}
}

@media only screen and (max-width: 417px) {
	.bred-pos {
		position: relative;
		top: -58px !important;
	}
}

.container.bread-align {
	margin-left: 3px;
}



/* ================= Tree Structure Start ================= */
/* --- Base Setup --- */
.mnwc-tree-section {
	font-family: 'Outfit', sans-serif !important;
	padding: 40px 10px !important;
	background: #fff !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

.mnwc-tree-container {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	max-width: 1200px !important;
	margin: 0 auto !important;
	position: relative !important;
}


.mnwc-main-box {
	background: #660022 !important;
	color: #fff !important;
	padding: 12px 35px !important;
	border-radius: 50px !important;
	font-size: 22px !important;
	font-weight: 800 !important;
	border: 4px solid #D4AF37 !important;
	text-transform: uppercase !important;
	z-index: 20 !important;
	position: relative !important;
	display: inline-block !important;
}

/* --- desktop (769px+) --- */
@media (min-width: 769px) {
	.mnwc-mobile-only {
		display: none !important;
	}

	.mnwc-stem {
		width: 2px !important;
		height: 40px !important;
		background: #333 !important;
	}

	.mnwc-hr-line {
		width: 85% !important;
		height: 2px !important;
		background: #333 !important;
		margin-top: -1px !important;
	}

	.mnwc-grid {
		display: flex !important;
		justify-content: space-between !important;
		width: 95% !important;
	}

	.mnwc-item {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		width: 12.5% !important;
		text-decoration: none !important;
	}

	.mnwc-v-line {
		width: 2px !important;
		background: #333 !important;
	}

	.h-short {
		height: 40px !important;
	}

	.h-med {
		height: 90px !important;
	}

	.h-long {
		height: 160px !important;
	}

	.mnwc-circle {
		width: 85px !important;
		height: 85px !important;
		background: #fff !important;
		border: 3px solid #660022 !important;
		border-radius: 50% !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		transition: 0.3s !important;
	}

	.mnwc-label {
		margin-top: 10px !important;
		font-size: 11px !important;
		font-weight: 800 !important;
		color: #333 !important;
		text-align: center;
	}

	.mnwc-item:hover .mnwc-circle {
		background: #D4AF37 !important;
		transform: scale(1.1) !important;
	}
}

/* --- mobile responsive --- */
@media (max-width: 768px) {
	.mnwc-desktop-only {
		display: none !important;
	}

	.mnwc-mobile-wrapper {
		display: flex !important;
		flex-direction: column !important;
		padding-left: 60px !important;
		margin-top: 0 !important;
		position: relative !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}


	.mnwc-mobile-wrapper::before {
		content: "" !important;
		position: absolute !important;
		left: 85px !important;
		top: -5px !important;
		bottom: 40px !important;
		width: 2px !important;
		background: #333 !important;
		z-index: 1 !important;
	}

	.mnwc-item {
		display: flex !important;
		align-items: center !important;
		margin-bottom: 40px !important;
		text-decoration: none !important;
		position: relative !important;
		z-index: 5 !important;
	}


	.mnwc-m-line {
		width: 25px !important;
		height: 2px !important;
		background: #333 !important;
		flex-shrink: 0 !important;
	}

	.mnwc-circle {
		width: 65px !important;
		height: 65px !important;
		background: #fff !important;
		border: 2px solid #660022 !important;
		border-radius: 50% !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		margin-right: 15px !important;
		flex-shrink: 0 !important;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
	}

	.material-icons {
		font-size: 28px !important;
		color: #660022 !important;
	}

	.mnwc-label {
		font-size: 14px !important;
		font-weight: 800 !important;
		color: #333 !important;
		text-transform: uppercase !important;
		line-height: 1.2 !important;
	}

	.mnwc-item:last-child {
		margin-bottom: 0 !important;
	}
}

/* ===========Cultural Engagement Start================ */
.Cultural-Engagement {
	margin: 60px 0;
}

.section-title {
	color: #660022;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
}

.Cultural-Engagement .sub-head {
	border-left: 5px solid #D4AF37;
	padding-left: 12px;
	color: #660022;
	font-weight: 600;
	margin-bottom: 20px;
}

/* ================= TABS ================= */
.Cultural-Engagement .nav-pills {
	gap: 12px;
}

.Cultural-Engagement .nav-pills .nav-link {
	border-radius: 30px;
	padding: 10px 22px;
	font-weight: 600;
	color: #660022;
	background: #f6f6f6;
	border: 1px solid #D4AF37;
}

.Cultural-Engagement .nav-pills .nav-link.active {
	background: #660022;
	color: #fff;
}

/* ================= CONTENT ================= */
.Cultural-Engagement .tab-content {
	background: #fff;
	padding: 30px;
	border-radius: 14px;
	border-top: 4px solid #D4AF37;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= BUTTON ================= */
.btn-pdf-mnwc {
	display: inline-block;
	padding: 12px 15px;
	background: #D4AF37;
	color: #660022;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
}

.btn-pdf-mnwc:hover {
	background: #660022;
	color: #fff;
}

/* ================= IMAGE ================= */
.Cultural-Engagement .img-thumbnail {
	border-radius: 12px;
	border: 2px solid #D4AF37;
}

/* ================= ACCORDION ================= */
.Cultural-Engagement .accordion-item {
	border: 1px solid #D4AF37;
	border-radius: 12px;
	margin-bottom: 15px;
	overflow: hidden;
}

.Cultural-Engagement .accordion-button {
	background: #660022;
	color: #fff;
	font-weight: 600;
}

.Cultural-Engagement .accordion-body {
	background: #f8f8f8;
}

/* ===========Cultural Engagement End================ */

/* MAIN WRAP */
.student-corner-mnwc {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 70px 10px;


}

/* --- HUB --- */
.student-corner-mnwc .hub-wrap {
	width: 1000px;
	height: 1000px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

/* --- CENTER NODE --- */
.student-corner-mnwc .center-node {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: linear-gradient(135deg, #fff 0%, #ffe0b2 100%);
	color: #5d4037;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 800;
	font-size: 22px;
	padding: 20px;
	border: 4px solid #660032;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), inset 0 0 15px rgba(255, 255, 255, 0.8);
	z-index: 20;
	animation: pulse 2s infinite;
}

.student-corner-mnwc .center-node .center-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 15px;
	background: #ffb200;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.student-corner-mnwc .center-node .center-icon img {
	width: 50px;
	height: 50px;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		transform: translate(-50%, -50%) scale(1.03);
	}

	100% {
		transform: translate(-50%, -50%) scale(1);
	}
}

/* --- RING --- */
.student-corner-mnwc .ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 2px dashed #660022;
	z-index: 1;
	width: 88%;
	height: 88%;

	/* IMPORTANT: click block stop */
	pointer-events: none;
}

/* Radius */
:root {
	--radius: 460px;
}

/* --- NODE --- */
.student-corner-mnwc .node {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 210px;
	min-height: 100px;
	background: #fffdf5;
	border-radius: 20px;
	border: 2px solid #660022;
	border-bottom: 4px solid #660022;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	padding: 12px;
	display: flex;
	gap: 8px;
	align-items: center;

	/* IMPORTANT */
	overflow: hidden;
	z-index: 50;

	transition: all 0.4s ease;

	--total: 11;
	--angle: calc(360deg / var(--total));

	transform:
		translate(-50%, -50%) rotate(calc(var(--i) * var(--angle))) translate(var(--radius)) rotate(calc(var(--i) * var(--angle) * -1));

	animation: nodeEntry 1s ease-out forwards;
	opacity: 0;
	animation-delay: calc(var(--i) * 0.1s);
}

@keyframes nodeEntry {
	from {
		opacity: 0;
		transform:
			translate(-50%, -50%) rotate(calc(var(--i) * var(--angle))) translate(calc(var(--radius) - 50px)) rotate(calc(var(--i) * var(--angle) * -1)) scale(0.8);
	}

	to {
		opacity: 1;
		transform:
			translate(-50%, -50%) rotate(calc(var(--i) * var(--angle))) translate(var(--radius)) rotate(calc(var(--i) * var(--angle) * -1)) scale(1);
	}
}

/* --- CONNECTOR --- */
.student-corner-mnwc .connector {
	position: absolute;
	top: 50%;
	left: 38%;
	width: calc(var(--radius) - 125px);
	height: 2px;
	background: transparent;
	border-bottom: 3px dashed #660032;
	transform-origin: left center;
	z-index: 1;

	--total: 11;
	--angle: calc(360deg / var(--total));

	transform:
		translate(125px, -50%) rotate(calc(var(--i) * var(--angle)));

	/* IMPORTANT: click block stop */
	pointer-events: none;
}

.student-corner-mnwc .connector::after {
	content: '';
	position: absolute;
	right: -8px;
	top: -6px;
	width: 14px;
	height: 14px;
	background-color: #660022;
	border-radius: 50%;
	border: 2px solid white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	z-index: 2;
}

/* --- HOVER --- */
.student-corner-mnwc .node:hover {
	border-color: #ffb200;
	box-shadow: 0 10px 30px rgba(107, 0, 0, 0.2);
	background: #fff;
	cursor: pointer;
	transform:
		translate(-50%, -50%) rotate(calc(var(--i) * (360deg / 11))) translate(var(--radius)) rotate(calc(var(--i) * (360deg / 11) * -1)) scale(1.05);
	z-index: 999;
}

/* --- LINK --- */
.student-corner-mnwc .node a.content1 {
	text-decoration: none;
	color: inherit;
	display: flex;
	gap: 8px;
	width: 100%;
	height: 100%;
	align-items: center;
	flex-direction: row;




	/* IMPORTANT */
	position: relative;
	z-index: 999;
}

/* --- ICON --- */
.student-corner-mnwc .node .icon {
	width: 45px;
	height: 45px;
	border-radius: 12px;
	background: rgba(107, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.student-corner-mnwc .node .icon img {
	width: 24px;
	height: 24px;
}

/* --- CONTENT FIX (content1) --- */
.student-corner-mnwc .node .content1 {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.student-corner-mnwc .node .title {
	font-size: 16px;
	font-weight: 800;
	color: #111;
	line-height: 1.2;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
	.student-corner-mnwc .hub-wrap {
		width: 800px;
		height: 800px;
	}

	:root {
		--radius: 360px;
	}

	.student-corner-mnwc .node {
		width: 170px;
		min-height: 85px;
		padding: 10px;
	}

	.student-corner-mnwc .node .icon {
		width: 35px;
		height: 35px;
	}

	.student-corner-mnwc .node .icon img {
		width: 18px;
		height: 18px;
	}

	.student-corner-mnwc .center-node {
		width: 180px;
		height: 180px;
		font-size: 14px;
		border-width: 5px;
	}

	.student-corner-mnwc .center-node .center-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 10px;
	}

	.student-corner-mnwc .center-node .center-icon img {
		width: 35px;
		height: 35px;
	}

	.student-corner-mnwc .connector {
		width: calc(var(--radius) - 100px);
		transform: translate(100px, -50%) rotate(calc(var(--i) * var(--angle)));
	}
}

@media (max-width: 480px) {
	.student-corner-mnwc .hub-wrap {
		width: 500px;
		height: 500px;
	}

	:root {
		--radius: 220px;
	}

	.student-corner-mnwc .node {
		width: 120px;
		min-height: 60px;
		padding: 5px;
	}

	.student-corner-mnwc .node .icon {
		width: 25px;
		height: 25px;
	}

	.student-corner-mnwc .node .icon img {
		width: 15px;
		height: 15px;
	}

	.student-corner-mnwc .node .title {
		font-size: 10px;
	}

	.student-corner-mnwc .center-node {
		width: 120px;
		height: 120px;
		font-size: 12px;
		border-width: 4px;
		padding: 5px;
	}

	.student-corner-mnwc .center-node .center-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 5px;
	}

	.student-corner-mnwc .center-node .center-icon img {
		width: 25px;
		height: 25px;
	}

	.student-corner-mnwc .connector {
		width: calc(var(--radius) - 60px);
		transform: translate(60px, -50%) rotate(calc(var(--i) * var(--angle)));
	}
}

/* new css 17-02-2026 */
/* Unified Responsive Style for Administrative Department */

/* Unified Responsive Style for Administrative Department */
.unified-layout {
	font-family: var(--font-secondary);
	margin-top: 30px;
}

/* Sidebar Navigation (Desktop) */
.unified-layout .nav-pills-desktop {
	border-right: 1px solid #dee2e6;
	/* Subtle vertical split */
}

.unified-layout .nav-pills {
	border: 1px solid #dee2e6;
	border-radius: 4px;
	overflow: hidden;
}

.unified-layout .nav-pills .nav-link {
	background-color: var(--color-primary);
	color: #ffffff;
	border-radius: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-align: left;

	font-family: var(--font-secondary);

	transition: all 0.2s ease;
}

.unified-layout .nav-pills .nav-link.active {
	background-color: #ffffff !important;
	color: #000000 !important;
	border-bottom: 1px solid #dee2e6;

}

.unified-layout .nav-pills .nav-link:hover:not(.active) {
	background-color: #55001c;
	/* Slightly darker maroon on hover */
	color: #ffffff;
}

/* Content Headings Matching Image */
.unified-layout .sub-head {
	font-family: var(--font-primary);
	font-weight: 400;
	color: #000000;
	font-size: 2.2rem;
	margin-bottom: 15px;
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 3px solid #d1d1d1;
	/* The grey line line from image */
}

.unified-layout .inner-para {
	color: #555555;
	line-height: 1.8;
	font-size: 1.1rem;
	text-align: justify;
	font-family: var(--font-secondary);
}

/* Staff Card Enhancements */
.staff-card {
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	background: #fff;
	border: 1px solid #eee;
	padding: 15px;
	height: 100%;
}

.staff-card p {
	margin-bottom: 5px;
	font-size: 0.95rem;
}

.staff-card p strong {
	color: var(--color-primary);
}

.staff-card img {
	width: 140px;
	height: 180px;
	object-fit: cover;
	border: 1px solid #ddd;
	padding: 4px;
	background: #fff;
	margin-bottom: 15px;
	border-radius: 2px;
}

/* Title Subhead for Staff Sections */
.title-subhead {
	font-family: var(--font-primary);
	color: var(--color-primary);
	font-size: 1.6rem;
	margin-top: 25px;
	margin-bottom: 20px;
}

/* Accordion (Mobile) Styles */
.unified-layout .accordion-button {
	background-color: var(--color-primary);
	color: #ffffff;
	border-radius: 0 !important;
	font-family: var(--font-secondary);
	font-weight: 500;
}

.unified-layout .accordion-button:not(.collapsed) {
	background-color: #660032;
	color: var(--color-primary);
	box-shadow: none;
	border-bottom: 1px solid #dee2e6;
}

.unified-layout .accordion-button::after {
	filter: brightness(0) invert(1);
}

.unified-layout .accordion-button:not(.collapsed)::after {
	filter: brightness(0);
}

.unified-layout .accordion-item {
	margin-bottom: 10px;
	border: 1px solid #dee2e6;
}

/* Utility */
.unified-layout .accordion-header-mobile {
	display: none;
}

@media (max-width: 991.98px) {
	.unified-layout .tab-content>.tab-pane {
		display: block !important;
		opacity: 1 !important;
	}

	.unified-layout .accordion-header-mobile {
		display: block;
	}

	.unified-layout .sub-head-desktop {
		display: none;
	}

	.unified-layout .nav-pills-desktop {
		display: none;
		border-right: none;
	}

	.unified-layout .inner-para {
		padding: 10px;
	}
}

@media (min-width: 992px) {
	.unified-layout .accordion-collapse {
		display: block !important;
	}

	.unified-layout .accordion-item {
		border: none;
		margin-bottom: 0;
	}
}

.amenity-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    width: 100%;
}

.amenity-img-wrapper img {
    width: 100%;
    height: 280px; /* Fixed height for perfect alignment */
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}


.fa-phone:before {
    content: "\f095";
    display: inline-block;
    transform: scaleX(-1);
}