@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* @import url('https://fonts.googleapis.com/css?family=Roboto'); */

body {
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
	width: 100%;
	/* height: 100vh; */
	min-height: 100vh;
	/* font-weight: 400; */
	font-family: 'Roboto';
	place-items: center;
	/* background-color: #f2fffe; */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}





/*----------------------------------------Top Header Start----------------------------------------*/
.parentmar {
	width: 100%;
	border: 0px solid #121aff;
	font: 18px bold Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	background-color: #76080f;
	box-sizing: border-box;
	color: #fff;
}

.childmar {
	background: linear-gradient(to right, #178726, #870606a1);
	padding: 10px 10px;
	line-height: 18px;
	font: 15px bold;
	text-align: center;
	color: rgb(250, 250, 250);
	margin: 1px;
	font: bold;
}

/*----------------------------------------Top Header End----------------------------------------*/












/* ----------------------------Logo Banner, Contact & location Section Start----------------------- */

/* ***********************
#   Header
**************************/

.sub-header {
	background-color: #6b0202;
	height: 50px;
	line-height: 46px;
}

.sub-header ul li {
	display: inline-block;
}

.sub-header ul.left-info li i {
	border-left: 1px solid rgba(44, 187, 56, 0.3);
	padding: 1px 10px;
}

.sub-header ul.left-info li:last-child {
	border-right: 1px solid rgba(126, 31, 31, 0.3);
}

.sub-header ul.left-info li i {
	margin-right: 12px;
	font-size: 18px;
}

.sub-header ul.left-info li a {
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
}

.sub-header ul.right-icons {
	float: right;
	text-align: center;
}

.sub-header ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li:first-child {
	border-left: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li a {
	color: #1edf4e;
	transition: all 0.3s;
}

/* ***********************
#Sub Header
**************************/
.top-brand {
	/*background: linear-gradient(180deg, #ffffff 0%, #75bb88 100%);*/
	padding-top: 10px;
}

.navbar-brand {
	display: inline-block !important;
	padding-top: 5px;
	padding-bottom: 2px;
	padding-left: 60px;
	padding-right: 40px;
	margin-right: 1rem;
	font-size: 1.25rem;
	line-height: inherit;
	white-space: nowrap;
}

.topper {
	margin-right: 10px;
}

.navbar-brand img {
	width: 100%;
	height: auto;
	margin-right: 20px;
}

.topper .icon {
	width: 40px;
	height: 40px;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding-top: 2px;
	padding-bottom: 2px;
}

.topper .icon span {
	color: #6c1313;
	padding: 10px;
	border: 3px dotted #136c2a;
	border-radius: 50%;
}

.topper .text {
	color: #136c2a;
	width: calc(100%-50px);
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 40px;
}

.topper .text p {
	margin-bottom: 0;
	font-size: 12px;
	color: #000;
	
}

.topper .icon .hr span {
	color: #136c2a;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 19px;
}

@media(max-width: 768px) {
	.navbar-brand img {
		width: 100%;
		text-align: center;
		height: 100%;
		position: relative;
	}

	.topper {
		display: none !important;
	}
}




/* ----------------------------Logo Banner, Contact & location Section End----------------------- */







/*---------------------------------------Main Navigation Start---------------------------------------*/




.nav-toggle,
[id^=drop] {
	display: none;
}

nav {
	 display: flex; 
	justify-content: center;
	/* align-items: center; */
	background-color: #058d54;
	box-shadow: 0px 10px 10px 3px rgba(0, 0, 0, 0.3);
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100vw;
}


nav:after {
	content: "";
	display: table;
	clear: both;
}


nav ul {
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
	text-align: left;
}

nav ul li {
	margin: 0px;
	display: inline-block;
	float: left;
	background-color: #058d54;
}

nav a {
	display: block;
	padding: 0 20px;
	color: #FFF;
	font-size: 20px;
	/* line-height: 50px; */
	line-height: 40px;
	text-decoration: none;
	transform: translateY(100%, 0);
}

nav ul li ul li:hover {
	background: #76080f;

}

nav a:hover {
	background-color: #76080f;
	color: #fffdfd;
}

nav ul ul {
	display: none;
	position: absolute;
	/* top: 50px; */
	top: 40px;
}

nav ul li:hover>ul {
	display: inherit;
}

nav ul ul li {
	width: 250px;
	float: none;
	display: list-item;
	position: relative;
}

nav ul ul ul li {
	position: relative;
	/* top: -50px; */
	top: -40px;
	left: 250px;
}

/* li>a:after {
    content: ' +';
} */

li>a:only-child:after {
	content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 768px) {

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}

	nav {
		margin: 0;
	}

	.nav-toggle+a,
	.nav-menu {
		display: none;
	}

	.nav-toggle {
		display: block;
		background-color: #254441;
		padding: 0 20px;
		color: #FFF;
		font-size: 22px;
		font-weight: bold;
		line-height: 60px;
		text-decoration: none;
		border: none;
	}

	.nav-toggle:hover {
		background-color: #000000;
	}

	[id^=drop]:checked+ul {
		display: block;
	}

	nav ul li {
		display: block;
		width: 100%;
	}

	nav ul ul .nav-toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
	nav ul ul ul a {
		background-color: #000000;
	}

	nav ul li ul li .nav-toggle,
	nav ul ul a {
		background-color: #212121;
	}

	nav ul ul {
		float: none;
		position: static;
		color: #ffffff;
	}

	nav ul ul li:hover>ul,
	nav ul li:hover>ul {
		display: none;
	}

	nav ul ul li {
		display: block;
		width: 100%;
	}

	nav ul ul ul li {
		position: static;

	}
}

@media all and (max-width : 330px) {

	nav ul li {
		display: block;
		width: 94%;
	}

}














/*---------------------------------------Main Navigation End---------------------------------------*/





/*--------------------------------------- Hero Section Start---------------------------------------*/


.slides {
	height: 70vh;
	width: 100%;
	overflow: hidden;
	position: relative;
	border: 0px solid #79e0ee;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	margin: 19px 0px;

}

.slide {
	position: absolute;
	height: 100%;
	width: 100%;
	opacity: 0;
	inset: 0;
	animation: slide-show 15s infinite;
	text-align: center;
}

.slide-2 {
	animation-delay: 4s;
}

.slide-3 {
	animation-delay: 8s;
}

.slide-4 {
	animation-delay: 10s;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@keyframes slide-show {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	20%,
	30% {
		opacity: 1;
		scale: 1.03;
	}

	50% {
		opacity: 0;
	}
}






/*--------------------------------------- Hero Section End---------------------------------------*/



/* -------------------------------principal speech section start ---------------------------- */

/* Styles for the container */
.principal-container {
	display: flex;
	align-items: center;
	/* background: linear-gradient(135deg, #4781c4, #296c46); */
	background-color: rgba(237, 246, 244, 0.995);
	padding: 2rem;
	border-radius: 10px;
	/* box-shadow: 0px 6px 16px -6px rgb(255, 255, 255); */
	width: 100%;
	margin: 30px auto;
}

/* Styles for the image */
.principal-image img {
	width: 100%;
	max-width: 350px;
	border-radius: 5%;
	margin-right: 1rem;
}

/* Styles for the content */
.principal-content {
	flex: 1;
	text-align: left;
	/* Align text to the left on desktop */
}

.principal-heading2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #000000;
	text-align: center;
}

.principal-paragraph {
	font-size: 20px;
	line-height: 2;
	/* background: linear-gradient(135deg, #8c938f, #7aa6cc); */
	background-color: #d9e6e2;
	padding: 1rem;
	border-radius: 15px;
	/* box-shadow: 0px 5px 8px rgba(75, 72, 72, 0.633); */
	margin: 30px 0;
	color: #292525;
	font-weight: 500;
	text-size-adjust: 100%;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	text-align: justify;
}

/* Responsive layout for mobile devices */
@media (max-width: 768px) {
	.principal-container {
		flex-direction: column;
		/* Stack items vertically on small screens */
	}

	.principal-image img {
		margin-right: 0;
		/* Remove margin on mobile */
	}
}


.principal-heading {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
	padding-top: 30px;
}





/* -------------------------------principal speech section  End---------------------------- */
























/* --------------------------------------- campus area start-------------------------------------- */
.campus-heading {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}



.campus-heading2 {
	margin: 0;
	padding: 0;
}

*,
:after,
:before {
	box-sizing: border-box;
}

.campus-wrapper {
	width: 95%;
	float: none !important;
	display: block;
	margin: 0 auto !important;
	padding-left: 15px;
	max-width: 1280px;
	padding-right: 15px;
	padding-bottom: 30px;
}

.relative {
	position: relative;
}

.campus-heading2 {
	font-weight: 500;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 40px;
	line-height: 1;
	margin: 0;
	padding: 0;
}




/*--------------------------------------------
			VIDEO SECTION STARTS  
---------------------------------------------- */

.CampusVideoInner {
	width: 100%;
	height: 100%;
	position: relative;
}

.StoryVideo video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.CampusVideoTitleSection .SectionTitle {
	width: 100%;
}

.CampusVideoTitleSection .SectionContent {
	width: 100%;
	padding-top: 240px;
}

.CampusVideoTitleSection {
	/* max-width: 630px; */
	max-width: 100%;
	padding: 50px 60px;
	height: 100%;
	background-color: rgb(255 255 255 / 25%);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.CampusVideoTitleSection:not(.animate_it) {
	-webkit-clip-path: circle(100% at 50% 50%);
	clip-path: circle(100% at 50% 50%);
}

.CampusVideoTitleSection.animate_it {
	animation: inView 2s;
	-webkit-clip-path: circle(0% at 0% 50%);
	clip-path: circle(0% at 0% 50%);
}

.CampusVideoTitleSection.animate_reverse {
	animation: outView 2s;
	-webkit-clip-path: circle(100% at 50% 50%);
	clip-path: circle(100% at 50% 50%);
}

.StoryVideo {
	max-height: 500px;
}

.StoryVideo video {
	width: 100%;
	height: 100%;
	object-fit: fill;
	position: absolute;
}

.Video-playbtn {
	cursor: pointer;
	width: 89px;
	height: 89px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	border-radius: 50%;
	background-color: rgb(112, 20, 42);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	display: flex;
	justify-content: center;
	align-items: center;
}

@keyframes inView {
	0% {
		-webkit-clip-path: circle(100% at 50% 50%);
		clip-path: circle(100% at 50% 50%);
	}

	to {
		-webkit-clip-path: circle(0% at 0% 50%);
		clip-path: circle(0% at 0% 50%);
	}
}

@keyframes outView {
	0% {
		-webkit-clip-path: circle(0% at 0% 50%);
		clip-path: circle(0% at 0% 50%);

	}

	to {
		-webkit-clip-path: circle(100% at 50% 50%);
		clip-path: circle(100% at 50% 50%);
	}
}



/* ---------------------------------------campus area end--------------------------------------- */







/* ----------------------------------------college gallery section start--------------------------------------- */
.college-gallery {
	text-align: center;
	margin: 0px 2em;
	font-family: arial;
}


.college-gallery .gallery-heading {
	/* font-size: 40px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center; */
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
	padding-top: 30px;
	/* padding-bottom: 30px; */
}



*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: var(--bg-color);
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
}

ul {
	list-style: none;
}

.overflow_hide {
	overflow: hidden;
}

/*--====== Gallery Section ======--*/
#gallery {
	/* padding-top: 2rem; */
	padding-bottom: 2rem;
}

.gallery-container {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

/* Filterable Gallery */
.gallery_tabs {
	background-color: inherit;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	row-gap: 0.8rem;
	padding: 1.2rem;
	/*border-radius: 0px 50px 0px 50px;
    box-shadow: var(--box-shadow);*/
}

.gallery_tabs li {
	padding: 0.7rem 2rem;
	border-radius: 30px 30px 30px 30px;
	font-size: 0.95rem;
	text-shadow: 3px 2px 2px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
	color: #fff;
	background-color: rgb(56, 198, 227);
	background-image: linear-gradient(315deg, #e1e3e4 0%, #629bcd 74%);
	box-shadow: 5px 2px 5px rgb(102, 102, 101);
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery_tabs li.active,
.gallery_tabs li:hover {
	background-color: rgb(30, 178, 144);
	background-image: linear-gradient(315deg, #e1e3e4 0%, rgb(57, 165, 204) 74%);
	color: #fff;
}

.gallery_tabs li.active {
	background-color: var(--main-color);
}

.gallery_tabs li.active:hover {
	background-color: rgb(81, 181, 168);
	background-image: linear-gradient(315deg, #e1e3e4 0%, #45b7c0 74%);
}

.gallery_wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 4rem;
}

@media (max-width: 768px) {
	.gallery_wrapper {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}
}

.gallery_item {
	border-radius: 0px 50px 0px 50px;
	box-shadow: 5px 5px 5px rgb(102, 102, 101);
	cursor: pointer;
	overflow: hidden;
}

/* when the gallery_item has 'show' class */
.gallery_item.show {
	animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* when the gallery_item has 'hide' class */
.gallery_item.hide {
	display: none;
}

.gallery_item img {
	transition: transform 0.3s ease;
}

.gallery_item:hover img {
	transform: scale(1.1);
}

/* Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 995;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	overflow-x: hidden;
	overflow-y: auto;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s ease, opacity 0.3s ease;
}

/* when the lightbox is open */
.lightbox.open {
	pointer-events: all;
	visibility: visible;
	opacity: 1;
}

.lightbox_wrapper {
	display: grid;
	place-items: center;
	min-height: calc(100% - 3rem);
	margin: 1.5rem;
}

@media (max-width: 575.98px) {
	.lightbox_wrapper {
		margin: 0.5rem;
		min-height: calc(100% - 1rem);
	}
}

.lightbox_content {
	box-shadow: var(--box-shadow);
	max-width: 700px;
	width: 100%;
	border-radius: 0px 50px 0px 50px;
	text-align: center;
	overflow: hidden;
	transform: scale(0);
	transition: transform 0.5s ease;
}

/* when Lightbox is open then lightbox-content will... */
.lightbox.open .lightbox_content {
	transform: scale(1);
}

/* lightbox-close-btn */
.lightbox_close {
	position: absolute;
	top: 3vh;
	right: 3vw;
	z-index: 999;
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
}

.lightbox_close span {
	width: 100%;
	height: 3px;
	margin-top: -1.5px;
	margin-bottom: -1.5px;
	background-color: #ddd;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.lightbox_close:hover span {
	opacity: 1;
}

.lightbox_close span:first-child {
	transform: rotate(45deg);
}

.lightbox_close span:last-child {
	transform: rotate(-45deg);
}

.lead {
	font-size: 1.5rem;
	font-weight: 300;
}

.gallery-container {
	margin: 50px auto 0 auto;
	max-width: 960px;
}


/* button style */
.gallery_see_more_button {
	background-color: #6b0202;
	color: #ffffff;
	border: none;
	text-align: center;
	padding: 20px 20px;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
	/* Remove underline for links */
	display: inline-block;
}

.gallery_see_more_button:hover {
	background-color: #8d0F03;
}




/* ----------------------------------------college gallery section End--------------------------------------- */











/* ----------------------------------------college counter  style Start------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;

} */

.counter-wrapper {
	padding: 20px 50px;
}

.counter-wrapper .counter-title {
	/* font-size: 40px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center; */

	font-size: 50px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
	padding-top: 30px;
	/* padding-bottom: 5px; */
}

/* .counter-wrapper p{
	text-align: justify;
	padding-bottom: 20px;
  } */
.counter-up {
	background: rgb(255, 251, 251);
	min-height: 50vh;
	display: flex;
	align-items: center;
	padding: 0 50px;
	position: relative;

}

.counter-up::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
}

.counter-up .counter-content {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	height: 100%;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.counter-content .counter-box {
	width: calc(25%-30px);
	/*border: 1px dashed rgba(0, 0, 0, 0.6);*/
	border-radius: 5px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	color: #000000;
	flex-direction: column;
	border-radius: 5px;

}

.counter-content .counter-box .icon {
	font-size: 48px;
	color: #000000;

}

.counter-content .counter-box .counter {
	font-size: 50px;
	color: #010101;
	font-weight: 500;
	/* font-family: sans-serif; */

}

.counter-content .counter-box .colunter-text {
	color: #000000;
	font-weight: 400;
}

@media (max-width: 1036px) {
	.counter-up {
		padding: 50px 50px 0 50px;
	}

	.counter-content .counter-box {
		width: calc(50%-30px);
		margin-bottom: 50px;
	}
}

@media (max-width: 580px) {
	.counter-content .counter-box {
		width: 100%;
	}
}




/* --------------------------------------college counter style End------------------------------------------ */















/* --------------------------------------Notice section start-------------------------------------- */
/* body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
} */
.notice_heading {
	font-size: 50px;
	font-weight: 600;
	margin-bottom: 10px;
	text-align: center;
	padding-top: 30px;
}

.notice-board {
	width: 60%;
	margin: 30px auto;
	/* background-color: #fff; */
	/* border: 1px solid #f3e6e6; */

}

.notice-header {
	background-color: #008080;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-size: 30px;

}

.notice-table {
	width: 100%;
	border-collapse: collapse;
	/* background-color:#acfaf3; */

}

.notice-tdata {
	border: 1px solid #afafaf;
	padding: 8px;
	padding-left: 30px;
	text-align: left;
}

/* 
.notice-tdata:hover {
	border: 1px solid #0c0c0c;
	padding: 8px;
	padding-left: 30px;
	text-align: left;
	background-color: #04AA6D;
	color: white;

} */


.notice-thead {
	background-color: #b6ccb2;
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
}

.notice-view-all {
	background-color: #008080;
	color: #fff;
	padding: 10px;
	text-align: center;
	cursor: pointer;
}

.notice-view-all a {
	color: #ffffff;
	text-decoration: none;
}

.notice-view-all a:hover {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}


/* Responsive Design */
@media (max-width: 768px) {
    .notice_heading {
        font-size: 35px;
        padding-top: 20px;
    }

    .notice-board {
        width: 90%;
        margin: 20px auto;
    }

    .notice-header {
        font-size: 24px;
        padding: 15px;
    }

    .notice-tdata {
        padding: 6px;
        padding-left: 15px;
        font-size: 14px;
    }

    .notice-thead {
        padding: 6px;
        font-size: 14px;
    }

    .notice-view-all {
        padding: 8px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .notice_heading {
        font-size: 32px;
        padding-top: 18px;
    }

    .notice-board {
        width: 95%;
        margin: 15px auto;
    }

    .notice-header {
        font-size: 22px;
        padding: 14px;
    }

    .notice-tdata {
        padding: 6px;
        padding-left: 12px;
        font-size: 13px;
    }

    .notice-thead {
        padding: 6px;
        font-size: 13px;
    }

    .notice-view-all {
        padding: 7px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .notice_heading {
        font-size: 28px;
        padding-top: 15px;
    }

    .notice-board {
        width: 100%;
        margin: 10px auto;
    }

    .notice-header {
        font-size: 20px;
        padding: 12px;
    }

    .notice-tdata {
        padding: 5px;
        padding-left: 10px;
        font-size: 12px;
    }

    .notice-thead {
        padding: 5px;
        font-size: 12px;
    }

    .notice-view-all {
        padding: 6px;
        font-size: 14px;
    }
}

/* Extra Media Queries for Large Samsung Screens */
@media (min-width: 360px) and (max-width: 414px) {
    .notice_heading {
        font-size: 30px;
    }

    .notice-board {
        width: 95%;
    }

    .notice-header {
        font-size: 22px;
    }

    .notice-tdata {
        padding: 6px;
        padding-left: 15px;
        font-size: 12px;
    }

    .notice-thead {
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .notice_heading {
        font-size: 36px;
    }

    .notice-board {
        width: 85%;
    }

    .notice-header {
        font-size: 26px;
    }

    .notice-tdata {
        font-size: 16px;
    }

    .notice-thead {
        font-size: 16px;
    }
}


/* --------------------------------------Notice section End-------------------------------------- */









/* -----------------------------------------Organogram Section Start----------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* * {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
} */
.org-container body {
	height: 100vh;
	display: flex;
	align-items: center;
	font-family: 'Poppins', sans-serif;
}

.tree {
	width: 100%;
	height: auto;
	text-align: center;

}

.tree ul {
	padding-top: 20px;
	position: relative;
	transition: .5s;
}

.tree li {
	display: inline-block;
	text-align: center;
	list-style-type: none;
	position: relative;
	padding: 10px;
	transition: .10s;
}

.tree li::before,
.tree li::after {
	content: '';
	position: absolute;
	top: 0;
	right: 50%;
	border-top: 1px solid #ccc;
	width: 51%;
	height: 10px;
}

.tree li::after {
	right: auto;
	left: 50%;
	border-left: 1px solid #ccc;
}

.tree li:only-child::after,
.tree li:only-child::before {
	display: none;
}

.tree li:only-child {
	padding-top: 0;
}

.tree li:first-child::before,
.tree li:last-child::after {
	border: 0 none;
}

.tree li:last-child::before {
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0;
	-webkit-border-radius: 0 5px 0 0;
	-moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
	border-radius: 1px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
	-moz-border-radius: 5px 0 0 0;
}

.tree ul ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	border-left: 1px solid #ccc;
	width: 0;
	height: 20px;
}

.tree li a {
	border: 1px solid #ccc;
	padding: 0px;
	display: inline-grid;
	border-radius: 5px;
	text-decoration-line: none;
	border-radius: 5px;
	transition: .5s;
}

/* .tree li a img {
	width: 50px;
	height: 50px;
	margin-bottom: 10px !important;
	border-radius: 100px;
	margin: auto;
} */

.tree li a span {
	border: 1px solid #ccc;
	border-radius: 5px;
	/* color: #666; */
	padding: 8px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

/*Hover-Section*/
.tree li a:hover,
.tree li a:hover i,
.tree li a:hover span,
.tree li a:hover+ul li a {
	background: #000000;
	color: #ffffff;
	border: 1px solid #94a0b4;
}

.tree li a:hover+ul li::after,
.tree li a:hover+ul li::before,
.tree li a:hover+ul::before,
.tree li a:hover+ul ul::before {
	border-color: #94a0b4;
}


@media screen and (max-width: 768px) {
	.tree li {
		padding: 5px;
	}

}

/* -----------------------------------------Organogram Section End----------------------------------------- */




/* -------------------------------------map our loaction section start------------------------------------- */

/* General Section Styling */
#maps {
    width: 100vw; /* Full viewport width */
    padding: 20px 0;
    background-color: #f9f9f9;
    text-align: center;
    box-sizing: border-box; /* Ensures padding doesn’t affect width */
}

.notice_heading {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Container Styling */
.box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100vw;
    width: 100%; /* Full width */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Map Styling */
.location_map {
    width: 100vw; /* Full viewport width */
    max-width: 100%; /* Prevents any overflow */
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden; /* Ensures no overflow from iframe */
    box-sizing: border-box; /* Ensures border doesn’t affect width */
}

.location_map iframe {
    width: 100vw; /* Full viewport width */
    height: 300px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .location_map iframe {
        height: 300px; /* Adjust height on smaller screens */
    }
}


/* ---------------------------------------map our loaction section end------------------------------------ */









/*-----------------------------------------------Footer start-----------------------------------------------*/

.footer-container {
	max-width: 1170px;
	margin: auto;
	/* box-sizing: border-box; */
	/* padding-top: 30px; */
}

.row {
	display: flex;
	flex-wrap: wrap;
}

ul {
	list-style: none;
}

.footer {
	background-color: #521111;
    width: 100%;
	padding: 30px 0;
}

.footer-col {
	width: 25%;
	padding: 0 15px;
}

.footer-col h4 {
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}

.footer-col h4::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}

.footer-col ul li:not(:last-child) {
	margin-bottom: 10px;
}

.footer-col i {
	margin-right: 0px;
}

.footer-col ul li a {
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}

.footer-col ul li a:hover {
	color: #ffffff;
	padding-left: 8px;
}

.footer-col .social-links a {
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px) {
	.footer-col {
		width: 50%;
		margin-bottom: 30px;
	}
}

@media(max-width: 574px) {
	.footer-col {
		width: 100%;
	}
}

/*-----------------------------------------------Footer start-----------------------------------------------*/