/* Fonts */
:root {
	--font-primary: "Blinker", sans-serif;
	--font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
	--color-primary: #110069;
	--color-secondary: #fdbd0f;
	--color-heading: #fff;
	--color-default: #000000;
}

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

body {
	color: var(--color-primary);
	line-height: 1.5rem;
}
body::-webkit-scrollbar {
	width: 10px;
	background-color: var(--color-primary);
}
body::-webkit-scrollbar-thumb {
	width: 10px;
	background-color: var(--color-secondary);
	border-radius: 20px;
}

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

body,
p,
div,
button,
span,
td,
th,
a {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 400 !important;
}

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

table,
th,
td {
	border: 1px solid #ddd;
	color: #000;
}

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

li,
td,
button {
	font-size: 14px;
}

.shadow {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
		rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* Home Page Headings */

.homePage-sectionHeading {
	color: #33116b;
	font-family: "El Messiri", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	text-align: center;
	padding: 10px;
	border-bottom: 0.5px solid #aaa;
}
.homePage-sectionHeading-white {
	color: #ffffff;
	font-size: 30px;
	font-weight: 600 !important;
	line-height: normal;
}

.page-back-blue {
	background-color: #ffffff;
}

/* Home Page Headings End */

/* header */
/* ------- top menu ---------------- */
/* .web-cust-menu {
	background-color: var(--color-primary) !important;
} */

.web-cust-menu .active {
	background-color: var(--color-primary);
}

.top-menu-left a {
	color: #fff;
}

.topbar-menu .navbar-nav a {
	color: #feb21e !important;
	margin: 0px;
	padding: 6px 8px;
	font-weight: 400;
}
.topbar-menu .navbar-nav a:after {
	margin-left: 10px;
	color: white;
	content: "|";
}

.bg-dark {
	border-radius: 6px;
	background-color: #002858 !important;
}
.topbar-menu {
	z-index: 1021;
}

.top-menu-left {
	display: flex;
}

.top-menu-left a {
	color: #fff;
	padding-right: 50px;
}

.top-menu-left a:hover {
	color: var(--color-secondary) !important;
}

.top-menu li {
	display: flex;
}

.second-menu {
	justify-content: end;
	margin: auto;
}
a.website-link {
	text-decoration: underline;
}

/* a.mobile {
	text-decoration: underline;
} */

@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;
	}
}

/*  header College Name */

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

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

.logo-holder {
	margin-top: -15px;
}

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

.right-logo {
	text-align: right;
}
.header-back {
	background: linear-gradient(180deg, #ffefd1 0%, #fff 100%);
	/*background: #1e89c7;*/
}
.responsive-logo {
	display: none;
}

.header-college-name {
	color: #002858;
	text-shadow: -2px 0px 1px rgba(140, 14, 17, 0.25);
	font-family: "Poppins", sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 37px;
	text-align: start;
	text-transform: uppercase;
}

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

img.header-logo {
	width: 139px;
	margin-top: -43px;
	margin-bottom: 40px;
}

.header-row {
	align-items: center;
	display: flex;
	margin: 0px 0px;
}
.head-line {
	color: #0868a1;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: start;
	text-transform: capitalize;
	margin-bottom: 0px;
}
.feature-section {
    display: flex;
    align-items: center;
    padding: 10px;
}
.sarhad-button {
	border-radius: 5px;
	background: #feb21e;
	color: #002858;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	font-weight: 600 !important;
	line-height: normal;
	padding: 6px 12px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
}

.sarhad-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300%;
	height: 300%;
	background: rgba(255, 255, 255, 0.15);
	transition: all 0.5s ease;
	transform: translate(-50%, -50%) rotate(45deg);
	opacity: 0;
}

.sarhad-button:hover::before {
	width: 100%;
	height: 100%;
	opacity: 1;
}

.sarhad-button:hover {
	background: #064065;
	color: #ffffff;
	transform: scale(1.08) translateY(-2px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.sarhad-button:active {
	transform: scale(1.02) translateY(0);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.sarhad-button:focus {
	outline: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 0, 0, 0.1);
}

.sarhad-feature {
	color: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
}
/* ------- main menu ---------------- */
.main-menu {
    border-radius: 10px 10px 0px 0px;
    /* background: linear-gradient(270deg, #08202d 0%, #16c351 100%); */
    background: #002858 !important;
}

.pride span a {
    background-color: #205911;
    padding: 6px 6px;
    border-radius: 6px;
    font-weight: 600 !important;
    color: #fff;
}

@-webkit-keyframes blinkerhead {
	from {opacity: 1.0;}
	to {opacity: 0.0;}
  }
  .blink{
	  text-decoration: blink;
	  -webkit-animation-name: blinkerhead;
	  -webkit-animation-duration: 0.6s;
	  -webkit-animation-iteration-count:infinite;
	  -webkit-animation-timing-function:ease-in-out;
	  -webkit-animation-direction: alternate;
  }

.main-menu ul li,
.main-menu ul li ul li .dropdown-item {
	color: var(--color-heading);
}

.web-cust-menu .active {
	background-color: var(--color-secondary);
}

.main-menu .navbar-nav .nav-item a {
	color: #fff;
	-webkit-text-stroke-width: 0.20000000298023224;
	-webkit-text-stroke-color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	text-transform: capitalize;
}

.main-menu .dropdown-menu a {
	color: #fff !important;
}

.main-menu .dropdown-item:hover {
	background-color: var(--color-secondary);
	color: #000000;
	cursor: pointer;
}

.main-menu .dropdown-item {
	padding: 10px 9px;
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
	background-color: var(--color-secondary);
	font-weight: 600;
}

.navbar-nav .dropdown-menu li {
	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: -7px;
}

.topbar-menu .navbar-nav ul li :hover {
	background-color: var(--color-secondary);
}

.second-menu li :hover {
	background-color: var(--color-secondary);
}

.second-menu li :active {
	background-color: var(--color-secondary);
}
.topbar-menu .second-menu li .link-active {
	background-color: #000000 !important;
}

.menu-alignment {
	display: contents;
}

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

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    background-color: #002858;
    /* background-color: #1e89c7; */
}

/* Home slider start */

#header-carousel .carousel-control-prev-icon, #header-carousel .carousel-control-next-icon {
    width: 2rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: #323232;
    border: 10px solid #43371d;
}
.banner-slider {
    box-shadow: 2px 2px 4px grey;
    background-image: url('https://sarhadcollege.education/uploads/slider-back.png');
    background-size: cover;
}

.banner-slider img {
    /* background: linear-gradient(180deg, #fff 0%, #fcf5ea 100%); */
    height: 418px;
    object-fit: contain !important;
}
.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: 18px;
}

/* Quick link */
.quick-link-title {
    color: #33116b;
    font-family: "El Messiri", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
/* .club-table {
	border: 0.5px solid #aaa;
	background: #fff;
	width: 100%;
	border-collapse: collapse;
} */

.club-table td {
	padding: 10px;
	font-family: "Roboto", sans-serif;
	/* text-align: center; */
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

.club-table a {
    color: #002858;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500 !important;
}

.club-table a:hover {
	text-decoration: underline;
}
/*  Home slider end */
/* marquee news */

.marquee-news-heading {
	margin-bottom: 0px;
	color: #feb21e;
	font-family: "Blinker", sans-serif;
	font-size: 16px;
	font-weight: 600 !important;
	text-transform: uppercase;
	margin-right: 15px;
	display: flex;
}
.hor-marquee {
	background: #002858;
	padding: 10px 10px 10px 19px;
	align-items: center;
	width: 99%;
	margin: 0px 0px 0px 10px;
}
.hor-marquee a {
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.header-marquee a {
	color: #000000;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
/* end */

/* pride */
.image-info-container {
	text-align: center;
}

.image-wrapper {
	position: relative;
	overflow: hidden;
}

.image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

.info {
	margin-top: 15px;
}

.info h3 {
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500 !important;
	line-height: normal;
}

.info p {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
    margin: 0;
}
/* end */

/* news marquee start */
.news-events .homePage-sectionHeading {
	border-bottom: 0px !important;
	margin: 0;
	padding: 10px 0px;
	border: 0.5px solid #aaa;
	background: #fff;
	font-family: "El Messiri", sans-serif;
}
.news-circular {
	padding: 20px;
	height: 454px;
	border: 0.5px solid #aaa;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
	background: #fff;
}

.holder {
	height: 250px !important;
	overflow: hidden;
	padding: 10px;
}

.quick-link-home {
	height: 500px;
	border: 0.5px solid #aaa;
	background: #fff;
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

.holder marquee {
	position: relative;
	left: 0px;
	top: 10px;
	height: 200px;
	overflow: hidden;
}

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

.holder ul li {
	padding: 10px 0px;
	border-bottom: 1px solid rgb(225, 225, 225);
}

.holder ul li a {
	padding-bottom: 4px;
	display: flex;
	text-decoration: none;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	color: #000;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
/* 
.holder ul li i {
	color: var(--color-secondary);
	font-size: 15px;
	margin-right: 10px;
} */

.holder ul li span {
    color: #000;
    font-size: 15px;
    padding-left: 5px;
}
/* Events & Programs */

.holder-2 {
	height: 269px !important;
	overflow: hidden;
	padding: 10px;
}

.holder-2 marquee {
	position: relative;
	left: 0px;
	top: 10px;
	height: 200px;
	overflow: hidden;
}

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

.holder-2 ul li {
	padding: 10px 0px;
	border-bottom: 1px solid rgb(225, 225, 225);
}

.holder-2 ul li a {
	font-weight: 500;
	padding-bottom: 4px;
	color: var(--color-default);
	display: flex;
	text-decoration: none;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

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

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

.view-all a {
	font-weight: 500;
	padding-top: 5px;
	color: var(--color-heading);
	text-decoration: underline;
	float: right;
	text-decoration: underline;
}

.read-btn {
	font-weight: 500;
	padding-top: 5px;
	color: var(--color-default);
	text-decoration: underline;
	text-decoration: underline;
}

.news-div .btn-news {
	border: none;
	color: #ffffff;
	background-color: transparent;
	float: right;
}

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

.news-category {
	display: none;
}
/* marquee end- */

/* about */
.about-column {
	position: relative;
}
.about-image-1 {
	width: 75%;
	height: auto;
}
/* .about-image-2 {
	position: absolute;
	bottom: 0px;
	top: 165px;
	left: 170px;
	width: 60%;
	height: auto;
	z-index: 1;
} */
.about-image-2 {
    position: absolute;
    bottom: 0px;
    top: 100px;
    left: 185px;
    width: 60%;
    height: auto;
    z-index: 1;
}
.about-text-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-header {
	color: #33116b;
	font-family: "El Messiri";
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.about-sec-info {
	color: #0f172a;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500 !important;
	line-height: 25px;
}
.about-sec-btn {
	border-radius: var(--Components-Button-Border-Radius, 8px);
	/*background: linear-gradient(270deg, #16bf50 0%, #08242e 100%);*/
	background: #002858;
	color: #fff;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
	letter-spacing: 0.075px;
	padding: 14px;
	cursor: pointer;
}

/* end */

/* principal */
.homePage-sectionHeading-orange-vision {
	color: #33116b;
	font-family: "El Messiri";
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.vision-mission li {
	font-weight: 500 !important;
	list-style: none;
	color: #0f172a;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height: 25.6px;
}

.principal-image {
	width: 50%;
	height: auto;
	display: block;
	position: relative;
}
.overlay-content {
	position: absolute;
	top: 50%;
	/* right: 15px; */
	right: 50px;
	transform: translateY(-50%);
	padding: 20px;
	background: rgb(255 255 255);
	width: 100%;
	max-width: 400px;
	z-index: 1;
	border-radius: 5px;
	border: 1px solid var(--Blue-Gray-200, #e2e8f0);
	box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1),
		0px 0px 10px 0px rgba(0, 0, 0, 0.07);
}
.principal-name {
	color:  #002858;
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;
}

.principal-info {
	color: #0f172a;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500 !important;
	line-height: 22.6px;
}
.principal-read-more {
	color: #f47500;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.5px;
}
.bi-arrow-right::before {
	content: "\f138";
	color: #f47500;
	font-weight: 600 !important;
	font-family: bootstrap-icons !important;
}
/* end */

/* Quick links */
.quick-back {
	background-size: cover;
	background-image: url(../img/quick-back.jpg);
	box-shadow: 0px 0px 5px -3px grey;
	background-repeat: no-repeat;
	background-position: center;
}
.sarhad-title {
	color: #fff;
	font-family: "El Messiri";
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.quick-li p {
	color: #fff;
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 14px;
	text-transform: capitalize;
}
.quick-li h2 {
	color: #feb21e;
	text-align: center;
	font-family: "Poller One", serif;
	font-size: 30px;
	font-style: normal;
	font-weight: 400 !important;
	line-height: 14px;
	text-transform: capitalize;
}
.banner-img {
	padding: 20px;
	margin: 0 45px;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}
.counts {
	border: 1px dashed #858585;
	height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
	animation: fadeInUp 0.7s ease-out forwards;
	position: relative;
	overflow: hidden;
}

.counts:hover {
	transform: translateY(-10px) scale(1.05);
}

.count-number {
	font-size: 2.5rem;
	color: #00796b;
	transition: color 0.4s ease;
	animation: pulse 1.5s infinite ease-in-out;
}

.count-number:hover {
	color: #004d40;
}

.counts::before {
	content: "";
	background: radial-gradient(circle, rgb(20 169 75), transparent);
	transition: all 0.5s ease-in-out;
}

.counts:hover::before {
	left: 0;
}

.quick-back h2.student-percent::after {
	content: "+";
	font-size: 2rem;
	animation: fadeInUp 0.5s ease-in-out;
}

/* end */

/* event */
.event-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.event-sec {
	flex-grow: 1;
	text-align: center;
}

.event-sec-2 {
	text-align: right;
}

.past-events-heading {
	margin: 0;
	font-size: 24px;
}

.news-notice-view {
	color: #f47500;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0.5px;
	cursor: pointer;
}

.news-notice-view i {
	margin-left: 5px;
}

.past-events-heading {
	color: #33116b;
	font-family: "El Messiri";
	font-size: 30px;
	font-style: normal;
	font-weight: 700 !important;
	line-height: normal;
	text-transform: uppercase;
}
.event-text p {
    color: #0868a1;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
}
.card {
	border-radius: 10px;
}
/* end */

/* home page quick links */

.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;
}
.swiper-slide {
	padding: 10px;
}
.nav-tabs-dept {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: none;
	gap: 25px;
}

.nav-tabs-dept .nav-link-dept {
	color: #676767;
	font-family: Roboto, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	background: none;
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 15px;
	transition: all 0.3s ease;
}

.nav-tabs-dept .nav-link-dept.active, .nav-tabs-dept .nav-link-dept:hover {
    color: #fff;
    /* background: linear-gradient(270deg, #16bf50 0%, #08242e 100%); */
    background: #002858;
    border: none;
    position: relative;
    z-index: 1;
}

.nav-tabs-dept .nav-link-dept p {
	margin: 0;
	font-family: Roboto, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
	color: inherit;
}

.nav-tabs-dept .nav-link-dept.active p,
.nav-tabs-dept .nav-link-dept:hover p {
	color: #ffffff;
}

/* Photo Gallery */
/* campus */
.event-sec {
	justify-content: center;
}
.owl-dot.active {
	background-color: #545355;
}
.owl-dot {
	border-radius: 50px;
	height: 10px;
	width: 10px;
	display: inline-block;
	background: #939393f7;
	margin-left: 5px;
	margin-right: 5px;
}
.owl-dots {
	text-align: center;
	padding-top: 27px !important;
}
.carousel-control-prev {
	left: -100px;
}
.carousel-control-next {
	right: -100;
}
.owl-carousel-gallery .owl-nav span {
	font-size: 45px !important;
	color: #545355;
}

.car-items img {
	width: 100%;
	margin: 5px;
	border-radius: 15px;
}
/* end */

/* TESTIMONIAL */
/* sarhad */
.student-say {
	background: linear-gradient(0deg, #ffffff 30%, #ffeac2 0%);
	overflow: hidden;
}

.testi-cards {
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: center;
	padding: 40px 0px;
}
.testi-card img {
	background-color: grey;
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

.testi-mainpara {
	color: var(--Black, #000);
	font-family: "Roboto", sans-serif;
	text-align: justify;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%; /* 25.6px */
}

.testi-heading p:nth-child(1) {
	color: var(--Black, #000);
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
}

.testi-heading p:nth-child(2) {
	color: var(--Blue-Gray-600, #475569);
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}
.scroll-container {
	overflow: hidden;
	white-space: nowrap;
	padding: 20px;
	border-radius: 10px;
	position: relative;
}

.scroll-container {
	overflow: hidden;
	white-space: nowrap;
	padding: 40px;
	border-radius: 10px;
	position: relative;
}

.scroll-content {
	display: inline-flex;
	align-items: center;
	gap: 30px;
	animation: scroll 20s linear infinite; /* Adjust the duration for speed */
}

.testi-card {
	white-space: wrap;
	width: 350px;
	height: 250px;
	border-radius: 20px;
	border: 1px solid lightgray;
	padding: 25px 35px;
	background-color: white;
	box-shadow: 5px 6px 20px grey;
	/* display: flex; */
	/* flex-direction: column; */
	/* gap: 30px; */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
	transform: scale(1.1);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.testi-heading {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	justify-content: center;
}

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

.bred-img1 {
	/* height: 220px; */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #002858;
	border-radius: 0px 50px 0px 0px;
	/* filter: opacity(0.5); */
}

.bred-pos {
	margin-top: 3px;
	margin-bottom: 16px;
}

/* footer */
.footer-section {
	background-color: #002858;
}
.logo-section img {
	width: 45%;
}
.footer-section h2,
.footer-section h3 {
	color: #feb21e;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 500 !important;
	line-height: 18px;
}
.footer-section .logo-text {
	color: #feb21e;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500 !important;
	line-height: 18px;
	text-align: center;
}
.footer-section .footer-address {
	color: #e2e8f0;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22.4px;
}
.footer-section p,
.footer-section a,
.footer-section span {
	color: #e2e8f0;
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22.4px;
	text-align: start;
	padding: 3px 0px;
    margin: 4px 0px;
}
.footer-section .reserve-line {
	text-align: end;
}

.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 .imp-links a,
.footer .btn.btn-link {
	color: rgb(255, 255, 255);
}

.social-icon a {
	color: #ffffff;
}

/* a.email {
	text-decoration: underline;
} */

.footer-section a:hover {
	color: #fdbd0f;
}

/* 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 */
.breadcrumb-design {
	width: 100% !important;
}
.breadcrumb-text {
	position: relative;
	background: #002858;
	border-radius: 0px 50px 0px 0px;
	margin: 0 auto;
	right: -25px;
	z-index: 1;
}
.breadcrumb-text::after {
	content: url(../img/curve.svg);
	position: absolute;
	right: -49px;
	bottom: 0;
	z-index: 9999;
}
.bread-design {
	background: #002858;
}

.bred-img {
	background-image: url("../img/inner-back.jpg");
	height: 205px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #002858 !important;
	/* filter: opacity(0.5); */
}

.bred-head {
	text-align: center;
	padding-top: 16px;
	margin-bottom: 0px;
	font-size: 35px;
	color: #fff;
	font-family: "El Messiri";
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.breadcrumb {
    justify-content: center;
    width: auto;
    align-items: start;
    margin: 0px 0px 0px 0px;
}

.breadcrumb li a,
.breadcrumb-item + .breadcrumb-item::before {
	color: white;
}

.breadcrumb li a {
    /* text-decoration: underline; */
    color: #FFF;
    font-family: "El Messiri";
    font-size: 16px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal;
    text-transform: uppercase;
}

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

.breadcrumb-item.active {
    color: #FFF;
    font-family: "El Messiri";
    font-size: 20px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal;
    text-transform: uppercase;
}

/* -End breadcrumb- */

/* -Inner Page Style- */

.achieve-tabs {
    display: ruby;
}

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

.page-headings {
	margin-bottom: 20px !important;
	padding-bottom: 5px;
	padding-top: 5px;
	color: #33116b;
	font-family: "El Messiri";
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	text-align: center;
}

.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 {
	background: url("../img/logo-college.png") center top no-repeat fixed;
	background-size: cover;
	position: relative;
}
.conatiner-fluid.page-back {
	padding-left: 1px;
}
.page-back::before {
	z-index: 0 !important;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgb(255 255 255);
	z-index: 9;
}
.container.about-page {
	position: relative;
	z-index: 1;
}
.main-whitePanel {
	position: relative;
	z-index: 2;
	background-color: transparent;
}

/* 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;
	background: transparent;
}

.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;
	}
}

.left-tabs.nav-tabs {
	border: none;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	color: #495057;
	background-color: #fff;
	border-color: #dee2e6 #dee2e6 #fff;
}
.vtabs .tabs-right {
	padding: 0;
}

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

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

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

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

.sub-head-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.sub-head {
    margin-bottom: 16px;
    padding-bottom: 10px;
    color: #33116b;
    font-family: "El Messiri";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
}

.sub-head-icon {
	width: 50px;
	height: 50px;
	background-image: url("../img/head.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 8px;
	align-self: flex-start;
}
/* .sub-head::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: #14a84b;
	animation: slowUnderlineAnimation 4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slowUnderlineAnimation {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
} */

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

.vtabs .tabsName-holder {
	padding-left: 0;
	padding-right: 0;
}

.vtabs .nav-tabs .nav-link {
	margin-right: 10px;
	padding: 15px;
	margin-bottom: 0px;
	font-size: 16px !important;
	font-style: normal;
	font-weight: 600 !important;
	border-radius: 4px;
	border: 1px solid #33116b;
	color: #002858;
	font-family: "Blinker", sans-serif;
	line-height: normal;
	text-transform: capitalize;
}

.vtabs .nav-tabs .nav-link.active {
	margin-right: 10px;
	padding: 15px;
	margin-bottom: 0px;
	color: #ffffff;
	border-radius: 2px 12px 2px 2px;
	border-right: 5px solid #feb21e;
	border-left: 5px solid #feb21e;
	background: #002858;
	font-size: 16px !important;
	font-style: normal;
	font-weight: 600 !important;
	font-family: Blinker !important;
	text-transform: capitalize;
}
.vtabs .nav-tabs .nav-link::after {
	content: "›";
	float: right;
	font-size: 20px;
}

.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>");
}

@media (max-width: 575px) {
	.owl-nav .owl-next {
		right: 8px !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;
	position: relative;
}

.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;
}

/* CMS Photo Gallery*/

/* 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 */

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

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: var(--color-heading);
	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: 1400px) {
	.topbar-menu .navbar-nav a {
		font-size: 12px;
	}
	.pride span a {
		font-size: 12px;
	}
	.main-menu .navbar-nav .nav-item a {
		font-family: "Poppins", sans-serif;
		font-size: 13px;
	}
	.overlay-content {
		position: absolute;
		top: 50%;
		right: 15px;
	}

}

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

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

@media only screen and (max-width: 992px) {
	.events-program-box {
		padding-right: 0px;
		border-right: none;
		border-bottom: 2px dashed #8b7ed2;
	}

	.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;
	}

	img.header-logo {
		width: 139px;
		margin-top: -55px;
		margin-bottom: 40px;
	}

	.header-logo {
		margin-top: 0px !important;
	}
	.logo-holder,
	.title-holder {
		display: inline-block;
		vertical-align: top;
		margin-top: 8px;
	}

	.site-header {
		text-align: center;
		padding-top: 0px !important;
		padding-bottom: 0px !important;
		width: 100%;
		max-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;
	}
	.quick-link-home {
		height: 400px;
		width: 97%;
		margin-bottom: 10px;
	}
	.holder-2 {
		height: 340px !important;
	}
	.news-circular {
		height: 400px;
		margin: 17px;
	}
	.news-events .homePage-sectionHeading {
		border: none;
	}
	.events-program-box {
		border: none;
	}
	.holder {
		height: 265px !important;
	}
	.quick-link-title {
		margin-top: 20px;
	}
	.photo-gallery-img {
		width: 210px !important;
	}
	.prise {
		margin-top: 30px;
	}
	.about-image-2 {
		display: none !important;
	}
	.about-image-1 {
		width: 100% !important;
	}
	.event-spot {
		display: none;
	}
	.header-college-name {
		font-size: 25px;
		margin-top: 40px !important;
	}
	.head-line {
		font-size: 15px;
	}
	.image-wrapper img {
		width: 50%;
		height: auto;
		display: inline;
	}
}

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

	img.header-logo {
		width: 139px;
		margin-top: -55px;
		margin-bottom: 40px;
	}

	.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;
	}
}

@media only screen and (max-width: 768px) {
	.bred-img {
		height: auto;
	}
	.home-spot{
		display: none;
	}
	.back-spot{
		display: none;
	}
	.naac-section a:before {
		margin-right: 10px !important;
	}
	
	.sarhad-button {
		margin-bottom: 10px;
	}
	.about-image-2 {
		display: none !important;
	}
	.about-image-1 {
		width: 100% !important;
	}
	.testi-card {
		height: auto;
	}
	.quick-link-home {
		height: 200px;
		width: 97%;
		margin-bottom: 10px;
	}
	.holder-2 {
		height: 150px !important;
	}
	.news-circular {
		height: 200px;
		margin: 17px;
	}
	.news-events .homePage-sectionHeading {
		border: none;
	}
	.events-program-box {
		border: none;
	}
	.holder {
		height: 100px !important;
	}
	.overlay-content {
		top: 91%;
		right: 20px;
		width: 90%;
	}
	.about-sec-info {
		text-align: center;
	}
	.about-sec-info {
		margin-bottom: 0px !important;
	}
	
}

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

@media only screen and (max-width: 500px) {
	.header-row {
		margin-right: 0px !important;
		margin-left: 0px !important;
	}
	.overlay-content {
		top: 90%;
		right: 15px;
		margin: 0px;
	}
	.header-college-name {
		font-size: 25px;
		line-height: 30px;
		text-align: center;
		margin-top: 10px !important;
	}
	.head-line {
		font-size: 15px;
		margin-top: 10px;
		line-height: 16px;
		text-align: center;
	}
	.hor-marquee {
		width: 94%;
	}
	.prise {
		padding-top: 30%;
	}
	.event-spot {
		display: none;
	}
	.principal-image {
		width: 100%;
		bottom: 130px;
	}
	.banner-img {
		margin: 0px !important;
	}
	.about-image-2 {
		bottom: 0px;
		top: 40px;
		left: 143px;
	}
	.about-sec-info {
		padding: 15px;
	}

	.about-header {
		text-align: center;
	}
	.image-info-container {
		margin-top: 10px;
	}
	.site-header img {
		padding-top: 50px;
	}
	.banner-slider img {
		height: 285px;
	}
	.q-link {
		padding-top: 25px;
	}
	.image-wrapper img {
		width: 50%;
		height: auto;
		display: inline !important;
	}
	.sarhad-feature {
		text-align: center;
		padding-top: 10px;
	}
	.club-table {
		margin-left: 16px;
		margin-right: 46px;
	}
	.quick-li h2 {
		font-size: 23px;
	}
	.col-md-4.col-lg-3.pride {
		display: block !important;
	}

}

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

	span.carousel-control-next-icon {
		margin-right: 18px !important;
		padding-right: 7px !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 .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;
}

p.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 {
	padding: 10px;
}
/* .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;
}

p.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;
}

/* 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/whatsapp.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", sans-serif;
	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", sans-serif;
	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", sans-serif;
	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", sans-serif;
	font-size: 23px;
	font-style: normal;
	font-weight: 600 !important;
	line-height: normal;
}

.wizard-count {
	margin: 0;
	color: white;
	font-family: "Poppins", sans-serif;
	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;
}

.ncc-nostack a img {
	width: 100%;
	height: 100%;
}

.design-list li::marker {
	color: #110069;
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 2;
	vertical-align: -0.125em;
	-webkit-font-smoothing: antialiased;
	content: "\F2E1";
	position: absolute;
	left: -9px;
}

.design-list li {
	margin-bottom: 8px !important;
	position: relative;
	padding-left: 8px;
	color: #343007;
	font-size: 18px;
}

.design-list {
	list-style: none;
	padding-left: 40px;
}

.text-title {
	font-size: 22px;
	color: #9d1b1b;
	font-weight: 600;
}

.vision_mission {
	text-align: center;
	box-shadow: 4px 4px 8px #918787;
	padding: 10px;
	background-color: blanchedalmond;
}

.vm_heading {
	text-decoration: underline;
}

.vm_p {
	text-align: justify;
}

.vm_text {
	font-weight: 500;
}

/* sarhad content */
/* .quick-li {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
} */
/* publish */
.pridr-main {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
.pride-item span {
	color: #403e3e;
	font-weight: 600;
}

.pride-item span p {
    color: #002858;
    font-family: "Crimson Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.pride-item span h3 {
	color: #000000;
	font-family: "Crimson Text";
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

/* css by vaibhav */

.leadership-img {
	border: 8px solid #fff;
	/* box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1); */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.leadership-name {
	animation: fadeInUp 0.8s ease-out;
	animation-delay: 0.2s;
}

.leadership-message {
    text-align: justify;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.4s;
    color: #282828;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 25px;
}

.leadership-signoff {
	animation: fadeIn 0.8s ease-out;
	animation-delay: 0.6s;
}

.leadership-founder {
	color: #e74c3c;
	font-weight: 600;
	animation: fadeIn 1s ease-out;
	animation-delay: 0.8s;
}

/* Refined Keyframe Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* vision mission */

.mission-vision-section {
	padding: 20px;
}

.mission-card {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 15px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mission-heading {
	font-size: 24px;
	font-weight: bold;
	color: #343a40;
	margin-bottom: 15px;
	position: relative;
}

.mission-heading::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 4px;
	background: #007bff;
	bottom: -10px;
	left: 0;
	border-radius: 2px;
}

.mission-text {
	font-size: 16px;
	color: #6c757d;
}

@keyframes fadeInUp {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.mission-card {
	animation: fadeInUp 0.6s ease-in-out;
}

/* facilities */

.infra-gal {
	position: relative;
	overflow: hidden;
	border-radius: 25px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	border: 5px Solid #fff;
	box-shadow: 2px 2px 4px #6a6969;
}

.infra-gal img {
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
}

.infra-gal:hover img {
	transform: scale(1.1);
}

.infra-gal:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ncc-nostack {
	overflow: hidden;
}

.vision-section {
	position: relative;
}
.back-spot {
	position: absolute;
	z-index: -1;
	bottom: 103px;
	top: -100%;
	right: 0%;
	width: 700px;
	opacity: 0.7;
}
.event-section {
	position: relative;
	z-index: 2;
}
.event-spot {
	position: absolute;
	z-index: -2;
	left: -150px;
	top: 89px;
	width: 626px;
	opacity: 0.7;
}
.home-section {
	position: relative;
	/*z-index: -1;*/
}
.home-spot {
	position: absolute;
	z-index: -1;
	left: -245px;
	top: 290px;
	width: 700px;
	opacity: 0.7;
}
.left-tabs.nav-tabs,
.left-tabs.sideways-tabs,
.right-tabs.nav-tabs,
.right-tabs.sideways-tabs {
	height: auto;
	row-gap: 10px;
}



/* new css */
.ugadmission-nep-blinknotice {
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
	50% {
		opacity: 0;
	}
}
p.record-set {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 700 !important;
    font-family: "Poppins", sans-serif;
}
.impo-notice {
    /* background: #fff1d5; */
    background: linear-gradient(180deg, #fff 0%, #ffefd1 100%);
}


.club-table {
    border: 0.5px solid #e0e0e0;
    background: #fff;
    /* width: 100%; */
    border-collapse: collapse;
}
.club-table .td {
	padding: 10px;
	font-family: "Roboto", sans-serif;
	/* text-align: center; */
	box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

.club-table .td a {
    color: #002858;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500 !important;
}

.club-table .td a:hover {
	text-decoration: underline;
}
section.news-and-event {
    position: relative;
}
/* .image-info-container {
    text-align: center;
    position: absolute;
    bottom: 0px;
    right: 50px;
} */
.image-info-container {
    text-align: center;
    position: absolute;
    bottom: 0px;
    right: 6px;
}

.owl-carousel-prid .owl-nav .owl-prev {
    left: -17px !important;
}
.owl-carousel-prid .owl-nav .owl-next {
    right: -8px !important;
}

.news-circular {
    padding: 15px;
    height: 325px !important;
    border: 0.5px solid #aaa;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
}
.quick-link-home {
    height: 418px;
    border: 0.5px solid #aaa;
    background: #fff;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.2);
}
.owl-carousel-prid .owl-item img {
    display: block;
    width: 95%;
}
@media (max-width: 992px) {
	.image-info-container {
		text-align: center;
		position: static;
		bottom: -26px;
		right: 50px;
		/* overflow: hidden; */
	}
	.col-md-4.col-lg-3.pride {
		display: flex;
		flex-direction: column;
		gap: 16px;
		/* overflow: hidden; */
	}

	.myCustomMenuFooter a {
		margin-right: 22px;
		padding: 5px !important;
		margin-bottom: 5px;
		}
}
.carousel-control-prev {
    left: -10px;
}
.carousel-control-next {
    right: -10px;
}
.con-head{
	display: flex;
	gap: 15px;
	align-items: center;
}
a.mobile2 {
    color: #0868a1;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: start;
    margin-bottom: 0px;
}
a.email2 {
    color: #0868a1;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: start;
    margin-bottom: 0px;
}
.head-line {
    margin-bottom: 1px !important;
}
.home-section li{
 list-style: none;
}

#menuItem_206{
	animation: blinker 1s linear infinite;
	background-color: var(--color-secondary);
	color: #000;
}
#menuItem_173{
	animation: blinker 1s linear infinite;
	background-color: var(--color-secondary);
	color: #000;
}
#menuItem_31 {
    animation: blinker 1s linear infinite;
    background-color: var(--color-secondary);
    color: #000;
}
#menuItem_229{
	animation: blinker 1s linear infinite;
	background-color: var(--color-secondary);
	color: #000;
}
#scholar-1{
	animation: blinker 1s linear infinite;
	background-color: var(--color-secondary);
}
/* #quick-1{
	animation: blinker 1s linear infinite;
	background-color: var(--color-secondary);
} */
#quick-2{
	animation: blinker 1s linear infinite;
	background-color: #205911;
	color: #fff;
}
.h-text span a{
	padding-left: 10px;
	color: #007bff;
	text-decoration: underline;
}
#menuItem_232 {
    animation: blinker 1s linear infinite;
    background-color: var(--color-secondary);
    color: #000000 !important;
}
#menuItem_234{
	animation: blinker 1s linear infinite;
	background-color: var(--color-secondary);
	color: #000;
}

.btn-primary, .btn-outline-primary{
    color: #ffffff !important;
    background: #110069 !important;
    border-color: #110069;
}
.btn.btn-sm.btn-outline-primary:hover {
    color: #110069 !important;
    border-color: #110069;
	background: #fff !important;
}
.side-1 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    height: 15px;
}
.new-btn a{
   font-size: 13px;
}

.about-sec-btn2 {
    border-radius: var(--Components-Button-Border-Radius, 8px);
    background: #002858;
    color: #fff;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: normal;
    letter-spacing: 0.075px;
    padding: 8px;
    cursor: pointer;
}
.holder2 ul li h2 {
    color: #000;
    font-size: 15px;
    padding-left: 5px;
}
.owl-carousel-pride .owl-nav span {
	font-size: 45px !important;
	color: #545355;
}
 .owl-carousel-pride .owl-nav.disabled {
    display: block;
}
.pride-img img{
	height: 300px;
    border-radius: 20px;
}
.pillars-of-support-img {
    width: 95%;
    position: relative;
    border: 10px solid #fff;
    box-shadow: 0px 0px 6px 0px #22222273;
}
.img-box::before {
    top: -20px;
    left: -1px;
    content: "";
    position: absolute;
    width: 113px;
    height: 133px;
    background: #002858;
}
.img-box {
    position: relative;
}

