@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.eot");
  src: url("../fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff"),
    url("../fonts/Montserrat-Bold.ttf") format("truetype"),
    url("../fonts/Montserrat-Bold.svg#Montserrat") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.eot");
  src: url("../fonts/Montserrat-BoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat-BoldItalic.woff2") format("woff2"),
    url("../fonts/Montserrat-BoldItalic.woff") format("woff"),
    url("../fonts/Montserrat-BoldItalic.ttf") format("truetype"),
    url("../fonts/Montserrat-BoldItalic.svg#Montserrat") format("svg");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.eot");
  src: url("../fonts/Montserrat-SemiBold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBold.woff") format("woff"),
    url("../fonts/Montserrat-SemiBold.ttf") format("truetype"),
    url("../fonts/Montserrat-SemiBold.svg#Montserrat SemiBold") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBoldItalic.eot");
  src: url("../fonts/Montserrat-SemiBoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2"),
    url("../fonts/Montserrat-SemiBoldItalic.woff") format("woff"),
    url("../fonts/Montserrat-SemiBoldItalic.ttf") format("truetype"),
    url("../fonts/Montserrat-SemiBoldItalic.svg#Montserrat SemiBold")
      format("svg");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.eot");
  src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Medium.woff") format("woff"),
    url("../fonts/Montserrat-Medium.ttf") format("truetype"),
    url("../fonts/Montserrat-Medium.svg#Montserrat Medium") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-MediumItalic.eot");
  src: url("../fonts/Montserrat-MediumItalic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/Montserrat-MediumItalic.woff2") format("woff2"),
    url("../fonts/Montserrat-MediumItalic.woff") format("woff"),
    url("../fonts/Montserrat-MediumItalic.ttf") format("truetype"),
    url("../fonts/Montserrat-MediumItalic.svg#Montserrat Medium") format("svg");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.eot");
  src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff"),
    url("../fonts/Montserrat-Regular.ttf") format("truetype"),
    url("../fonts/Montserrat-Regular.svg#Montserrat") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(0, 96, 162);
  background: linear-gradient(
    300deg,
    rgba(0, 96, 162, 1) 0%,
    rgba(35, 54, 110, 1) 70%
  );
  z-index: 999;
  overflow: hidden;
  display: none;
}
.loading #preloader {
  display: block;
}
#preloader img {
  height: 150px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#preloader span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 12px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: loadingTextAnimation 1.5s linear infinite;
}

@keyframes loadingTextAnimation {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

body.loading {
  overflow: hidden;
}
body.no_scroll {
  overflow: hidden;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-image: url("../images/nav_bg_two.webp");
  background-repeat: no-repeat;
  background-position: right top;
  position: relative;
}

.main_nav_container {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: #010042;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.75s ease-in-out;
}

.main_nav_container.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.nav_left_main_container {
  width: 30%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  background-image: url("../images/left_nav_bg.webp");
  background-repeat: repeat;
  background-size: 50% auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.35s ease-in-out;
  transition-delay: 0.75s;
}

.main_nav_container.active .nav_left_main_container {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.nav_left_main_text {
  margin-top: 50px;
}

.nav_left_main_text h1 {
  text-align: left;
  color: #000042;
  font-size: 40px;
  line-height: 1;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.nav_left_main_text h2 {
  color: #000042;
  font-size: 35px;
  line-height: 1;
  margin: 0;
  font-weight: 300;
}

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

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

.navSwiper .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.navSwiper .swiper-slide img {
  width: 100%;
  height: auto;
}

.nav_right_main_container {
  width: 70%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.35s ease-in-out;
  transition-delay: 0.75s;
}

.main_nav_container.active .nav_right_main_container {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.nav_close_container {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding: 20px;
}

.nav_close_container .nav_close_icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.nav_menu_container {
  display: flex;
  height: calc(100% - 80px);
}

.nav_menu_left_container {
  width: 55%;
  background-color: #202d61;
  padding: 40px 20px 0 40px;
}

.nav_menu_right_container {
  width: 45%;
  height: 100%;
  position: relative;
}

.nav_menu_left_link {
  border-bottom: 1px solid #485482;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  transition: all 0.5s ease-in-out;
}

.nav_menu_left_link:last-child {
  border-bottom: none;
}

.nav_menu_left_link a {
  display: inline-block;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  margin-bottom: 5px;
  transition: all 0.5s ease-in-out;
}

.nav_menu_left_link:hover a {
  color: #086ed7;
}

.nav_menu_left_link img {
  height: 20px;
  width: auto;
}

.nav_menu_left_link:hover {
  padding: 10px 5px 10px 15px;
}

.nav_menu_left_link.active {
  padding: 10px 5px 10px 15px;
}

.nav_menu_left_link.active a {
  color: #086ed7;
}

.nav_sub_menu {
  padding: 40px 80px;
  position: absolute;
  left: 0;
  top: 0;
  height: calc(100% - 100px);
  visibility: hidden;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.5s ease-in-out;
}

.nav_sub_menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.nav_sub_menu_link a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 3px;
  transition: all 0.5s ease-in-out;
}

.nav_sub_menu_link {
  padding: 6.5px 0;
}

.nav_sub_menu_link:hover a {
  color: #0084ff;
}

.nav_sub_menu_link.active a {
  color: #0084ff;
}

/* .nav_sub_menu_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #202d61;
  height: 100px;
  width: 100%;
  display: none;
} */

.nav_bg_one {
  width: 100%;
  height: auto;
  position: relative;
  transition: all 0.25s ease-in-out;
}

.nav_bg_one.active {
  background-color: #fff;
}

.nav_bg_two {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.nav_upper_part {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  padding: 15px 30px;
  transition: all 0.25s ease-in-out;
}

.nav_bg_one.active .nav_upper_part {
  padding: 7.5px 30px;
}

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

.nav_osc_logo img {
  height: 70px;
  width: auto;
  transition: all 0.25s ease-in-out;
}

.nav_bg_one.active .nav_osc_logo img {
  height: 60px;
  width: auto;
}

.nav_logo_text {
  margin-left: 15px;
}

.nav_logo_text h1 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  margin: 2.5px;
  color: #202d60;
  text-align: left;
}

.nav_search_open_container {
  display: flex;
  gap: 5px;
  align-items: center;
}

.nav_open_icon {
  display: flex;
  flex-direction: column;
  /*background-color: #202d60;*/
  border-radius: 5px;
  width: 50px;
  height: 50px;
  justify-content: center;
  padding: 0 10px;
  cursor: pointer;
}

.line_one,
.line_two,
.line_three {
  background-color: #202d60;
  display: inline-block;
  height: 3px;
  width: 30px;
  margin: 3px 0;
  border-radius: 5px;
}

.line_three {
  width: 20px;
  transition: all 0.5s ease-in-out;
}

.nav_open_icon:hover .line_three {
  width: 30px;
}

.nav_search {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.search_input {
  visibility: hidden;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.search_input.active {
  visibility: visible;
  width: 200px;
  opacity: 1;
  box-shadow: 0 0 1.5px 0 #000;
  border-radius: 50px;
}

.search_input input {
  width: 200px;
  height: auto;
  border: none;
  border-radius: 50px;
  padding: 12.5px 10px;
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

.nav_search button {
  background-color: transparent;
  border: none;
  width: 40px;
  height: 40px;
  margin-left: 5px;
  cursor: pointer;
  position: relative;
}

.search_icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.search_icon.active {
  opacity: 1;
}

.search_close_icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.search_close_icon.active {
  opacity: 1;
}

.nav_part_two {
  width: 100%;
  height: 50px;
  position: relative;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.nav_part_two_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  transition: all 3s linear;
  background-repeat: no-repeat;
  background-position: right top;
  z-index: 1;
}

.nav_part_two_text {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  height: 50px;
  align-items: center;
  margin-right: 40px;
}

.nav_part_two_text a {
  display: inline-block;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  transition: all 0.5s ease-in-out;
}

.nav_part_two_text img {
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
}

.next_prev_links {
  margin: 0 20px;
}

.white_line {
  position: absolute;
  right: -20px;
  bottom: -5px;
  margin: 0;
  padding: 0;
  height: 40px;
  width: 0;
  border-right: 2px solid #fff;
  transform: rotateZ(15deg);
}

.prev_arrow {
  margin-right: 5px;
}

.next_arrow {
  margin-left: 5px;
}

.next_arrow,
.prev_arrow {
  transition: all 0.5s ease-in-out;
}

.next_prev_links:hover .prev_arrow {
  margin-right: 10px;
}

.next_prev_links:hover .next_arrow {
  margin-left: 10px;
  margin-right: -5px;
}

.mobile_sub_menu_container {
  display: none;
}

.at_a_glance_container {
	margin: 100px 0;
}

.at_a_glance_right_side {
	background-color: #0E0E0E;
	display: flex;
	align-items: center;
	justify-content: center;
}

.at_a_glance_right_side object {
	width: 95%;
	height: auto;
}

.atl_main_container {
	margin: 100px 0;
	background-color: #0e0e0e;
}

.atl_left_container img {
	width: 100%;
	height: auto;
}

.atl_right_container {
	background-color: #0e0e0e;
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.atl_right_container h6 {
	color: #fff;
	font-size: 17px;
	margin: 0;
	margin-bottom: 20px;
margin-top: 15px;
  width: 80%;	
	
	
}

.atl_right_container object {
	width: 90%;
	height: auto;
}

.chairman_page_main_container {
	margin-top: 100px;
}

.chairman_page_right_box {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.chairman_page_white_box {
	background-color: #fff;
	position: relative;
    left: -100px;
    z-index: 50;
    padding: 60px;
}

.chairman_page_white_box h6 {
	font-size: 30px;
    margin: 0;
    font-weight: 400;
}

.chairman_page_image_two {
	margin: 100px 0
}

.student_profile_right {
	background-color: #000;
	padding: 60px;
}

.students_number {
	text-align: center;
	padding: 30px 0;
}

.students_number h3 {
	color: #FFF200;
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    line-height: 1;
}

.students_number p {
	color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.student_profile_main_container {
	margin: 100px 0;
}

.student_profile_left {
	background-image: url("../images/student_profile_image01.webp");
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	padding: 60px;
}

.student_profile_left h1 {
	color: #FFF200;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
	margin-bottom: 40px;
	  text-transform: none;
}

.student_profile_left_div {
	margin: 60px 0;
}

.student_profile_left_div h2 {
	color: #FFF200;
    font-size: 50px;
    margin: 0;
    line-height: 1;
}

.student_profile_left_div p {
	color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 25px;
}

.teaching_faculty_main_container {
	background-image: url("../images/teaching_faculty_bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 40px 0;
}

.faculty_facts_div {
	margin: 40px 0;
}

.faculty_facts_div h3 {
	color: #FFF200;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    font-size: 60px;
}

.faculty_facts_div p {
	color: #fff;
    font-size: 15px;
    line-height: 1;
    margin: 0;
	margin-top: 15px;
}

.teaching_faculty_image_container {
	margin: 50px 0 60px;
}

.teaching_faculty_graph_main {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.teaching_faculty_graph_container {
	position: relative;
    left: -100px;
    z-index: 50;
    background-color: #fff;
      padding: 50px 130px 50px 60px;
}

.teaching_faculty_graph_container object {
	width: 80%;
	height: auto;
}

@media (max-width: 1199px) {
  .nav_left_main_container {
    width: 35%;
    height: 100%;
  }

  .nav_right_main_container {
    width: 65%;
    height: 100%;
  }

  .nav_menu_left_container {
    width: 55%;
    padding: 30px;
  }

  .nav_menu_right_container {
    width: 45%;
    height: 100%;
  }

  .nav_sub_menu {
    padding: 40px;
  }

  .nav_sub_menu_link a {
    font-size: 18px;
  }
	
.chairman_page_white_box {
  padding: 40px;
}
	
		.student_profile_left {
  padding: 30px;
}
	
	.student_profile_right {
  padding: 30px;
}
}

@media (max-width: 991px) {
  .nav_left_main_container {
    width: 50%;
    height: 100%;
  }

  .nav_right_main_container {
    width: 50%;
    height: 100%;
  }

  .nav_menu_right_container {
    display: none;
  }

  .nav_menu_left_container {
    width: 100%;
    padding: 30px;
  }

  .nav_sub_menu {
    padding: 20px;
    position: static;
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-in-out;
  }

  .nav_sub_menu.active {
    border-bottom: 1px solid #485482;
  }

  .nav_sub_menu_link a {
    font-size: 16px;
  }

  .nav_sub_menu_link {
    padding: 5px 0;
  }

	.chairman_page_white_box {
  left: -50px;
  z-index: 50;
  padding: 20px;
}
	
	.chairman_page_white_box h6 {
  font-size: 20px;
}
	
	.teaching_faculty_main_container {
  padding: 30px 0;
}
	
	.faculty_facts_div {
  margin: 30px 0;
  padding: 0 15px;
}
	
	.faculty_facts_div h3 {
  font-size: 50px;
}
	
	.teaching_faculty_graph_container {
    left: -50px;
    z-index: 50;
    padding: 20px;
}

.teaching_faculty_graph_container object {
	width: 100%;
	height: auto;
}

}

@media (max-width: 767px) {
  .main_nav_container {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: #202d61;
  }

  .nav_left_main_container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    padding: 5px;
  }

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

  .nav_menu_container {
    display: flex;
    height: auto;
    flex-direction: column;
  }

  .nav_menu_left_container {
    width: 100%;
    padding: 20px;
  }

  .nav_close_container .nav_close_icon {
    width: 30px;
    height: 30px;
  }

  .nav_close_container {
    padding: 10px 15px;
    background-color: #010042;
  }

  .nav_left_main_text {
    margin-top: 0;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav_left_main_text h1 {
    font-size: 17px;
    line-height: 1;
    margin: 0;
    margin-bottom: 10px;
  }

  .nav_left_main_text h2 {
    font-size: 15px;
  }

  .nav_swiper_container {
    width: 55%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
  }

  .nav_menu_left_link a {
    font-size: 15px;
  }

  .nav_menu_left_link img {
    height: 15px;
    width: auto;
  }

  .nav_sub_menu {
    padding: 20px;
    position: static;
    height: auto;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease-in-out;
  }

  .nav_sub_menu.active {
    border-bottom: 1px solid #485482;
  }

  .nav_sub_menu_link a {
    font-size: 15px;
  }

  .nav_sub_menu_link {
    padding: 5px 0;
  }

  .mobile_sub_menu_container {
    display: none;
  }

  .nav_menu_right_container {
    display: none;
  }
	
	.atl_right_container object {
	  width: 95%;
	  height: auto;
	}
	
.chairman_page_white_box {
    left: 0;
    z-index: 1;
    padding: 40px 20px;
}
	
	.student_profile_left {
  padding: 30px;
}
	
	.student_profile_right {
  padding: 30px;
}
	
	.teaching_faculty_main_container {
  padding: 25px 0;
}
	
	.faculty_facts_div {
  margin: 25px 0;
  padding: 0 25px;
}
	
	.faculty_facts_div h3 {
  font-size: 40px;
}
	
	.teaching_faculty_graph_container {
    left: 0;
    z-index: 50;
    padding: 20px;
}

.teaching_faculty_graph_container object {
	width: 100%;
}
	
.nav_search {
  position: relative;
}
	
	.nav_search form {
		position: absolute;
		right: 0;
	}
}

@media (max-width: 400px) {
	.students_number h3 {
  font-size: 30px;
}
	
	.students_number p {
  font-size: 12px;
}
} 

/* new css */
#smooth-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
main {
  margin-top: 150px;
}

.page_header.no_image {
  height: auto;
  padding: 75px 0 0 0;
}
.page_header.no_image .page_titles {
  display: flex;
  gap: 15px;
  transform: translate(0);
  background-color: transparent;
  align-items: flex-start;
  width: 100%;
}
.page_header.no_image .page_titles h1,
.page_header.no_image .page_titles h2 {
  padding: 15px 0 0 0;
  background-color: transparent;
  width: auto;
  font-size: 2.8rem;
  margin: 0;
}
.page_header.no_image .page_titles h1 {
  font-size: 3.6rem;
}

.page_header.with_image {
  height: calc(100vh - 125px);
  width: 100%;
  position: absolute;
  top: 125px;
  left: 0;
  padding-top: 50px;
  /* overflow: hidden; */
}
.page_header.with_image .left_section .img_container {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  transform-origin: center center;
  z-index: 5;
  border-radius: 12px;
  will-change: transform;
}
.page_header.with_image .left_section .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-40deg) scale(1.5);
}
.page_header.with_image .right_section .img_container {
  position: absolute;
  left: -7%;
  bottom: -3%;
  height: 60%;
  aspect-ratio: 1/1;
  transform: rotate(45deg) scale(0.8);
  overflow: hidden;
  transform-origin: center center;
  z-index: 4;
  border-radius: 12px;
}
.page_header.with_image .right_section .img_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: rotate(-40deg) scale(1.5);
}
/* .page_header.with_image .page_titles {
  position: absolute;
  top: 50px;
  left: 10%;
  z-index: 6;
  background-color: white;
  padding: 30px;
  width: 30%;
  mix-blend-mode: color-dodge;
} */
.page_header .page_titles h1 {
  font-size: 6rem;
  font-weight: 300;
    text-transform: inherit;
}
.page_header.with_image .page_titles h1 {
  margin: 0;
  position: absolute;
  left: 60%;
  top: 64%;
  background-color: white;
  padding: 30px;
  z-index: 6;
  width: 35%;
  padding-right: 30px;
  /*mix-blend-mode: color-dodge;*/
  transform-origin: top;
}
.page_header .page_titles h2 {
  font-size: 5.7rem;
  color: rgba(32, 45, 96, 1);
  margin: 0 0 15px 0;
  font-weight: 600;
}
.page_header.with_image .page_titles h2 {
  position: absolute;
  top: 75px;
  left: 18%;
  background-color: white;
  padding: 30px;
  z-index: 6;
  /*mix-blend-mode: color-dodge;*/
  transform-origin: top;
  max-width: 450px;
}
.page_header.with_image .header_overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60%;
  width: 100%;
  background: rgb(245, 245, 245);
  background: linear-gradient(
    180deg,
    rgba(245, 245, 245, 0) 0%,
    rgba(0, 31, 100, 1) 100%
  );
  z-index: 5;
  opacity: 0;
}
.page_content {
  width: 100%;
  background-color: white;
  padding: 50px 0;
  z-index: 8;
  position: relative;
  margin-top: calc(100vh + 125px);
}
.no_image ~ .page_content {
  margin-top: 0;
}

footer {
  margin-top: auto;
  position: relative;
  z-index: 8;
}
footer .footer {
  width: 100%;
  padding: 30px 15px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 50%,
    rgba(245, 245, 245, 1) 100%
  );
}
footer .footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
footer .footer p {
  font-size: 13px;
  font-weight: 300;
  color: rgb(32, 32, 32);
  text-wrap: balance;
}
footer .footer .gsarn_img {
  height: 50px;
  width: auto;
}
footer .copyrights {
  padding: 30px 15px;
  text-align: center;
  background-color: var(--color-blue3);
}
footer .copyrights p {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-blue2);
  text-wrap: balance;
}
footer .copyrights p a {
  font-size: 1.2rem;
  color: var(--color-blue2);
  text-decoration: none;
}
footer .copyrights p a:hover {
  color: white;
}
footer .social_icons {
  display: flex;
  gap: 5px;
  margin-top: 25px;
}
footer .social_icons a {
  width: 32px;
  height: 32px;
  background-color: #23366e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 16px;
}
footer .social_icons a:hover {
  background-color: #1B2C5C;
}


.page_actions {
  position: fixed;
  top: 180px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page_actions a {
  display: flex;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(8.1px);
  -webkit-backdrop-filter: blur(8.1px);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.page_actions a img {
  width: 35px;
  height: auto;
}

.landing_section {
  height: calc(100vh - 100px);
  width: 100%;
  background-color: rgb(233, 233, 233);
  overflow: hidden;
}

@media (max-width: 1600px) {
  .page_header .page_titles h1,
  .page_header .page_titles h2 {
    font-size: 4rem;
  }
  .page_header.with_image .page_titles h2 {
    top: 50px;
    max-width: 350px;
  }
  /* .page_header .page_titles h1 {
    bottom: calc(20% - 75px);
  } */
}

@media (max-width: 1280px) {
  .page_header .page_titles h1,
  .page_header .page_titles h2 {
    font-size: 3.2rem;
  }
  .page_header.with_image .page_titles h2 {
    max-width: 250px;
  }
  .page_header.with_image .page_titles {
    left: 7%;
  }
  /* .page_header.with_image .right_section .img_container {
    left: 8%;
  } */
  /* .page_header .page_titles h1 {
    bottom: calc(20% - 50px);
  } */
}

@media (max-width: 1025px) {
  .page_header.with_image .right_section {
    display: none;
  }
  .page_header.with_image {
    position: relative;
    top: initial;
    left: initial;
    height: 45vh;
    background-color: #001f64;
  }
  .page_header.with_image .header_overlay {
    top: 0;
    height: 40%;
    width: 100%;
    opacity: 1;
    background: rgb(245, 245, 245);
    background: linear-gradient(
      0deg,
      rgba(245, 245, 245, 0) 0%,
      rgba(0, 31, 100, 1) 100%
    );
  }
  .page_header.with_image .left_section .img_container {
    bottom: initial;
    top: 100px;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .page_header.with_image .left_section .img_container img {
    transform: rotate(0) scale(1);
  }
  .page_header.with_image .page_titles {
    left: 30px;
    top: 30px;
    background-color: transparent;
    width: 80%;
  }
  .page_header.with_image .page_titles h1,
  .page_header.with_image .page_titles h2 {
    color: white;
    font-size: 2.4rem;
    position: relative;
    top: initial;
    left: initial;
    bottom: initial;
    width: 95%;
    background-color: transparent;
    padding: 0;
  }
  .page_header.no_image {
    padding: 30px 15px 0 15px;
  }
  .page_header.no_image .page_titles {
    flex-direction: column;
  }
  .page_header.no_image .title_seperator {
    display: none;
  }
  .page_header.no_image br {
    display: none;
  }
  .page_header.no_image .page_titles h1,
  .page_header.no_image .page_titles h2 {
    padding: 0;
    font-size: 2.4rem;
    width: 100%;
  }
  .page_content {
    margin-top: 0;
    padding: 30px 15px 15px 15px;
  }
}

@media (max-width: 992px) {
  .next_prev_links span {
    display: none;
  }
  .page_actions,
  .down-center-cont,
  .my-report-cont,
  .accesibility-cont {
    display: none;
  }
}

@media (max-width: 768px) {
  footer .footer .container {
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .page_header.with_image .page_titles h1,
  .page_header.with_image .page_titles h2 {
    font-size: 2.4rem;
  }
  .page_header.with_image .page_titles {
    top: 15px;
    left: 15px;
    width: 100%;
  }
}
@media (max-width: 360px) {
  footer .footer .gsarn_img {
    height: 40px;
  }
}

@media print {
  footer,
  header,
  .page_actions {
    display: none;
  }
}


/* Search Page */
.search-container input {
  padding: 10px 15px;
  border: 1px solid grey;
  border-radius: 15px;
  width: 80%;
}
.search-container input[type="submit"] {
  width: 20%;
  margin-left: 10px;
  background-color: var(--color-blue1);
  border: none;
  color: white;
}
.search-container form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.search-container .search-result {
  margin-top: 15px;
}
.search-container .search-result .result {
  display: block;
  padding: 15px;
  border-bottom: 1px solid var(--color-blue2);
  text-decoration: none;
}
.search-container .search-result .result h4 {
  font-size: 1.8rem;
  margin: 0 0 10px 0;
  font-weight: 500;
  color: var(--color-blue1);
}
.search-container .search-result .result p {
  margin: 0;
  color: rgb(60, 60, 60);
}
.search-container .no-results {
  margin-top: 25px;
  width: 100%;
  padding: 50px;
  text-align: center;
  background-color: rgb(225, 225, 225);
  border-radius: 25px;
}
.search-container .no-results p {
  margin: 0;
}

@media (max-width: 540px) {
  .search-container form {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-container input {
    width: 100%;
  }
  .search-container input[type="submit"] {
    width: 100%;
    margin: 10px 0 0 0;
  }
}
/* End Search Page Styles */

/* Tooltips */
a[tooltip] {
  position: relative;
}

a[tooltip]::after {
  content: attr(tooltip);
  position: absolute;
  width: max-content;
  max-width: 250px;
  text-align: center;
  top: 50%;
  right: 70%;
  transform: scale(0.95) translateY(-50%);
  pointer-events: none;
  font-size: 11px;
  text-transform: capitalize;
  background-color: #23366e;
  color: var(--color-blue2);
  padding: 7.5px 20px;
  z-index: 9;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

  visibility: hidden;
  opacity: 0;
  transform-origin: bottom center;
  transition: 250ms ease-out;
}

a[tooltip]:hover::after {
  visibility: visible;
  right: calc(100% + 15px);
  transform: scale(1) translateY(-50%);
  opacity: 1;
}

a[tooltip].tooltip-bottom::after {
  top: calc(100% + 35px);
  right: 50%;
  transform: scale(0.95) translateY(0) translateX(50%);
  transform-origin: top center;
}
a[tooltip].tooltip-bottom:hover::after {
  right: 50%;
  top: calc(100% + 15px);
  transform: scale(1) translateY(0) translateX(50%);
}
/* End Tooltips */
.five_goals_container {
  margin: 30px 0;
  overflow-x: auto;
  overflow-y: hidden;
}
.five_goals_container .five_goals_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}
.five_goals_container .goal_block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  padding: 50px 10px;
  text-align: center;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 99%);
}
.five_goals_container .goal_block h4 {
  color: black;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.five_goals_container .goal_block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-blue1);
}
.five_goals_container .goal_block p {
  font-size: 1.4rem;
  vertical-align: top;
}
.five_goals_container .five_strands {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-blue1);
  width: 100%;
  text-align: center;
}

@media(max-width: 992px){
  .five_goals_container .goal_block {
    min-width: 150px;
  }
  .five_goals_container .goal_block h4 {
    font-size: 1.6rem;
  }
  .five_goals_container .goal_block h2 {
    font-size: 1.6rem;
  }
  .five_goals_container .goal_block p {
    font-size: 1.2rem;
  }
  .five_goals_container .five_strands {
    font-size: 1.8rem;
  }
}

.org_structure_table {
  border-collapse: collapse;
}
.org_structure_table td {
  padding: 10px;
  text-align: center;
  border: 2px solid var(--color-blue1);
  color: black;
}
.org_structure_table h4,
.org_structure_table h3 {
  font-weight: 600;
  margin: 10px 0;
}
.org_structure_table strong {
  color: var(--color-blue1);
}

.cocurricular_activities {
  padding: 0 100px;
  margin: 50px 0;
}
.cocurricular_activities .img-zoom-anim {
  width: 100%;
  aspect-ratio: 1/1;
}
.cocurricular_activities .activities_grid {
  margin: 30px 0 100px 0;
}
.cocurricular_activities .img-zoom-anim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cocurricular_activities .activity_block {
  height: 100%;
  width: 100%;
  background-color: var(--color-blue3);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}
.cocurricular_activities .activity_block > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cocurricular_activities .activity_block .right_arrow_icon {
  height: 40px;
  width: auto;
}
.cocurricular_activities h3 {
  font-size: 3.2rem;
}
.cocurricular_activities .acc_container {
  padding: 30px;
}

.accordion_2 {
  margin-bottom: 15px;
}
.accordion_2 .sub-menu-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-decoration: none;
  padding-bottom: 15px;
  border-bottom: 1px solid black;
  gap: 15px;
}
.accordion_2 .sub-menu-title img {
  height: 25px;
  width: auto;
  transition: 300ms ease-out;
}
.accordion_2 .sub-menu-title.active img {
  transform: rotate(180deg);
}
.accordion_2 .sub-menu-title h4 {
  color: black;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
}
.accordion_2 .sub-menu-content {
  padding: 15px;
  display: none;
}

.seven_cs {
  background-color: #D5EFFD;
  padding: 50px 30px;
}
.seven_cs .seven_cs_block {
  padding: 0 30px;
  border-right: 7px dotted var(--color-blue1);
  height: 100%;
}
.seven_cs .seven_cs_block.first_block {
  padding-left: 0;
}
.seven_cs .seven_cs_block.last_block {
  border-right: none;
  padding-right: 0;
}
.border-b-dotted {
  border-bottom: 7px dotted var(--color-blue1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.event_block {
  padding: 30px;
  border: 1px solid var(--color-blue1);
  height: 100%;
}


/* Back to top */
.back-to-top {
	cursor: pointer;
	position: fixed;
	bottom: 15px;
	right: 30px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgb(230, 230, 230);
	color: black;
	z-index: 18;
	text-decoration: none;

	visibility: hidden;
	opacity: 0;
	transform: translateY(30px);
	transition: 300ms ease-out;
}
.back-to-top.show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

@media(min-width: 1540px){
  .cocurricular_activities h3 {
    font-size: 4.5rem;
  }
}

@media(max-width: 1200px){
  .cocurricular_activities h3 {
    font-size: 2.4rem;
  }
  .event_block {
    padding: 15px;
  }
}

@media(max-width: 992px){
  .cocurricular_activities {
    padding: 0;
  }
  .cocurricular_activities .acc_container {
    padding: 30px 0 0 0;
  }

  .cocurricular_activities .activities_grid {
    margin: 30px 0 50px 0;
  }
  .border-b-dotted {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .seven_cs .seven_cs_block {
    border-right: none;
    padding: 30px 0 0 0;
    margin-bottom: 30px;
    border-bottom: 7px dotted var(--color-blue1);
  }
}

/* floating box style */
/*
.floating-box-section{
	background: #482C72;
	height: 90vh !important;
	

	padding: 20px;
}

.floating-box{
	max-width: 25% !important;	
	margin: 40px 50px;
}

.floating-box-head{
	border: 1.5px solid #0099FF;
	color: #FFFF00;
	font-size: 18px;
	margin-bottom: 25px;
	font-weight: 600;
	padding: 10px;
	transform: skewY(356deg) scaleX(1.05);
}

.floating-box-content{
	border: 1.5px solid #0099FF;
	color: white;
	font-size: 14px;
	padding: 3% 10% 3% 3%;
	min-height: 250px !important;
	transform: skewY(356deg) scaleX(1.05) translateX(25px);
}*/

/* Floating box section  start*/
.floating-box-section {
  background: #482c72;
  height: auto !important;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  position: relative;
  overflow: hidden;
}

/* Floating box */
.floating-box {
  opacity: 0; /* Start hidden */
  max-width: 24% !important;
  margin: 50px 50px;
  perspective: 1000px;
  transform-style: preserve-3d;
  transform-origin: center;
  position: relative;
  animation: float 5s ease-in-out infinite;
}

/*
.floating-box:nth-child(1){
	animation-delay: 0.2s;
}

.floating-box:nth-child(2){
	animation-delay: 1.5s;
}

.floating-box:nth-child(3){
	animation-delay: 0.2s;
}

.floating-box:nth-child(4){
	animation-delay: 0.2s;
}

.floating-box:nth-child(5){
	animation-delay: 1.5s;
}

.floating-box:nth-child(6){
	animation-delay: 0.2s;
}
*/

/* Floating box head */
.floating-box-head {
  border: 1.5px solid #0099ff;
  color: #ffff00;
  font-size: 23px;
  margin-bottom: 25px;
  font-weight: 600;
  padding: 10px;
  transition: transform 0.2s ease-out;
  animation: floatxh 5s ease-in-out infinite;
  transform: skewY(356deg) scaleX(1.05); /* Combine skew and scale */
  position: relative;
  z-index: 2;
}

/* Floating box content */
.floating-box-content {
  border: 1.5px solid #0099ff;
  color: white;
  font-size: 17px;
  padding: 3% 7% 3% 3%;
  min-height: 250px !important;
  transition: transform 0.2s ease-out;
  animation: floatxc 5s ease-in-out infinite;
  transform: skewY(356deg) scaleX(1.05) translateX(25px); /* Combine skew, scale, and translate */
  position: relative;
  z-index: 1;
}

/* Floating animation for the entire box */
@keyframes float {
  0%,
  100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Horizontal floating animation for the box head */
@keyframes floatxh {
  0%,
  100% {
    transform: skewY(356deg) scaleX(1.05) translateX(-2px); /* Combine skew and scale */
  }
  50% {
    transform: skewY(356deg) scaleX(1.05) translateX(2px); /* Combine skew and scale */
  }
}

/* Horizontal floating animation for the box content */
@keyframes floatxc {
  0%,
  100% {
    transform: skewY(356deg) scaleX(1.05) translateX(27px); /* Combine skew, scale, and translate */
  }
  50% {
    transform: skewY(356deg) scaleX(1.05) translateX(23px); /* Combine skew, scale, and translate */
  }
}

@media(max-wdth:1280px){
	.floating-box {
		opacity: 0;
		max-width: 25% !important;
		margin: 30px 30px;
		perspective: 1000px;
		transform-style: preserve-3d;
		transform-origin: center;
		position: relative;
		animation: float 5s ease-in-out infinite;
	}
}

@media (max-width:1111px){
	.floating-box {
		opacity: 0;
		max-width: 35% !important;
		margin: 30px 30px;
		perspective: 1000px;
		transform-style: preserve-3d;
		transform-origin: center;
		position: relative;
		animation: float 5s ease-in-out infinite;
	}
}

@media(max-width:991px){
	.floating-box-head {	  
	  font-size: 22px;
	}
	
	.floating-box-content {
		font-size: 16px;
	}
	
}

@media(max-width:768px){
	.floating-box {
		opacity: 0;
		max-width: 37% !important;
		margin: 25px 25px;
		perspective: 1000px;
		transform-style: preserve-3d;
		transform-origin: center;
		position: relative;
		animation: float 5s ease-in-out infinite;
	}
}

@media (max-width: 740px) {
  .floating-box {
    opacity: 0; /* Start hidden */
    max-width: 80% !important;
    margin: 30px 40px 30px -5px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transform-origin: center;
    position: relative;
    animation: float 5s ease-in-out infinite;
    padding: 0px;
  }
	
  .floating-box-content {   
    min-height: 200px !important;
  }
}

@media (max-width: 540px) {
	.floating-box {       
        margin: 25px 40px 30px -5px;
	}
	
	.floating-box-head {
        font-size: 21px;
		min-width: fit-content;
    }
	
    .floating-box-content {
        font-size: 15px;
    }
}
/* Floating box section end*/

/*bod section start*/

.bod-main-section {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100% !important;
	height: 100%;
	/* overflow: hidden; */
	position: relative;
	padding-bottom: 70px;
	/* Enable 3D perspective */
	transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.bod-main-section.hidden {
	opacity: 0;
	transform: scale(0.9);
}

.sbod-grid {
	display: grid;
	grid-template-areas: "a b c d" "e f g h" "'' i j ''";
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(4, 1fr);
	gap: 40px 20px;
	width: 90%;
	height: 90%;
	/* overflow: hidden; */
	justify-items: center;
	align-items: start;
	/* Enable 3D transform for children */
	transition: transform 0.3s ease;
	/* Smooth transition for rotation */
}

.bod_grid_item {
	width: 100%;
	height: fit-content;
	background: none;
	border-radius: 10px;
	/* overflow: hidden; */
	cursor: pointer;
	pointer-events: all;
	background-position: center -30px;
	background-repeat: no-repeat;
	background-size: 80%;
	/* animation: float 3s ease-in-out infinite; */
	transition: transform 0.5s ease, opacity 0.3s ease, background-image 2s, background-size 2s ease;
	transform-style: preserve-3d;
	/* overflow: hidden; */
}

.bod_grid_item img {
	max-height: 100%;
	width: 100%;
	scale:1;
	transition: all 1.3s ease-in-out;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.bod-image{
	overflow: hidden;
	width: 100%;
	height: fit-content;
}

.bod_grid_item .name-section {
	
	color: #006db7 !important;
}

.bod_grid_item .name-section h2 {
font-size: 22px !important;
  margin-bottom: 5px !important;
  color: #006db7 !important;
  transition: transform 0.5s ease, text-shadow 0.5s ease;
  margin-top: 15px;
	
}

.fullscreen-right h2 {
	font-size: 40px !important;
	margin-bottom: 8px !important;
	color: #006db7 !important;
}

.bod_grid_item .name-section h3 {
	margin-bottom: 8px !important;
	font-size: 20px !important;
	margin-top: 0px;
    color: black !important;
	transition: transform 0.5s ease, text-shadow 0.5s ease;
	
}

.fullscreen-right h3 {
    color: black !important;
    margin-top: 0px !important;
}

/*
.bod_grid_item:hover .name-section h2{
	text-shadow: 2px 2px 12px #006db7d4;
	transform: translateZ(5px) translatey(2px);
}

.bod_grid_item:hover .name-section h3{
	text-shadow: 2px 2px 12px #000000d4;
	transform: translateZ(5px) translatey(2px);
}
*/


 .bod_grid_item:hover {
	background-size: 90%;
	transform: translateZ(42px);
}

.bod_grid_item:hover img {
	scale: 1.2;
	transition: scale 1.3s ease;
} 

.bod_grid_item-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.fullscreen-view {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	transform: scale(0.9);
	animation: fadeIn 0.6s ease-in-out forwards;
}

.fullscreen-left {
	flex: 1;
	height: 100%;
	background-size: cover;
	background-position: center;
	border-right: 2px solid #eee;
}

.fullscreen-right {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
	background-color: #f4f4f4;

}

.fullscreen-right h1 {
	margin: 0;
	font-size: 32px;
	color: #333;
}

.fullscreen-right p {
	font-size: 18px;
	color: #666;
}

.bod-details {
	overflow-y: auto;
	opacity: 0;
	animation: fadeup 1.5s ease 0.5s forwards;
}

.back-button {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: #006db7;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 5px;
	z-index: 1001;
	opacity: 0;
	animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.full-profile-content {
	width: 100%;
	display: flex;
	height: 100%;
	align-content: stretch;
	background-color: #f4f4f4;
}

.full-profile {
	width: 100%;
	height: 100%;
	padding: 80px 23px;

}

.fullscreen-left {
	flex: 1;
	height: 100%;
	background-size: cover;
	background-position: center;
	border-right: 2px solid #eee;
	background-repeat: no-repeat;
}

.full-screen {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  background: white;
  z-index: 2000;
  opacity: 0; /* Start with hidden */
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* Transition on opacity and scale */
}

/* Active class to trigger the animation */
.full-screen.active {
  opacity: 1; /* Fade in */
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeup {
	from {
		margin-top: 80px;
		opacity: 0;
	}

	to {
		margin-top: 10px;
		opacity: 1;
	}
}

@media(max-width:1280px){
	.bod_grid_item .name-section h2 {
		font-size: 20px !important;
		margin-top: 15px;
	}
	
	.bod_grid_item .name-section h3 {
		font-size: 16px !important;
	}
}

@media(max-width:1024px) {
	.sbod-grid {
		display: grid;
		grid-template-areas:
			"a b"
			"c d"
			"e f"
			"g h"
			"i l";
		grid-template-rows: repeat(4, 1fr);
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		width: 90%;
		overflow: hidden;
		justify-items: center;
		align-items: start;
		transform-style: preserve-3d;
		transition: transform 0.3s ease;
	}

	.back-button {
		position: absolute;
		top: 0px;
		left: 20px;
		background-color: #006db7;
		color: #fff;
		border: none;
		padding: 10px 20px;
		font-size: 16px;
		cursor: pointer;
		border-radius: 5px;
		z-index: 1001;
		opacity: 0;
		animation: fadeIn 0.6s ease-in-out 0.4s forwards;
	}


	.full-profile-content {
		width: 100%;
		display: flex;
		height: 100%;

		align-content: stretch;
		flex-direction: column;
	}
	

	.full-profile {
		width: 100%;
		height: 100%;
		padding: 55px 23px 25px 23px;
	}


	 .fullscreen-left {
        flex: 1;
        height: 100%;
        background-size: 100%;
        background-position: center;
        border-right: 2px solid #eee;
        max-width: 458px;
        background-repeat: no-repeat;
	}
	
	.fullscreen-right {
		flex: 1;
		padding: 20px;
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: flex-start;
		background-color: #f4f4f4;
		height: 40%;
	}
	
	.fullscreen-right h2 {
		font-size: 32px !important;
		margin-bottom: 8px !important;
		color: #006db7 !important;
	}
}

@media(max-width:768px) {
	.sbod-grid {
		display: grid;
		grid-template-areas:
			"a b"
			"c d"
			"e f"
			"g h"
			"i l";
		grid-template-rows: repeat(4, 1fr);
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		width: 100%;
		overflow: hidden;
		justify-items: center;
		align-items: start;
		transform-style: preserve-3d;
		transition: transform 0.3s ease;
	}

	.full-profile-content {
		width: 100%;
		display: flex;
		height: 106%;
		align-content: stretch;
		flex-direction: column;
	}

	.full-profile {
		width: 100%;
		height: 100%;
		padding: 55px 0px;
	}

	.fullscreen-right h2 {
		font-size: 30px !important;
		margin-bottom: 8px !important;
		color: #006db7 !important;
	}

	.fullscreen-left {
		flex: 1;
		height: 100%;
		background-size: cover;
		background-position: center;
		border-right: 2px solid #eee;
		min-width: 100%;
		min-height: 60%;
	}

	.fullscreen-right {
		flex: 1;
		padding: 20px;
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: flex-start;
		background-color: #f4f4f4;
		min-height: stretch;
		max-height: 50%;
	}

	.back-button {
		position: absolute;
		top: 0px;
		left: 0px;
		background-color: #006db7;
		color: #fff;
		border: none;
		padding: 10px 20px;
		font-size: 16px;
		cursor: pointer;
		border-radius: 5px;
		z-index: 1001;
		opacity: 0;
		animation: fadeIn 0.6s ease-in-out 0.4s forwards;
	}

	.bod-details {
		overflow-y: auto;
		opacity: 0;
		animation: fadeup 1.5s ease 0.5s forwards;
		padding-right: 8px;
	}
	
	.bod_grid_item .name-section h2 {
        font-size: 22px !important;
    }
	
	.bod_grid_item .name-section h3 {
		font-size: 18px !important;
	}
}

@media(max-width:540px) {
	.sbod-grid {
		display: grid;
		grid-template-areas:
			"a"
			"b"
			"c"
			"d"
			"e"
			"f"
			"g"
			"h"
			"i"
			"l";
		grid-template-rows: repeat(1, 1fr);
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
		width: 100%;
		height: 100%;
		justify-items: center;
		align-items: start;
		transform-style: preserve-3d;
		transition: transform 0.3s ease;
	}

	.full-profile-content {
		width: 100%;
		display: flex;
		height: 110%;
		align-content: stretch;
		flex-direction: column;
	}

	.full-profile {
		width: 100%;
		height: 100%;
		padding: 50px 0px;
	}

	.fullscreen-right h2 {
		font-size: 24px !important;
		margin-bottom: 8px !important;
		color: #006db7 !important;
	}

	.fullscreen-left {
		flex: 1;
		height: 100%;
		background-size: cover;
		background-position: center;
		border-right: 2px solid #eee;
		max-width: 100%;
		min-height: 25%;
	}

	.fullscreen-right {
		flex: 1;
		padding: 10px;;
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: flex-start;
		background-color: #f4f4f4;
		min-height: stretch;
		max-height: 75%;
	}

	.back-button {
		position: absolute;
		top: 0px;
		left: 0px;
		background-color: #006db7 !important;
		color: #fff;
		border: none;
		padding: 7px 17px;
		font-size: 16px;
		cursor: pointer;
		border-radius: 5px;
		z-index: 1001;
		opacity: 0;
		animation: fadeIn 0.6s ease-in-out 0.4s forwards;
	}

	.bod-details {
		overflow-y: auto;
		opacity: 0;
		animation: fadeup 1.5s ease 0.5s forwards;
		padding-right: 8px;
	}
	
	.fullscreen-right h3 {
		color: black !important;
		margin-top: 0px !important;
		font-size: 19px;
	}
}

/*bod section end*/

/*Leadership Team section end*/

.leadership-team-flex {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
}

.leadership-team_item {
	padding: 0px 10px;
	height: auto;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	margin: 10px 0px 10px 0px;
	transition: transform 0.2s ease-in-out;
}

.leadership-team_item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 5px;
	scale:1;
	transition: all 1.3s ease-in-out;
}

.leadership-accordion {
	border: 1px solid #B9E6FA;
	border-bottom: none;
}

.leadership-accordion:last-of-type {
	border-bottom: 1px solid #B9E6FA;
}

.leadership-sub-menu-title {
	display: block;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	text-decoration: none;
	cursor: pointer;
	height: 160px;
	transition: 300ms ease-out;
}

.leadership-team-title {
    max-width: 80%;
}

.leadership-sub-menu-title:hover,
.leadership-sub-menu-title.active {
	background-color: rgb(185, 230, 250, 0.3);
}

.leadership-sub-menu-title h2 {
	font-size: 2.2rem;
	font-weight: 500;
	color: #1e72b8;
}

.leadership-sub-menu-title h3 {

	font-size: 1.7rem;
	margin-top: 0;
	color: #000000;
}

.leadership-sub-menu-title i {
    font-size: 2rem;
    line-height: 1rem;
    color: #ffffff;
    transition: 300ms;
    width: 45px;
    text-align: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: #1e72b8;
    padding: 10px 10px;
    vertical-align: middle;
	display: flex;
    justify-content: center;
    align-items: center;
}

.leadership-sub-menu-title.active i {
	transform: rotate(180deg);
}

/* Smooth expand/collapse using max-height */
.leadership-sub-menu-content {
	padding: 0 20px;
	/* Reduced padding initially to prevent extra space */
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out, padding 0.3s ease-out;
}

.leadership-sub-menu-content.open {
	padding: 15px 20px;
	/* Restore padding when open */
}

.image-overflow{
	overflow: hidden;
	height: fit-content;
}

.leadership-team_item:hover img{
	scale:1.2;
	transition: scale 1.5s ease;
}

@media(max-width:1280px){
	
	.leadership-sub-menu-title {   
    	padding: 10px;  
		height: 135px;
	}
	
	.leadership-team-title {
		max-width: 75%;
	}
	
	.leadership-sub-menu-title h2 {
		font-size: 2.2rem;
		margin-bottom: 5px;
	}
	
	.leadership-sub-menu-title h3 {
		font-size: 1.5rem;
	}
	
	.leadership-sub-menu-content {
		padding: 0 10px;
	}
	
	.leadership-sub-menu-content.open {
		padding: 10px 10px;
	}
}

@media(max-width:1200px){
	.leadership-team_item {
		width: 50%;
	}
	
	.leadership-team-title {
    	max-width: 75%;
	}
	
	.leadership-sub-menu-title {    
		padding: 15px;
	}
	
	.leadership-sub-menu-title h2 {
		font-size: 2.4rem;
		margin-bottom: 5px;
	}
	
	.leadership-sub-menu-title h3 {
		font-size: 1.6rem;
	}
	
	.leadership-sub-menu-content {
		padding: 0 15px;
	}
	
	.leadership-sub-menu-content.open {
		padding: 15px 15px;
	}
}


@media(max-width:767px){
	
	.leadership-sub-menu-title {		
		padding: 10px;
	}
	
	.leadership-team-title {
    	max-width: 75%;
	}
	
	.leadership-sub-menu-title i {		
		width: 45px;	
	}
	
	.leadership-sub-menu-title h2 {
		font-size: 2rem;
		margin-bottom: 5px;
	}
	
	.leadership-sub-menu-title h3 {
        font-size: 1.5rem;
        margin-top: 0;
        color: #000000;
    }
	
	.leadership-sub-menu-content {
		padding: 0 10px;
	}
	
	.leadership-sub-menu-content.open {
		padding: 10px 10px;
	}
}

@media(max-width:575px){
	.leadership-team_item {
		width: 100%;
		padding: 0px 10px;
	}
	
	.leadership-sub-menu-title {
		padding: 10px;
	}
	
	.leadership-sub-menu-title i {
        width: 45px !important;
    }
	
	.leadership-sub-menu-title h2 {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }
	
	.leadership-sub-menu-title h3 {
		font-size: 1.7rem;
	}
}

@media(max-width:380px){
	.leadership-team_item {
		padding: 0px !important;
	}
	
	.leadership-sub-menu-title {
		padding: 10px;
	}
	
	.leadership-sub-menu-title i {
        width: 45px !important;
    }
	
	.leadership-sub-menu-title h2 {
        font-size: 2rem;
		margin-bottom: 5px;
    }
	
	.leadership-sub-menu-title h3 {
		font-size: 1.5rem;
	}
}

@media(min-height:1180px){
	.fullscreen-left {
        flex: 1;
		height: 100%;
        max-height: 40%;
        background-size: 100%;
        background-position: center;
        border-right: 2px solid #eee;
        max-width: 458px;
    }
	
	.fullscreen-right {
        flex: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        background-color: #f4f4f4;
        min-height: 65% !important;
    }
}

@media(max-height:600px){
	.fullscreen-left {
        flex: 1;
		height: 100%;
        max-height: 50%;
        background-size: 100%;
        background-position: center;
        border-right: 2px solid #eee;
        max-width: 350px;
    }
	
	.fullscreen-right {
        flex: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        background-color: #f4f4f4;
        min-height: 50% !important;
    }
}

/*Leadership Team section end*/

/* slide panel custome css */

.cd-panel-header {
    position: relative;
    float: right;
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.96);
    z-index: 2;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
    -webkit-transition: top 0.3s 0s;
    -moz-transition: top 0.3s 0s;
    transition: top 0.3s 0s;
}

/* slide panel custome css */

/* download excel css */

.download-table {
    display: flex;
    justify-content: flex-end;
}
.download-table .exportToExcel {
    font-size: 14px;
    text-decoration: none;
    color: black;
    margin: 10px 0;
    font-weight: bold;
}
.download-table .exportToExcel i {
    margin-right: 2.5px;
    color: #1e5baa;
}


/* download excel css *?/

/* Timeline Section css */

.timeline-main-section{
	padding: 20px;
    height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*background-color: #EDE2EB;*/
}

.timeline-container {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 710px;
	overflow: hidden;
	padding: 2.5% 0%;
}

.timeline {
	display: flex;
	flex: 1;
	justify-content: flex-start;
	position: relative;
	transition: transform 2s ease-in-out;
	align-items: center;
	/* Smooth transition of 2 seconds */
}

.timeline-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	background: #ddd;
	z-index: 0;
	transform: translateY(-50%);
}

.timeline-line-filled {
	position: absolute;
	top: 50%;
	left: 0;
	height: 4px;
	background: #007bff;
	z-index: 1;
	transform: translateY(-50%);
	transition: width 0.3s ease-in-out;
}

.timeline-year {
	z-index: 2;
	cursor: pointer;
	padding: 10px;
	margin: 0 0px 0px 50px;
	border-radius: 50%;
	background: #fff;
	color: #333;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	transition: all 0.5s ease-in-out;
	flex-shrink: 0;
	aspect-ratio: 1/1;
	line-height: 1rem;
	display: flex;
	align-items: center;
	border: 1px solid #006DB7;
	scale: 0.95;
	width: 75px;
	height: min-content;
	justify-content: center;
	line-height: 1.1em;
}

.timeline-year.active {
	background: #006DB7;
	color: #fff;
	scale: 1.15;
}

/*
@keyframes switching {
	0% {
		transform: perspective(1000px) rotateY(0deg) opacity(1);
	}

	40% {
		transform: perspective(1000px) rotateY(0deg) translateY(-40px) ;
	}

	100% {
		transform: perspective(1000px) rotateY(0deg) translateY(0px) scale(1.0) ;
	}
}

@keyframes switching_back {
	0% {
		transform: perspective(1000px) rotateY(0deg);
		z-index: 200;
	}

	40% {
		transform: perspective(1000px) rotateY(0deg) translateY(0px) ;
	}

	100% {
		transform: perspective(1000px) rotateY(0deg) translateY(100px) scale(0.8) opacity(0);
		z-index: 100;
	}
}
*/

/* Fade-Up Animation */
@keyframes fadeUp {
    0% {
        transform: perspective(1000px) translateY(100px) scale(0.9);
        opacity: 0;
    }
    40% {
        transform: perspective(1000px) translateY(10px) scale(1.0);
        opacity: 0.8;
    }
    100% {
        transform: perspective(1000px) translateY(0px) scale(1.0);
        opacity: 1;
    }
}

/* Fade-Down Animation */
@keyframes fadeDown {
    0% {
        transform: perspective(1000px) translateY(0px) scale(1.0);
        opacity: 1;
        z-index: 200;
    }
    40% {
        transform: perspective(1000px) translateY(20px) scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: perspective(1000px) translateY(100px) scale(0.8);
        opacity: 0;
        z-index: 100;
    }
}

#cardContainer {
  position: relative;
  z-index: 10;
}

/*
.card-container {
	display: none;
	width: 450px;
	padding: 20px;
	border: 1px solid #532D84;
	  background-color: #EDE2EB;
	border-radius: 10px;
	box-shadow: 1px 18px 29px rgb(105 0 221 / 15%);
	background: none;
	text-align: left;	
	opacity: 0;
	min-height: 150px;
	transform: perspective(1000px) rotateY(0deg);
	transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  position: relative;
  z-index: 10;
}
*/

.card-container {
    display: none;
    width: 450px;
    padding: 20px;
    /* border: 1px solid #532D84; */
    background-color: rgb(0 109 183);
    border-radius: 10px;
    box-shadow: 1px 18px 29px rgb(0 109 183 / 33%);
    /* background: none; */
    text-align: left;
    opacity: 0;
    min-height: 150px;
    transform: perspective(1000px) rotateY(0deg);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    position: relative;
    z-index: 10;
}

.card-container p{
	color: #FFFFFF !important;
}

.card-container.active {
	display: block;
/*	opacity: 1;*/
	animation: fadeUp 2s forwards;
}

.card-container:not(.active) {
	animation: fadeDown 2s forwards;
}

.controls {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.control-button {
	cursor: pointer;
	padding: 8px 11px;
	margin: 0 20px;
	border: 1px solid #007bff !important;
	border: none;
	border-radius: 5px;
	transition: all 0.4s ease-in-out;
	height: min-content;
	align-items: center;
	display: flex;
	opacity: 1;
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.control-button i{
	font-size: 18px;
	color:#007bff !important;
}

.control-button#prevButton:hover {
	transform: translate(-5px, 0px) scale(1.04);
}

.control-button#nextButton:hover {
	transform: translate(5px, 0px) scale(1.04);
}


.control-button:disabled {
	background: #ddd;
	opacity: 0 !important;
	cursor: not-allowed;
}

.d-flex {
	display: flex;
	justify-content: center;
	align-items: center;

}

.timeline-section {
	margin-top: 70px;
}

@media(max-width:1280px){
	.timeline-container {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		max-width: 600px;
		overflow: hidden;
		padding: 2.5% 0%;
	}
	
	.timeline-year {
		z-index: 2;
		cursor: pointer;
		padding: 10px;
		margin: 0px 0px 0px 40px;
		border-radius: 50%;
		background: #fff;
		color: #333;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		transition: all 0.5s ease-in-out;
		flex-shrink: 0;
		aspect-ratio: 1 / 1;
		line-height: 1rem;
		display: flex;
		align-items: center;
		border: 1px solid #007bff;
		scale: 0.95;
		 width: auto !important; 
		height: min-content;
		justify-content: center;
		line-height: 1.1em;
	}
}


@media(max-width:980px){
	.card-container {
		display: none;
		width: 300px;
		padding: 20px;
		border: 1px solid #532D84;
		background-color: #EDE2EB;
		border-radius: 10px;
		box-shadow: -10px 7px 15px rgb(105 0 221 / 15%);
		/*background: none;*/
		text-align: left;	
		opacity: 0;
		min-height: 150px;
		transform: perspective(1000px) rotateY(20deg);
		transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	}
	
	.timeline-container {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		max-width: 330px;
		overflow: hidden;
		padding: 2.5% 0%;
	}
	
	.timeline-year {
		z-index: 2;
		cursor: pointer;
		padding: 10px;
		margin: 0px 0px 0px 40px;
		border-radius: 50%;
		background: #fff;
		color: #333;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		transition: all 0.5s ease-in-out;
		flex-shrink: 0;
		aspect-ratio: 1 / 1;
		line-height: 1rem;
		display: flex;
		align-items: center;
		border: 1px solid #007bff;
		scale: 0.95;
		 width: auto !important; 
		height: min-content;
		justify-content: center;
		line-height: 1.1em;
	}
}

@media(max-width:450px){
	.timeline-container {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		max-width: 250px;
		overflow: hidden;
		padding: 2.5% 0%;
	}

  .card-container {
    transform: perspective(0) rotateY(0);
  }

  .card-container.active {
    animation: none;
  }
  .card-container:not(.active) {
    animation: none;
  }

  .timeline-section {
    margin-top: 50px;
  }
	
	.timeline-year {
		z-index: 2;
		cursor: pointer;
		padding: 10px;
		margin: 0px 0px 0px 30px;
		border-radius: 50%;
		background: #fff;
		color: #333;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		transition: all 0.5s ease-in-out;
		flex-shrink: 0;
		aspect-ratio: 1 / 1;
		line-height: 1rem;
		display: flex;
		align-items: center;
		border: 1px solid #007bff;
		scale: 0.95;
		 width: auto !important; 
		height: min-content;
		justify-content: center;
		line-height: 1.1em;
	}
}

@media(max-width:360px){
	.timeline-container {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		max-width: 200px;
		overflow: hidden;
		padding: 2.5% 0%;
	}
	
	.timeline-year {
		z-index: 2;
		cursor: pointer;
		padding: 6px;
		margin: 0px 0px 0px 40px;
		border-radius: 50%;
		background: #fff;
		color: #333;
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		transition: all 0.5s ease-in-out;
		flex-shrink: 0;
		aspect-ratio: 1 / 1;
		line-height: 1rem;
		display: flex;
		align-items: center;
		border: 1px solid #007bff;
		scale: 0.95;
		 width: auto !important; 
		height: min-content;
		justify-content: center;
		line-height: 1.1em;
	}
}



/* Timeline Section css */