@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: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-weight: normal;
  color: var(--black);
}

:root {
  --primary-color: #034690;
  --orange-color: #f6902d;
  --white: #ffffff;
  --light-white: #f3f3f3;
  --black: #000000;
  --light-black: #696969;
  --light-yellow: #fff1cc;
  --border-color: #e5e5e5;
  --poppins-font: "Poppins", sans-serif;

  /* Theme Color*/
  --light-theme: #034690;
  --light-theme-one: #f3f3f3;
  --light-theme-txt: #034690;
  --light-theme-txt-one: #ffffff;
  --light-theme-txt-two: #ffffff;


}

.orange-theme {
  --primary-color: var(--orange-color);
}

/* ---------------------------------------- Custom Container ---------------------------------------- */
.container {
  max-width: 1244px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Container media query */
@media screen and (max-width: 1700px) {
  .container {
    max-width: 1170px;
  }
}

@media screen and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}

/* ---------------------------------------- Common CSS Start ---------------------------------------- */
button {
  border: none;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

::placeholder {
  color: #b5b5b5;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.teaching-related-courses h1,
.teaching-related-courses h2,
.teaching-related-courses h3,
.teaching-related-courses h4,
.teaching-related-courses h5,
.teaching-related-courses h6,
.teaching-related-courses p {
  margin-bottom: 15px;
  font-family: var(--poppins-font);
  color: var(--black);
}

.lower-roman-list {
  list-style: none;
  /* Remove default Roman marker */
  counter-reset: roman-counter;
  padding: 0;
}

.lower-roman-list li {
  counter-increment: roman-counter;
  position: relative;
  padding-left: 50px;
  /* space for marker */
}

.lower-roman-list li::before {
  content: "(" counter(roman-counter, upper-roman)"." ")";
  position: absolute;
  left: 0;
  width: 40px;
  /* height: 40px;        */
  text-align: center;
  display: inline-block;
  color: #000;
}

.disc-ul {
  list-style: disc;
}

/* Padding Top Bottom Section */
.padding-top,
.program-offer-padding {
  padding-top: 80px;
}

.padding-bottom {
  padding-bottom: 80px;
}

/* Content Heading */
.heading {
  font-size: 36px;
  color: #034690;
  line-height: 1.4;
}

.heading.white {
  color: white;
}

.sub-heading {
  font-size: 28px;
  line-height: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.sub-heading-small {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 15px;
  color: #f4a300;
}

.ul-disc {
  list-style: disc;
}

.ul-disc .font-size-15 {
  color: #444;
}

/* Img */
img {
  object-fit: cover;
}

/* Font Size : 15px */
.font-size-15 {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.65;
  font-weight: normal;
}

/* Font Size : 17px */
.font-size-17 {
  font-size: 15px;
  color: var(--light-black);
  line-height: 1.65;
  font-weight: normal;
}

/* Font Size : 18px */
.font-size-18 {
  font-size: 18px;
  color: var(--black);
  line-height: 1.6;
  font-weight: 600;
}

/* Margin-bottom: 40px */
.mb-40px {
  margin-bottom: 40px;
}

/* Margin-bottom: 30px */
.mb-30px {
  margin-bottom: 30px;
}

/* Form Control*/
.form-control {
  font-size: 14px;
}

.form-control:focus {
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

/* Button */
.btn-wrapper {
  background: #f45613;
  background: linear-gradient(90deg,
      rgba(244, 86, 19, 1) 0%,
      rgba(249, 156, 29, 1) 50%);
  background-size: 200% 100%;
  background-position: left;
  padding: 15px 25px;
  border-radius: 23px;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  transition: background-position 0.5s ease-in-out;
  display: flex;
  max-width: fit-content;
  align-content: center;
}

.orange-theme .btn-wrapper {
  background: linear-gradient(90deg, #034690 0%, #238cfc 100%);
  background-position: left;
}

.btn-wrapper:hover {
  background-position: right;
  color: var(--white);
  cursor: pointer;
}

@keyframes moveRightLeft {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(3px);
  }

  50% {
    transform: translateX(5px);
  }

  70% {
    transform: translateX(3px);
  }

  100% {
    transform: translateX(0);
  }
}

/* .btn-wrapper i {
  display: inline-block;
} */

.btn-wrapper:hover i {
  animation: moveRightLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.number-ul li {
  list-style: auto;
}

.about-directors-accordion-wrapper .number-ul li::marker {
  color: var(--light-black);
}

/* ---------------------------------------- Common CSS End ---------------------------------------- */
/* ---------------------------------------- Top Header Start ---------------------------------------- */
.top-header {
  background-color: var(--light-theme-one);
  padding-top: 7px;
  padding-bottom: 7px;
  position: relative;
  /* z-index: 998; */
}

.language-login {
  font-size: 14px;
}

.language-login .language-dropdown .dropdown button,
.font-small-big ul li button,
.skip-content a {
  color: var(--light-theme-txt);
  background-color: transparent;
  transition: 0.4s;
}

.language-dropdown .dropdown-item {
  padding: 6px 10px;
  font-size: 14px;
}

.skip-log-in {
  gap: 15px;
}

.skip-content a {
  color: var(--light-theme-txt);
  transition: all 0.4s ease-in-out;
}

.font-small-big ul li {
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}

.font-small-big ul li:last-child {
  margin-right: 0px;
}

.language-dropdown button {
  display: flex;
  align-items: center;
  gap: 2px;
}

.language-dropdown button[aria-expanded="false"] i {
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

.language-dropdown button[aria-expanded="true"] i {
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}

/* Toggle Button */
.checkbox {
  opacity: 0;
  position: absolute;
}

.checkbox-label {
  background-color: var(--light-theme-txt);
  width: 43px;
  height: 21px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.dark .checkbox-label {
  background-color: var(--light-theme-txt);
}

.checkbox-label .ball {
  background-color: var(--light-theme-one);
  width: 17px;
  height: 17px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  transition: transform 0.2s linear;
}

.checkbox:checked+.checkbox-label .ball {
  transform: translateX(22px);
}

/* Log In */
.log-in a {
  color: var(--light-theme-txt);
  transition: all 0.4s ease-in-out;
}

/* Hover */
.skip-content a:hover,
.font-small-big ul li:hover,
.log-in a:hover {
  opacity: 0.65;
}

/* ---------------------------------------- Top Header End ---------------------------------------- */

/* ---------------------------------------- Header Start ---------------------------------------- */
.header-menu {
  padding-top: 12px;
  padding-bottom: 12px;
  /* border-bottom: 1px solid red; */
}

.menu-search-bar {
  gap: 34px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 6px -1px #69696963;
  background-color: var(--white);
  transition: all 0.2s ease;
}

.header-menu {
  position: relative;
}

body.menu-open .header-main::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  height: 100vh;
  width: 100%;
  left: 0;
  backdrop-filter: blur(2px);
  transition: all 0.4s ease-in-out;
  pointer-events: auto;
}

/* body.menu-open .header-main::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  pointer-events: none;
  height: 100vh;
  width: 0%;
  left: 0;
  backdrop-filter: blur(2px);
  transition: all 0.4s ease-in-out;
} */
/* body.menu-open::before, */
body.menu-open .header-main::before {
  width: 100%;
}

/* header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1001;
  transition: all 0.2s ease;
  box-shadow: 0 3px 15px 0 #69696963;
}

.header-menu {
  background-color: var(--white);
  position: relative;
  z-index: 1001;
} */

/* .header-menu::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
}
body.menu-open header .header-menu::after{
  background-color: transparent;
} */
/* body.menu-open header {
  background-color: transparent;
}
body.menu-open header .header-menu nav .search-bar{
  opacity: 0;
} */
header.sticky .logo img {
  width: 205px;
}

.logo img {
  width: 221px;
  height: auto;
  transition: all 0.2s ease-in-out;
}

.header-menu .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-logo {
  display: flex;
}

.main-logo-menu {
  display: none !important;
}

.header-menu .menu li {
  padding-left: 15px;
  padding-right: 15px;
}

.header-menu .menu li a {
  display: block;
  font-size: 14px;
  transition: 0.2s all ease-in-out;
  color: var(--light-theme-txt);
  transition: all 0.4s ease-in-out;
}

.header-menu .menu li a:hover {
  /* color: var(--light-theme-txt); */
  opacity: 0.65;
}

.header-menu .menu li:first-child {
  padding-left: 0px;
}

.header-menu .menu li:last-child {
  padding-right: 0px;
}

.header-menu .menu .sub-menu li {
  padding-inline: 0;
}

.header-menu .menu-icon {
  display: none;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked~.menu {
  transform: scale(1, 1);
}

.header-menu .sub-menu li a {
  color: #034690;
}


/* Search bar */
.search-bar .sidebar-box {
  font-size: 14px;
  width: 100%;
  float: left;
  background: #fff;
}

.search-bar .search-form-wrap {
  display: block;
}

.search-bar .search-form .form-group {
  position: relative;
}

.search-bar .search-form .form-group #s {
  background: transparent;
  padding: 11px 35px 11px 15px;
  border: 1px solid var(--light-theme-txt);
  border-radius: 21px;
  color: var(--light-theme-txt);
}

.search-bar .search-form .form-group #s::placeholder {
  color: var(--light-theme-txt);
}

.search-bar .search-form .form-group .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.search-bar .search-form .form-group .icon svg,
.search-box-mobile .search-btn svg {
  width: 18px;
}

.search-box-mobile {
  display: none;
}

.search-box-mobile button.header-round {
  background: transparent;
  border: 1px solid var(--light-black);
  padding: 4px 8px;
  border-radius: 5px;
}

.search-box-mobile button i {
  color: var(--light-black);
}

.search-box-mobile .dropdown-menu.show {
  transform: unset !important;
  top: 46px !important;
  left: unset !important;
  right: 0 !important;
  --bs-dropdown-border-color: unset;
  border: 1px solid var(--light-black);
  padding: 5px 7px;
  --bs-dropdown-min-width: 11rem;
  border-radius: 16px;
}

.search-box-mobile .search-btn,
.search-box-mobile .form-control.search-bar {
  border: 0;
}

.search-box-mobile .search-btn {
  padding: 1px 2px;
  background: transparent;
}

.search-box-mobile .form-control.search-bar {
  padding: 1px 3px 1px 1px;
}

.header-all-menu {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: var(--primary-color);
}

.header-all-menu li a {
  color: white;
}

/* Main Menu Header */
.header-main {
  background-color: var(--light-theme);
  /* padding-top: 7px;
  padding-bottom: 7px; */
}

.header-main nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.bartoggle,
#menubrop {
  display: none;
}

.main-header-logo {
  display: none;
}

.NavMenu {
  flex: 10;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.NavMenu li {
  display: inline-block;
}

.NavMenu li input {
  display: none;
}

.NavMenu li a {
  display: block;
  font-size: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  text-decoration: none;
  color: var(--light-theme-txt-one);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.NavMenu li li a.active,
.NavMenu li li a:hover {
  font-weight: 600;
  border-left: 2px solid var(--primary-color);
  background-color: #0346903d;
  color: #000000;
}

.NavMenu li a i {
  /* transform: rotate(90deg); */
  /* width: 7px; */
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.NavMenu li:hover a i {
  transform: rotate(180deg);
}

/* .NavMenu li a img {
  transform: rotate(90deg);
  width: 7px;
  transition: all 0.4s ease-in-out;
} */
/* .NavMenu li:hover a img {
  transform: rotate(270deg);
} */
/* .NavMenu li ul.sub-menu li a img {
  transform: rotate(0deg);
  width: 7px;
  transition: all 0.4s ease-in-out;
  filter: brightness(0) saturate(100%) invert(12%) sepia(52%) saturate(7465%)
    hue-rotate(201deg) brightness(93%) contrast(101%);
} */

/* .orange-theme .NavMenu li ul.sub-menu li a img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(58%) saturate(2967%)
    hue-rotate(341deg) brightness(103%) contrast(93%);
} */
.NavMenu li ul.sub-menu li a i {
  transform: rotate(270deg);
  transition: all 0.4s ease-in-out;
}

.NavMenu li ul.sub-menu li:hover a i {
  transform: rotate(90deg);
}

.NavMenu li a label {
  cursor: pointer;
  appearance: none;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  position: relative;
  width: 100%;
}

.NavMenu li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  min-width: 200px;
  border-bottom: 2px solid var(--primary-color);
  top: 35px;
  box-shadow: 0 3px 5px rgb(0 0 0/20%);
  transition: all 0.4s ease-in-out;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}

.NavMenu li ul li {
  position: relative;
}

.NavMenu li ul li a {
  color: var(--primary-color);
  padding: 8px 10px;
  display: block;
  border-left: 2px solid transparent;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.NavMenu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
}

.toggle-btn {
  cursor: pointer;
  overflow: hidden;
  width: 42px;
  height: 42px;
  background: var(--light-theme);
  border-radius: 10px;
  /* box-shadow: 0 3px 7px 0 #000; */
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.line-toggle {
  position: absolute;
  display: block;
  width: 26px;
  height: 3px;
  background: var(--light-theme-txt-one);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
}

.line-toggle:first-child {
  transform: translateY(-8px) translateX(0px);
  width: 18px;
  height: 1px;
  transition-delay: 0s;
}

.toggle-btn .line-toggle:nth-child(2) {
  transition-delay: 0.12s;
  height: 1px;
}

.line-toggle:last-child {
  transform: translateY(8px) translateX(0px);
  width: 18px;
  height: 1px;
  transition-delay: 0s;
}

.toggle-btn.activate .line-toggle:first-child {
  background: var(--light-theme-txt-one);
  transform: translateY(0) translateX(0) rotate(45deg);
  width: 18px;
  height: 1px;
  transition-delay: 0.1s;
}

.toggle-btn.activate .line-toggle:nth-child(2) {
  transform: translateX(110px);
  transition-delay: 0s;
}

.toggle-btn.activate .line-toggle:last-child {
  background: var(--light-theme-txt-one);
  transform: translateY(0) translateX(0) rotate(314deg);
  width: 26px;
  height: 1px;
  transition-delay: 0.1s;
}

/* ---------------------------------------- Header End ---------------------------------------- */

/* ---------------------------------------- Banner Start ---------------------------------------- */
.banner-content-img .banner-img {
  position: relative;
}

.banner-content-img .banner-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: #0a1b37; */
  /* background: linear-gradient(
    90deg,
    rgba(10, 27, 55, 0.7) 0%,
    rgba(10, 27, 55, 0.6) 40%,
    rgba(10, 27, 55, 0) 100%
  ); */
}

.banner-content-img .banner-img img {
  width: 100%;
  object-fit: cover;
}

.banner-content-img .banner-img .banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  left: unset;
  z-index: 2;
  max-width: 485px;
}

.banner-content-img .banner-content h2 {
  font-size: 36px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 20px;
}

.banner-content-img .banner-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #ffffff;
  font-size: 20px !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  background-color: #034690;
  border-radius: 100%;
  transition: 0.4s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(0.9);
  cursor: pointer;
}

/* ---------------------------------------- Banner End ---------------------------------------- */

/* ---------------------------------------- Announcement Start ---------------------------------------- */
.announcement-bar-section {
  margin-top: -20px;
  z-index: 3;
  position: relative;
}

.announcement-content {
  border: 1px solid var(--primary-color);
  padding: 7px 20px;
  background-color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.announcement-title h3 {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
  color: var(--primary-color);
}

.announcement-description {
  width: 100%;
  font-size: 15px;
  line-height: 16px;
  color: var(--primary-color);
}

.orange-theme .announcement-description {
  color: var(--primary-color);
}

.announcement-description-line {
  position: relative;
  display: block;
  /* width: 100%; */
  margin-left: 50px;
}

.announcement-description-line:after {
  position: absolute;
  content: "";
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
}

.announcement-description-line a {
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  color: var(--primary-color);
}

.announcement-description-line a:hover {
  color: rgba(3, 71, 144, 0.65);
}

.orange-theme .announcement-description-line a {
  color: var(--primary-color);
}

.orange-theme .announcement-description-line a:hover {
  opacity: 0.65;
}

.news-badage {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 10px;
  animation: newsBlink 0.6s infinite;
  display: inline-block;
}

@keyframes newsBlink {
  0% {
    background-color: var(--white);
    color: var(--primary-color);
  }

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

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

/* ---------------------------------------- Announcement End ---------------------------------------- */

/* ---------------------------------------- Banner Below Our Story Section Start ---------------------------------------- */
/* .banner-below-section {
  margin-top: -20px;
} */
/* .our-story-img {
  height: 538px;
} */
.content {
  position: relative;
  z-index: 5;
}

.content-heading {
  background: linear-gradient(160deg, #4a78a8 10%, #c8d4b8 70%, #fff5cc 100%);
  padding: 85px 30px;
  border-radius: 5px;
  max-width: 299px;
  position: relative;
  z-index: 5;
}

.content-heading p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.content-heading h4 {
  line-height: 1.3;
  max-width: 201px;
}

.img-one,
.img-two,
.img-three {
  position: absolute;
}

.img-one {
  top: 24px;
  left: 299px;
}

.img-one img {
  border-top-right-radius: 10px;
  width: 292px;
}

.img-two {
  top: 170px;
  left: 270px;
  z-index: 2;
}

.img-two img {
  border-radius: 0px 10px 10px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 366px;
}

.img-three {
  top: 100%;
  left: 24px;
}

.img-three img {
  border-radius: 0px 0px 10px 10px;
  width: 247px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-40px {
  margin-bottom: 40px;
}

/* ---------------------------------------- Banner Below Our Story Section End ---------------------------------------- */

/* ---------------------------------------- Departments and Cells Section Start ---------------------------------------- */
.depart-heading {
  padding-bottom: 60px;
}

.depart-content ul li {
  position: relative;
  width: 42%;
  transition: all 0.4s ease-in-out;
  padding-inline: 10px;
}

.depart-content ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #2269b7;
  transition: width 0.4s ease-in-out;
}

.orange-theme .depart-content ul li::after {
  background-color: var(--light-white);
}

.depart-content ul li:hover::after {
  width: 10%;
}

.depart-content ul li.margin-bottom {
  margin-bottom: 20px;
}

/* .depart-content ul li:nth-last-child(2) {
  margin-bottom: 0;
} */

.depart-content ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: normal;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  padding-bottom: 20px;
}

.depart-content ul li a:hover {
  opacity: 0.65;
}

.depart-image {
  overflow: hidden;
  box-shadow: 3px 4px 50px 0 rgba(0, 0, 0, 0.3);
}

.depart-image img {
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.depart-image:hover img {
  transform: scale(1.15);
}

.depart-cell-wrapper {
  position: relative;
  background: var(--primary-color);
}

/* ---------------------------------------- Departments and Cells Section End ---------------------------------------- */

/* ----------------------------------------Programmes Offered Section Start ---------------------------------------- */
.programmes-offered-section {
  padding-block: 50px;
}

.programmes-offered-section .depart-content ul li.margin-bottom {
  width: 45%;
}

.program-img a {
  position: relative;
  overflow: hidden;
  display: block;
}

.program-img a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out;
  opacity: 1;
}

.program-img a:hover::after {
  opacity: 0;
}

.program-img a img {
  width: 100%;
  transform: scale(1.1);
  overflow: hidden;
  min-height: 298px;
  transition: all 0.4s ease-in-out;
}

.program-img a:hover img {
  transform: scale(1);
}

.program-img a h4 {
  font-size: 30px;
  line-height: 1.7;
  color: var(--white);
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.program-img a:hover h4 {
  opacity: 0;
  top: 60%;
}

/* ---------------------------------------- Programmes Offered Section End ---------------------------------------- */

/* ---------------------------------------- Academics Section Start ---------------------------------------- */
.academics-wrapper {
  overflow-x: hidden;
}

.academics-content {
  height: 100%;
  padding-right: 35px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.academics-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: calc(100% + 100%);
  height: 100%;
  background: #f3f3f3;
  /* z-index: -1; */
  transition: 0.4s;
}

.academics-content .heading,
.academics-content p {
  z-index: 1;
}

.cards-info a {
  padding: 45px 30px;
  display: block;
}

.academics-cards .card {
  --bs-card-border-width: 2px;
  --bs-card-border-color: var(--border-color);
  --bs-card-border-radius: 0;
  transition: all 0.4s ease-in-out;
}

.academics-img img,
.academics-img span svg {
  width: 33px;
  margin-bottom: 20px;
  display: block;
  /* transition: all 0.4s ease-in-out; */
}

.orange-theme .academics-img span svg {
  filter: brightness(0) saturate(100%) invert(72%) sepia(27%) saturate(4982%) hue-rotate(340deg) brightness(100%) contrast(93%);
}

.cards-info:hover .academics-img img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.cards-info:hover .academics-img span {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(125deg) brightness(105%) contrast(109%);
}

.cards-info .academics-img .font-size-18 {
  font-weight: 500;
  color: #034690;
}

.cards-info:hover .academics-img .font-size-18 {
  color: var(--white);
}

.cards-info.see-all-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.academics-cards .cards-info.see-all-box:hover a {
  --bs-card-border-color: var(--primary-color);
  background-color: var(--white);
}

.academics-cards .card {
  transition: all 0.4s ease-in-out;
}

.academics-cards .card:hover {
  --bs-card-border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.cards-info.see-all-box a .academics-img p {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.academics-cards .cards-info.see-all-box:hover a .academics-img p {
  color: var(--primary-color);
}

/* ---------------------------------------- Academics Section End ---------------------------------------- */

/* ---------------------------------------- E-Services / Online Services Start ---------------------------------------- */
.e-online-services .services-img img {
  width: 22px;
}

.services-img {
  position: relative;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 30px;
}

.e-online-services .services-img span svg {
  width: 24px;
}

.e-online-services h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--light-theme-txt);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------------------------------------- E-Services / Online Services End ---------------------------------------- */

/* ---------------------------------------- Media & Gallery Services Start ---------------------------------------- */
.media-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-gallery a {
  display: block;
}

.section-1,
.section-3 {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.part-one,
.part-two {
  display: flex;
  align-items: center;
  gap: 20px;
}

.part-one img,
.part-two img,
.part-middle img {
  width: 100%;
  /* height: 100%; */
}

.bg-color {
  position: relative;
}

.bg-color.orange::after,
.bg-color.light-blue::after,
.bg-color.green::after,
.bg-color.blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.bg-color.orange::after {
  background-color: rgba(238, 186, 90, 0.9);
}

.bg-color.blue::after {
  background-color: rgba(69, 132, 174, 0.9);
}

.bg-color.green::after {
  background-color: rgba(157, 205, 93, 0.9);
}

.bg-color.light-blue::after {
  background-color: rgba(85, 180, 215, 0.9);
}

.bg-color.orange:hover::after {
  background-color: rgba(238, 186, 90, 0.6);
}

.bg-color.blue:hover::after {
  background-color: rgba(69, 132, 174, 0.6);
}

.bg-color.green:hover::after {
  background-color: rgba(157, 205, 93, 0.6);
}

.bg-color.light-blue:hover::after {
  background-color: rgba(85, 180, 215, 0.6);
}

.view-more-img {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  white-space: nowrap;
  padding-left: 50px;
  padding-right: 50px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.bg-color:hover .view-more-img {
  transform: translate(-50%, -50%);
  left: 50%;
}

.view-more-img p {
  font-size: 22px;
  color: var(--white);
  line-height: 1.25;
  font-weight: 600;
  text-shadow: 3px 4px 10px rgba(0, 0, 0, 0.5);
}

.learn-more-btn {
  padding: 10px 20px;
  color: var(--black);
  font-size: 15px;
  background-color: var(--white);
  text-align: center;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.3);
  max-width: fit-content;
  transition: all 0.4s ease-in-out;
}

.learn-more-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 8px;
}

/* ---------------------------------------- Media & Gallery Services End ---------------------------------------- */

/* ---------------------------------------- International Outreach Services Start ---------------------------------------- */
.international-outreach-wrapper {
  background-color: #f3f3f3;
}

.international-img img {
  width: 100%;
}

.international-content {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 25px;
}

.international-img {
  margin-left: -350px;
}

.program-offer-heading.margin-bottom {
  margin-bottom: 40px;
}

.program-offer-boxes .box:last-child a {
  margin-bottom: 0;
}

.program-offer-boxes .box a {
  background-color: #ffffff;
  padding: 35px 30px;
  border: 1px solid var(--light-black);
  gap: 28px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
  display: block;
}

/* .program-offer-boxes .box a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--light-theme-one);
  width: 0;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.program-offer-boxes .box a:hover::after {
  width: 100%;
} */
.program-offer-boxes .box a:hover {
  opacity: 0.8;
}

.program-offer-boxes .box a span svg {
  width: 35px;
  position: relative;
  top: -10px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

/* .program-offer-boxes .box a:hover img, */
/* .program-offer-boxes .box a:hover svg.left-svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(125deg) brightness(105%) contrast(109%);
}
.program-offer-boxes .box a:hover svg.right-svg{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(125deg) brightness(105%) contrast(109%);
} */
.program-offer-boxes .box a i {
  position: relative;
  z-index: 1;
  color: var(--black);
  font-size: 22px;
  transition: all 0.4s ease-in-out;
}

.program-offer-boxes .box a:hover i {
  color: var(--white);
}

.name-info h5 {
  /* font-size: 18px; */
  /* line-height: 1.45; */
  color: #000000;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  transition: all 0.4s ease-in-out;
}

.program-offer-boxes .box a .name-info p {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #696969;
}

.program-offer-boxes .box a:hover .name-info h5 {
  color: #000000;
}

.program-offer-boxes .box a:hover .name-info p {
  color: #696969;
}

.box img.box-arrow {
  filter: brightness(0) saturate(100%) invert(0%) sepia(85%) saturate(7376%) hue-rotate(271deg) brightness(126%) contrast(101%);
  width: 10px !important;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.depart-content ul li a img {
  width: 8px;
}

/* ---------------------------------------- International Outreach Services End ---------------------------------------- */
/* ---------------------------------------- Footer Services Start ---------------------------------------- */
.footer-bg {
  background-color: var(--light-theme);
  position: relative;
}

.footer-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/vector-footer.png");
  background-position: center;
  background-size: 100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: left;
}

.footer-section {
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  padding-top: 100px;
  column-gap: 30px;
  padding-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-part-one .logo-content img {
  width: 221px;
}

h5.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--light-theme-txt-one);
}

ul.personal-info li {
  display: flex;
  align-items: self-start;
  margin-bottom: 20px;
  gap: 16px;
  color: var(--light-theme-txt-one);
}

ul.personal-info li:last-child {
  margin-bottom: 0;
}

ul.personal-info li svg {
  width: 22px;
}

.personal-info li a {
  color: var(--light-theme-txt-one);
  transition: all 0.4s ease-in-out;
}

.personal-info li:hover a {
  opacity: 0.65;
}

.width-address {
  max-width: 192px;
  pointer-events: none;
}

li:hover a.width-address {
  opacity: 1;
}

.footer-part-two .personal-info li {
  /* white-space: nowrap; */
}

.footer-policy-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 27px;
  position: relative;
  z-index: 2;
}

.footer-policy-social::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #2269b7;
  width: calc(100% - 24px);
  height: 1px;
  transform: translateX(-50%);
}

.orange-theme .footer-policy-social {
  border-bottom: 1px solid var(--light-white);
}

.policy-name li a {
  position: relative;
  color: var(--light-theme-txt-one);
  transition: all 0.4s ease-in-out;
}

.policy-name li:hover a {
  opacity: 0.65;
}

.policy-name li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  transition: all 0.45s ease-in-out;
}

.policy-name li a:hover::after {
  width: 00%;
}

.policy-name {
  gap: 20px;
}

.social-icons {
  gap: 30px;
}

.social-icons li a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--light-theme-txt-one);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.social-icons li:hover a {
  background-color: var(--light-theme-txt-one);
}

.social-icons li img {
  transition: all 0.1s ease-in-out;
}

.social-icons li:hover img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(63%) saturate(2332%) hue-rotate(196deg) brightness(93%) contrast(98%);
}

.orange-theme .social-icons li:hover img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(58%) saturate(2967%) hue-rotate(341deg) brightness(103%) contrast(93%);
}

.visitor-btn {
  border: 1px solid var(--light-theme-txt-one);
  padding: 8px 14px;
  background-color: transparent;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
  color: var(--light-theme-txt-one);
  display: inline-block;
}

.visitor-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 8px;
}

.copy-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

.copy-right p {
  color: var(--light-theme-txt-one);
}

.copy-right p a {
  transition: all 0.4s ease-in-out;
  color: var(--light-theme-txt-one);
}

.copy-right p a:hover {
  opacity: 0.65;
}

/* ---------------------------------------- Footer Services End ---------------------------------------- */
@media screen and (max-width: 1199px) {
  /* .NavMenu {
    width: 350px;
    left: 0;
  } */
}

/* =========================================================================================================================================================
                                                            About - Vision & Mission Page CSS Start
========================================================================================================================================================= */
/* ---------------------------------------- About Vision Mission Start ---------------------------------------- */
.about-hero-section {
  padding-top: 62px;
  padding-bottom: 62px;
  background: #0c65ae;
  background: linear-gradient(0deg,
      rgba(3, 70, 144, 1) 0%,
      rgba(12, 101, 174, 1) 100%);
  position: relative;
}

/* .about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/about-vector.png");
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
} */
.about-heading h1 {
  font-size: 50px;
  color: var(--white);
  line-height: 55px;
  position: relative;
  z-index: 2;
}

/* ---------------------------------------- About Vision Mission End ---------------------------------------- */

/* ---------------------------------------- Vision Mission Section Start ---------------------------------------- */
.vision-mission-wrapper {
  position: relative;
}

.vision-mission-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 215px;
  background-image: url(../images/about-vision-mission-vector.png);
  background-position: center;
  background-size: 583px;
  background-repeat: no-repeat;
  width: 583px;
  height: 100%;
  z-index: -1;
}

.vision-mission-img img {
  width: 95%;
}

.vision-mission-info .points li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.vision-mission-info .points li:last-child {
  margin-bottom: 0;
}

.vision-mission-info .points li img {
  width: 20px;
  margin-top: 5px;
}

/* ---------------------------------------- Vision Mission Section End ---------------------------------------- */
/* =========================================================================================================================================================
                                                About - Vision & Mission Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                About Organizational Page CSS Start
========================================================================================================================================================= */
/* ---------------------------------------- Vision Organizational Section Start ---------------------------------------- */
.vision-organizational-img img {
  width: 100%;
}

/* ---------------------------------------- Vision Organizational Section End ---------------------------------------- */

/* ---------------------------------------- Org Chart Cards Section Start ---------------------------------------- */
.org-chart-cards-wrapper {
  background-color: #fff1cc;
  padding-top: 50px;
  padding-bottom: 50px;
}

.chart-boxes-div {
  background-color: #ffc068;
  padding: 48px 52px;
  border-radius: 20px;
  position: relative;
  height: 100%;
}

.chart-boxes-div::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--white);
  border-radius: 11px;
}

.chart-boxes-div h4 {
  font-size: 20px;
  color: var(--black);
  line-height: 1.45;
}

/* ---------------------------------------- Org Chart Cards Section End ---------------------------------------- */
/* ---------------------------------------- Vision Organizational Accordion Section Start ---------------------------------------- */
.vision-org-accordion .accordion-button {
  color: var(--primary-color);
  align-items: flex-start;
  column-gap: 10px;
}

.vision-org-accordion .accordion {
  --bs-accordion-border-width: 0;
}

.vision-org-accordion .accordion-body {
  padding-top: 20px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.vision-org-accordion .accordion-button {
  padding-top: 00px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 20px;
  /* font-size: 18px; */
  color: var(--black);
  border-bottom: 1px solid var(--light-black);
  font-weight: 500;
  box-shadow: none;
}

.vision-org-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 1px solid var(--light-black);
}

.vision-org-accordion .accordion-item h2 button {
  transition: all 0.4s ease-in-out;
}

.vision-org-accordion .accordion-item:hover h2 button {
  color: var(--primary-color);
}

.vision-org-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.4s ease-in-out;
}

.vision-org-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.vision-org-accordion .accordion-button::after {
  transition: all 0.4s ease-in-out;
}

.vision-org-accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.vision-org-accordion .accordion-item {
  margin-bottom: 30px;
}

.vision-org-accordion .accordion-item:last-child {
  margin-bottom: 00px;
}

/* ---------------------------------------- Vision Organizational Accordion Section End ---------------------------------------- */

/* ---------------------------------------- Information Content Two Boxes Section Start ---------------------------------------- */
.information-content-box {
  background-color: #f3f3f3;
  padding: 40px 30px;
  height: 100%;
}

/* ---------------------------------------- Information Content Two Boxes Section End ---------------------------------------- */
/* =========================================================================================================================================================
                                                About Organizational Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                About Directors Page CSS Start
========================================================================================================================================================= */

/* ---------------------------------------- Director Information Section Start ---------------------------------------- */
.about-directors-accordion-wrapper .collapse-inner-heading {
  font-size: 17px;
  margin-bottom: 10px;
}

.director-info-section {
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 20px;
}

.director-info-img {
  position: relative;
  border-radius: 50%;
  width: 326px;
  height: 326px;
  border: 20px solid var(--light-yellow);
  margin-bottom: 20px;
}

.director-info-img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 50%;
}

.director-info-content ul li {
  margin-bottom: 10px;
}

.director-info-content ul li span {
  color: var(--black);
  font-weight: 600;
}

.director-info-content ul li:last-child {
  margin-bottom: 0px;
}

/* ---------------------------------------- Director Information Section End ---------------------------------------- */

/* ---------------------------------------- About Directors Accordion Section End ---------------------------------------- */
.about-directors-accordion .accordion-item .accordion-body ul li {
  margin-bottom: 10px;
}

.about-directors-accordion .accordion-item .accordion-body ul li:last-child {
  margin-bottom: 0;
}

.about-directors-accordion .accordion-item .accordion-body ul li span {
  color: var(--black);
  font-weight: 600;
}

/* ---------------------------------------- About Directors Accordion Section End ---------------------------------------- */

/* =========================================================================================================================================================
                                                About Directors Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                Administration Director Office Page CSS Start
========================================================================================================================================================= */
/* ---------------------------------------- Administration Director Office Section Start ---------------------------------------- */
.adm-director-office {
  border: 1px solid var(--border-color);
  padding: 30px;
  display: flex;
  /* align-items: flex-start; */
  gap: 30px;
  margin-bottom: 80px;
}

.adm-director-office:last-child {
  margin-bottom: 0px;
}

.adm-director-info {
  background-color: var(--light-yellow);
  padding: 30px 44px;
  border-radius: 10px;
}

.adm-director-info-img {
  width: 346px;
  height: 346px;
  border: 10px solid var(--white);
  /* border-radius: 50%; */
  margin: auto;
}

.adm-director-info-img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  /* border-radius: 50%; */
}

.director-name {
  margin-top: 30px;
  text-align: center;
}

.director-name h4,
.adm-director-info-content .content h4 {
  font-size: 20px;
  color: var(--black);
  line-height: 1.3;
}

.director-name h4 {
  margin-bottom: 8px;
}

.adm-director-info-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.adm-director-info-content .content h2 {
  margin-bottom: 15px;
}

.adm-director-info-content a {
  margin-left: auto;
}

/* ---------------------------------------- Administration Director Office Section End ---------------------------------------- */

/* ---------------------------------------- Administrative Officers Section Start ---------------------------------------- */
.administrative-officers-wrapper-two {
  padding: 50px 0;
}

.administrative-officers-wrapper-two .officer-card {
  border-radius: 20px;
  /* background-color: var(--light-theme); */
}

.administrative-officers-wrapper-two .officer-card .card-img-top img {
  border-radius: 20px 20px 0 0;
  min-height: 260px;
  aspect-ratio: 16 / 3;
  object-fit: cover;
  object-position: center;

}

.administrative-officers-wrapper-two .officer-card-heading-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.administrative-officers-wrapper-two .officer-card-heading {
  font-family: var(--poppins-font);
  font-weight: 600;
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 5px;
  color: #044a94;
}

.officer-card-sub-heading {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--black);
}

.administrative-officers-wrapper-two .card-body {
  padding: 12px;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}

.left-officer-card-section {
  width: calc(100% - 50px);
}

.right-officer-card-section .view-more-btn.accordion-button.collapsed i {
  background-color: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  font-size: 14px;

}

.right-officer-card-section .view-more-btn i {
  transform: rotate(180deg);
  background-color: var(--primary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  font-size: 14px;
}

.officer-card-heading-section .accordion-body {
  padding-top: 15px;
}





.administrative-officers-img img {
  width: 100%;
}

.administrative-chart-section {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
}

.administrative-chart-section .administrative-officers-img {
  width: 50%;
}

.administrative-chart-section .administrative-officers-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.administrative-chart-section .name-box-chart {
  width: 50%;
}

.administrative-chart-section .administrative-officer-chart {
  padding-left: 38px;
}

.administrative-chart-section .administrative-officer-chart .chart-boxes {
  padding-left: 50px;
  position: relative;
}

.administrative-chart-section .administrative-officer-chart .chart-boxes::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 0px;
  /* transform: translateY(-50%); */
  background-color: var(--light-black);
  width: 2px;
  height: calc(100% - 68px);
}

.administrative-chart-section .administrative-officer-chart .chart-boxes h2 {
  margin-bottom: 30px;
  position: relative;
}

.administrative-chart-section .administrative-officer-chart .chart-boxes h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  background-color: var(--light-black);
  width: 35px;
  height: 1px;
}

.administrative-chart-section .administrative-officer-chart .chart-boxes .chart-box-content {
  background-color: var(--white);
  padding: 30px;
  max-width: fit-content;
  margin-bottom: 30px;
  position: relative;
  max-width: 510px;
  /* font-size: 18px; */
}

.administrative-chart-section .administrative-officer-chart .chart-boxes .chart-box-content p {
  font-weight: normal;
}

.administrative-chart-section .administrative-officer-chart .chart-boxes .chart-box-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  background-color: var(--light-black);
  width: 50px;
  height: 1px;
}

.administrative-chart-section .administrative-officer-chart .chart-boxes .chart-box-content:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------- Administrative Officers Section End ---------------------------------------- */

/* =========================================================================================================================================================
                                                Administration Director Office Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                          Contact Us Page CSS Start
========================================================================================================================================================= */
.contact-us-section .message-box {
  border: 0px solid var(--white);
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  padding: 60px 50px;
}

.contact-us-section .message-box h3 {
  font-size: 26px;
  line-height: 1.4;
}

/* Input fields */
.form-send-message {
  margin-top: 30px;
}

.form-contact input,
.form-contact textarea {
  border: 1px solid var(--border-color);
  padding: 14px 20px;
  transition: all 0.4s ease-in-out;
  width: 100%;
}

.form-contact input:hover,
.form-contact textarea:hover {
  border: 1px solid var(--light-black);
}

.form-contact input:focus,
.form-contact textarea:focus {
  outline: none;
}

.form-contact input::placeholder {
  color: var(--light-black);
  opacity: 0.5;
}

.btn-wrapper.message-send-btn {
  max-width: unset;
  display: block;
  width: 100%;
}

/* ---------------------------------------- Let’s Contact Us Section Start ---------------------------------------- */
.contact-us-section .contact-Information {
  margin-top: 30px;
}

.contact-us-section .contact-Information .company-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-us-section .contact-Information .company-info a {
  margin-bottom: 6px;
  display: block;
  cursor: pointer;
  max-width: fit-content;
  transition: all 0.4s ease-in-out;
}

.contact-us-section .contact-Information .company-info a:hover {
  color: var(--primary-color);
}

.contact-us-section .contact-Information .company-info a:last-child {
  margin-bottom: 0;
}

.contact-Information .row .col-lg-6 {
  margin-bottom: 30px;
}

.vision-org-accordion.contact-accordion .accordion-item .accordion-body {
  margin-top: 50px;
  padding-top: 0;
}

.contact-accordion .accordion-item .accordion-body .row .col-lg-6,
.contact-accordion .accordion-item .accordion-body .row .col-lg-12 {
  margin-bottom: 50px;
}

.vision-org-accordion.contact-accordion .accordion-body {
  border-bottom: 1px solid var(--light-black);
}

.company-contact-info h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.company-contact-info table tr {
  margin-bottom: 6px;
  vertical-align: baseline;
}

.company-contact-info table tr td {
  padding-top: 1px;
  padding-bottom: 1px;
}

.company-contact-info table tr td span {
  color: var(--black);
  font-weight: 500;
}

.contact-social-info {
  margin-top: 30px;
}

/* .contact-social-info .social-icons li a img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(20%)
    hue-rotate(229deg) brightness(94%) contrast(102%);
} */
.contact-social-info .social-icons li a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.contact-social-info .social-icons li a i {
  color: var(--black);
  transition: all 0.4s ease-in-out;
}

.contact-social-info .social-icons li:hover a i {
  color: var(--white);
}

.social-icons li a i {
  color: var(--light-theme-txt-one);
  s;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}

.company-info.contact-social-info .social-icons li {
  margin-top: 30px;
}

.company-info.contact-social-info .social-icons li a {
  max-width: unset;
  display: flex;
}

.company-info.contact-social-info .social-icons li:hover a {
  background-color: var(--black);
}

.social-icons li:hover a i {
  color: var(--primary-color);
}

/* .company-info.contact-social-info .social-icons li:hover a img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(2%) saturate(649%)
    hue-rotate(199deg) brightness(118%) contrast(100%);
} */
/* ---------------------------------------- Let’s Contact Us Section End ---------------------------------------- */



.contact-us-card {
  /* box-shadow: 0px 3px 15px 0px #00000026; */
  box-shadow: 0px 3px 15px 0px #0000000f;
  background-color: var(--white);
}

.contact-us-card.lets-contact-us {
  padding: 30px 40px;
  margin-bottom: 25px;
}

.company-info.number-hindi,
.company-info.number-english {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;

}

.company-info.number-english .number-section,
.company-info.number-hindi .number-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(100% - 120px);
  width: 100%;
}

.company-info.number-hindi .number-section {
  max-width: calc(100% - 90px);
}

.company-info.email .email-section {
  max-width: calc(100% - 100px);
}

.company-info.email-hindi,
.company-info.email-english {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 15px;
}

.company-info.email-hindi {
  gap: 23px;
}

.company-info.address-english,
.company-info.address-hindi {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
}

.company-info.address-hindi {
  gap: 40px;
}

.email-address-heading {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 25px;
  line-height: 26px;
  margin-bottom: 10px;
  color: var(--black);
}

.email-address-sub-heading {
  font-family: var(--poppins-font);
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 26px;
}

.lets-contact-us.email-card {
  padding: 20px;
  margin-bottom: 0;
}

.email-inner-section {
  position: relative;
  margin-bottom: 40px;
}

.email-inner-section::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--light-black);
  bottom: -20px;
  left: 0;
}

.person-name {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--black);
}

.person-mail {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--light-black);
  word-break: break-all;
  transition: 0.4s;
}

.person-mail:hover,
.contact-us-section .contact-Information .company-info a:hover {
  color: var(--light-black);
  opacity: 0.8;
}

.person-mail i {
  margin-right: 8px;
  display: inline-block;
}

.email-list {
  color: var(--light-black);
  transition: 0.4s;
}

.email-list:hover {
  color: var(--light-black);
  opacity: 0.8;
}

.company-info.contact-us-card,
.company-contact-info.contact-us-card {
  padding: 30px 40px;
  height: 100%;
  margin-top: 0;
}

.mb-25px {
  margin-bottom: 25px;
  margin-top: 0;
}

.height-unset {
  height: unset;
}

/* =========================================================================================================================================================
                                                          Contact Us Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                          Photo Gallery Page CSS Start
========================================================================================================================================================= */
.photo-gallery {
  background-color: var(--light-white);
  padding: 20px;
  height: 100%;
}

.photo-gallery-img {
  position: relative;
  width: 100%;
  /* height: 100%; */
}

.photo-gallery-img {
  display: block;
}

.photo-gallery-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.photo-gallery .photo-gallery-img:hover::after {
  background-color: var(--black);
  opacity: 0.5;
}

.photo-gallery .photo-gallery-img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  /* height: 100%; */
}

.photo-gallery .plus-icon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0,0,0,0.4); */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.photo-gallery .photo-gallery-img:hover .plus-icon-img {
  opacity: 1;
}

.photo-gallery .plus-icon-img i {
  color: white;
  font-size: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.photo-gallery .plus-icon-img i:hover {
  transform: scale(1.1);
}

.photo-gallery h4 {
  /* font-size: 18px; */
  font-weight: 500;
  margin-bottom: 2px;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-width: 4px;
  border-color: var(--fancybox-accent-color, var(--light-white));
}

.fancybox__progress {
  background: var(--fancybox-accent-color, var(--light-white));
}

/* =========================================================================================================================================================
                                                          Photo Gallery Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                          Video Gallery Page CSS Start
========================================================================================================================================================= */
.video-gallery-section .video-box {
  border: 1px solid var(--light-white);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}

.video-gallery-section {
  margin-bottom: 30px;
  width: 100%;
}

.video-gallery-section:last-child {
  margin-bottom: 0px;
}

.video-gallery-section .video-box a .video-thumb {
  position: relative;
}

.video-box a .video-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--black);
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.video-gallery-section .video-box a:hover .video-thumb:hover::after {
  opacity: 0.25;
}

.video-gallery-section .video-box a .video-thumb {
  width: 152px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-gallery-section .video-box a {
  display: block;
}

.video-gallery-section .video-box a.btn-wrapper {
  margin-left: auto;
}

.video-gallery-section a .video-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* height: 100%; */
}

.video-gallery-section a .video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 28px;
  background: linear-gradient(45deg,
      rgba(244, 86, 19, 1) 15%,
      rgba(255, 220, 172, 1) 100%);
  padding: 8px 18px 7px 20px;
  z-index: 2;
  border-radius: 6px;
}

.video-gallery-section .video-box .video-caption p {
  /* font-size: 18px; */
  line-height: 1.4;
  font-weight: 500;
}

.video-gallery-section .btn-wrapper {
  white-space: nowrap;
}

/* =========================================================================================================================================================
                                                          Video Gallery Page CSS End
========================================================================================================================================================= */
/* =========================================================================================================================================================
                                                          Press Release Page CSS Start
========================================================================================================================================================= */
/* Nav Tab Button */
.press-release-nav-tabs {
  background-color: #f3f3f3;
  margin-top: 50px;
}

.press-tab-btn .nav-link {
  display: block;
  padding: 27px 50px;
  font-size: 18px;
  font-weight: 600;
  color: #034690;
  transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
}

.press-tab-btn li:hover .nav-link {
  background-color: var(--white);
  color: var(--primary-color);
}

.nav-tabs.press-tab-btn .nav-item.show .nav-link,
.nav-tabs.press-tab-btn .nav-link.active {
  color: var(--black);
  background-color: var(--white);
  border-color: transparent;
  border: 1px solid transparent;
}

.nav-tabs.press-tab-btn .nav-link.active {
  position: relative;
}

.nav-tabs.press-tab-btn .nav-link.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #f45613;
  transition: all 0.4s ease-in-out;
}

.nav-tabs.press-tab-btn .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-tabs.press-tab-btn {
  --bs-nav-tabs-border-width: 0px;
  --bs-nav-tabs-border-color: transparent;
  --bs-nav-tabs-border-radius: 0;
}

/* Tab Content */
.press-tab-content-info {
  margin-top: 50px;
}

.tab-content-info {
  margin-bottom: 20px;
}

.tab-content-info:last-child {
  margin-bottom: 0px;
}

.tab-content-info .date-news-info {
  padding: 15px;
  border: 1px solid #f3f3f3;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease-in-out;
  background-color: var(--light-theme-three);
}

.tab-content-info .date-news-info .date {
  padding: 15px;
  text-align: center;
}

.tab-content-info:nth-child(3n + 1) .date {
  background-color: #f9e1e1;
}

.tab-content-info:nth-child(3n + 2) .date {
  background-color: #dceff8;
}

.tab-content-info:nth-child(3n + 3) .date {
  background-color: #f8ebda;
}

.tab-content-info .date-news-info .date h3 {
  font-size: 40px;
  color: var(--black);
}

.tab-content-info .date-news-info .date p {
  color: var(--black);
  white-space: nowrap;
}

.tab-content-info .latest-news-info h6 {
  font-weight: 500;
  color: var(--black);
}

.latest-news-info {
  width: calc(100% - 266px);
}

.press-releases-btn.btn-wrapper {
  position: relative;
  z-index: 1;
  color: #f45613;
  border: 1px solid #f45613;
  background: var(--white);
  white-space: nowrap;
  transition: color 0.4s ease-in-out, border 0.4s ease-in-out;
}

.press-releases-btn.btn-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg,
      rgba(244, 86, 19, 1) 0%,
      rgba(249, 156, 29, 1) 50%);
  border-radius: 23px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.press-releases-btn.btn-wrapper:hover::before {
  opacity: 1;
}

.press-releases-btn.btn-wrapper:hover {
  color: var(--white);
  border-color: var(--white);
}

/*  */
.press-release-file-section .press-tab-content-info {
  margin-top: 0;
}

.press-release-file-section .tab-content-info .date-news-info {
  border: 0;
  padding: 0;
  pointer-events: none;
}

.press-release-file-section .tab-content-info .date-news-info {
  align-items: self-start;
}

.pdf-show {
  margin-top: 50px;
}

/* =========================================================================================================================================================
                                                          Press Release Page CSS End
========================================================================================================================================================= */
/* =========================================================================================================================================================
                                                          Media Coverage Page CSS Start
========================================================================================================================================================= */
/* Left Side */
.media-coverage-gallery {
  padding: 15px;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}

.media-coverage-gallery:hover {
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.25);
}

.media-content {
  margin-top: 15px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.media-content .media-date {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.media-content p.media-date {
  font-size: 12px;
  color: var(--light-black);
  line-height: 1.8;
}

.media-content p.media-date svg {
  margin-top: 2px;
}

.media-content p.media-summary {
  color: var(--black);
}

.media-coverage-img {
  aspect-ratio: 16 / 12;
}

.media-coverage-img img {
  width: 100%;
  aspect-ratio: 16 / 12;
  /* height: 100%; */
}

.coverage-btn {
  text-align: center;
  margin-top: 15px;
}

.coverage-btn .read-more-btn {
  line-height: 1.8;
  font-size: 15px;
  color: #f45613;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

.coverage-btn .read-more-btn:hover {
  color: var(--primary-color);
}

/* Right Side */
.coverage-right-section h6 {
  color: var(--light-black);
}

.coverage-right-section ul li {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.coverage-right-section ul li:last-child {
  margin-bottom: 0;
}

.coverage-right-section ul li a {
  font-size: 17px;
  padding-bottom: 20px;
  color: var(--black);
  display: block;
  transition: all 0.4s ease-in-out;
}

.coverage-right-section ul li a:hover {
  /* padding-left: 6px; */
  opacity: 0.65;
}

.coverage-right-section .top-section {
  margin-bottom: 50px;
}

.coverage-right-section .bottom-section ul li a {
  display: flex;
  align-items: self-start;
  gap: 16px;
}

.coverage-right-section .bottom-section ul li a svg {
  margin-top: 2px;
  width: 20px;
}

/* =========================================================================================================================================================
                                                          Media Coverage Page CSS End
========================================================================================================================================================= */
/* =========================================================================================================================================================
                                                          Programmes Offered Page CSS Start
========================================================================================================================================================= */
.offer-course {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 50px;
}

.program-offer-course-section:nth-of-type(even) .row {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.program-offer-course-section {
  margin-bottom: 50px;
}

.program-offer-course-section .row {
  background-color: var(--light-theme-one);
}

.program-offer-course-section:last-child {
  margin-bottom: 0;
}

.program-offer-course-section:nth-of-type(even) .row .col-lg-8,
.program-offer-course-section:nth-of-type(odd) .row .col-lg-4 {
  padding-right: 0;
}

.program-offer-course-section:nth-of-type(even) .row .col-lg-4,
.program-offer-course-section:nth-of-type(odd) .row .col-lg-8 {
  padding-left: 0;
}

.offer-course-list li {
  display: flex;
  align-items: self-start;
  gap: 15px;
  margin-bottom: 15px;
}

.offer-course-list li:last-child {
  margin-bottom: 0;
}

.offer-course-list li img {
  width: 20px;
  margin-top: 2px;
}

.course-description {
  padding: 20px;
  background-color: var(--white);
  /* border: 1px solid var(--border-color); */
  margin-top: 20px;
}

.offer-course-img {
  height: 100%;
  width: 100%;
}

.offer-course-img img {
  /* aspect-ratio: 1 / 1; */
  width: 100%;
  height: 100%;
  max-width: 450px;
}

.offer-course-img.course-page-image img {
  height: 450px;
  object-fit: contain;
}

/* =========================================================================================================================================================
                                                          Programmes Offered Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                         Study Centres Page CSS Start
========================================================================================================================================================= */
.study-center-campus-wrapper {
  overflow: hidden;
}

.study-campus-img {
  width: 100%;
  /* height: 100%; */
  padding-left: 30px;
}

.study-campus-img img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 100%;
}

.academics-content.study-campus {
  padding-right: 38px;
}

.study-campus ul li {
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.study-campus ul li a {
  color: #034690;
}

.study-campus ul li:last-child {
  margin-bottom: 0;
}

.study-campus ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 500;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}

.study-campus ul li a img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(7474%) hue-rotate(334deg) brightness(102%) contrast(96%);
}

.study-campus ul li:hover {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.study-campus ul li:hover a {
  color: var(--white);
}

.study-campus ul li:hover a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2656%) hue-rotate(86deg) brightness(107%) contrast(107%);
}

/* =========================================================================================================================================================
                                                         Study Centres Page CSS End
========================================================================================================================================================= */
/* =========================================================================================================================================================
                                                         Study Centres / Campuses Page CSS Start
========================================================================================================================================================= */
.campus-intro .intro-content p.mb-20px:last-child,
.campus-establishment p.mb-20px:last-child {
  margin-bottom: 0 !important;
}

.campus-intro {
  text-align: center;
}

.campus-intro img {
  width: 100%;
}

.campus-establishment {
  margin-top: 30px;
}

.campus-establishment h5,
.academic-members-heading h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.academic-members-heading h6 {
  /* background-color: var(--light-theme-one); */
  padding: 10px 30px;
  max-width: 100%;
  margin: auto;
  position: relative;
  font-size: 16px;
  /* transform: translateY(10px); */
}

.academic-members {
  border: 1px solid var(--light-theme-one);
  padding: 50px 32px;
  margin-top: -12px;
}

.member-card {
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
}

.member-photo {
  width: 194px;
  margin-left: auto;
  margin-right: auto;
}

.member-photo img {
  aspect-ratio: 1 / 1;
  width: 100%;
  /* height: 100%; */
  border-radius: 50%;
}

.member-card h4 {
  font-weight: 500;
}

.member-card h4,
.member-card p {
  margin-bottom: 5px;
}

.depart-read-more {
  color: #f45613;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.45;
  max-width: fit-content;
  margin: auto;
  transition: all 0.4s ease-in-out;
}

.depart-read-more:hover {
  color: var(--primary-color);
}

.administrative-members {
  margin-top: 50px;
}

.academic-members .offer-course {
  padding: 0;
}

.academic-members .offer-course:last-child {
  margin-bottom: 0 !important;
}

.academic-members-heading .accordion-button:not(.collapsed) {
  background-color: var(--light-theme-one);
  color: var(--black);
}

.academic-members-heading .accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}

/* =========================================================================================================================================================
                                                         Study Centres / Campuses Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                         Faculty Staff Page CSS Start
========================================================================================================================================================= */
.faculty-staff-section .search-bar {
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
}

.faculty-staff-section .search-bar .search-form .form-group {
  width: 280px;
}

.faculty-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.faculty-table thead {
  background-color: #034690;
}

.faculty-table thead tr th {
  padding: 13px 24px;
  box-shadow: inset 0px -1px 0 #d0dbe8;
  white-space: nowrap;
}

.faculty-table thead tr th:first-child,
.faculty-table tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.faculty-table thead tr th:last-child,
.faculty-table tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.faculty-table td {
  padding: 13px 24px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.faculty-table .name-faculty {
  font-weight: 500;
}

.faculty-table .table-faculty-photo {
  width: 100px;
  /* height: 100%; */
}

.faculty-table .table-faculty-photo img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 50%;
  display: block;
}

.faculty-table .table-td,
.faculty-table .table-td a {
  color: var(--light-black);
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}

.faculty-table .table-td a:hover {
  color: var(--black);
}

.faculty-table tbody tr:nth-child(even) {
  background-color: #d5d5d5;
}

.faculty-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.faculty-table tbody tr:nth-child(odd) td {
  color: #000000;
}

.faculty-table tbody tr:nth-child(even) td {
  color: #000000;
}

.download-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 30px;
  border-radius: 25px;
  transition: 0.4s;
  border: 1px solid var(--primary-color);
}

.download-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* =========================================================================================================================================================
                                                         Faculty Staff Page CSS End
========================================================================================================================================================= */
/* =========================================================================================================================================================
                                                         Academic Calendar Page CSS End
========================================================================================================================================================= */
.academic-calendar-box {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--light-theme-one);
  z-index: 0;
  transition: 0.4s;
}

.academic-calendar-box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 82px 30px;
  color: var(--black);
  border: 1px solid transparent;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}

.academic-calendar-box a.font-size-18 {
  font-weight: 400;
}

.academic-calendar-section .row>div:nth-child(3n + 1) .academic-calendar-box {
  position: relative;
  border: 1px solid #f9e1e1;
}

.academic-calendar-section .row>div:nth-child(3n + 2) .academic-calendar-box {
  position: relative;
  border: 1px solid #dceff8;
}

.academic-calendar-section .row>div:nth-child(3n + 3) .academic-calendar-box {
  position: relative;
  border: 1px solid #f8ebda;
}

.academic-calendar-section .row>div:nth-child(3n + 1) .academic-calendar-box::after,
.academic-calendar-section .row>div:nth-child(3n + 2) .academic-calendar-box::after,
.academic-calendar-section .row>div:nth-child(3n + 3) .academic-calendar-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.academic-calendar-section .row>div:nth-child(3n + 1) .academic-calendar-box::after {
  background-color: #f9e1e1;
}

.academic-calendar-section .row>div:nth-child(3n + 2) .academic-calendar-box::after {
  background-color: #dceff8;
}

.academic-calendar-section .row>div:nth-child(3n + 3) .academic-calendar-box::after {
  background-color: #f8ebda;
}

.academic-calendar-section .row>div:nth-child(3n + 1) .academic-calendar-box:hover::after,
.academic-calendar-section .row>div:nth-child(3n + 2) .academic-calendar-box:hover::after,
.academic-calendar-section .row>div:nth-child(3n + 3) .academic-calendar-box:hover::after {
  width: 0;
}

.academic-calendar-box:hover a,
.academic-calendar-box:hover i {
  color: var(--light-theme-txt);
}

/* =========================================================================================================================================================
                                                         Academic Calendar Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                         Academic Council Page CSS End
========================================================================================================================================================= */
.academic-council .faculty-table td {
  padding: 13px;
}

/* =========================================================================================================================================================
                                                         Academic Council Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                  Administration - Tenders & Notices Page CSS Start
========================================================================================================================================================= */
.tender-notice-input {
  padding: 30px;
  background-color: var(--light-white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.tender-notice-search {
  margin-bottom: 50px;
}

.tender-notice-input .input-group {
  display: flex;
  flex-direction: column;
}

.tender-notice-input .input-group input {
  padding: 11px 15px;
  border: 1px solid var(--border-color);
}

/* .tender-notice-input .input-group input.search-box {
  width: 425px;
} */
.tender-notice-input .input-group input:focus {
  outline: none;
}

.tender-notice-input .input-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tender-notice-input .filter-icon {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 5px;
}

.tender-notice-input .filter-icon .btn-wrapper {
  padding: 15px 60px;
}

/* .tender-notice-input input[type="date"] {
  font-size: 16px;
} */

.tender-notice-input .date-row {
  display: flex;
  gap: 30px;
  width: 100%;
}

.tender-notice-input .input-group.half-width {
  width: 50%;
}

.tender-notice-input .input-group.half-width input {
  width: 100%;
}

/* =========================================================================================================================================================
                                                  Administration - Tenders & Notices Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                  Administration Department Cells Accounts Page CSS End
========================================================================================================================================================= */
.account-section-wrapper .account-section-info .row {
  margin-bottom: 50px;
}

.account-section-wrapper .account-section-info .row:last-child {
  margin-bottom: 0px;
}

.account-content-img img {
  width: 100%;
}

.account-content .row .col-lg-12:last-of-type .subject-info.mb-20px {
  margin-bottom: 0 !important;
}

/* =========================================================================================================================================================
                                                  Administration Department Cells Accounts Page CSS End
========================================================================================================================================================= */




/* 06-06-2025 Start */

/* =========================================================================================================================================================
                                                  Log In Page CSS Start
========================================================================================================================================================= */

.student-login-page .login-section {
  position: relative;
}

.error-massage ul {
  margin-bottom: 0;
  padding-inline: 7px;
}

.student-login-page .login-form-section,
.student-login-page .register-form-section {
  width: 50%;
  position: relative;
  margin-left: auto;
  padding: 80px 100px;
  background-color: #f3f3f3;
}

.student-login-page .bg-login-img {
  position: absolute;
  width: 50%;
  background-image: url(../images/student-login.jpg);
  height: 100%;
  left: 0;
  background-size: cover;
  background-position: bottom;
  min-height: 710px;
  background-repeat: no-repeat;
  top: 0;

}

.student-login-page .login-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-login-page .login-form-wrapper {
  max-width: 505px;
}

.student-login-page .login-title {
  font-family: var(--poppins-font);
  color: #000000;
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 0%;
  margin-bottom: 15px;
}

.student-login-page .login-description {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #000000;
  margin-bottom: 30px;
}

.student-login-page .c-form-control {
  padding: 14px 23px;
  border-radius: 0;
  border-color: #000000;
  color: #000000;
}

.student-login-page .form-group {
  margin-bottom: 20px;
}

.student-login-page .forgot-link {
  color: #F45613;
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  display: block;
  text-align: right;
  margin-top: 13px;
}

.student-login-page .sign-btn {
  margin-top: 40px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #F45613 0%, #F99C1D 100%);
  background-size: 100% 100%;
  background-position: left;
  padding: 15px 25px;
  border-radius: 23px;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  transition: 0.5s ease-in-out;
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;

}

.student-login-page .sign-btn:hover {
  background-position: right;
  color: var(--white);
  background-size: 200% 100%;
  cursor: pointer;
}

.new-account-text a {
  color: #F45613;
}

.new-account-text {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}

/* =========================================================================================================================================================
                                                  Log In Page CSS End
========================================================================================================================================================= */


/* =========================================================================================================================================================
                                                  View Result Page CSS Start
========================================================================================================================================================= */

.view-results-page {
  padding: 80px 0;
}

.view-results-page .view-results-wrapper {
  background-color: var(--light-white);
}

.view-results-page .view-results-wrapper ul {
  max-height: 500px;
  overflow-y: auto;
  padding: 40px 30px;

}

.view-results-page .view-results-btn {
  position: relative;
  background: linear-gradient(270deg, #F65C8D 0%, #FE2C2C 100%);
  background-size: 200% 100%;
  background-position: left;
  padding: 5px 20px;
  border-radius: 10px;
  overflow: hidden;
  color: var(--white);
  margin-right: 20px;
  font-family: var(--poppins-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: center;

}

.view-results-page .view-results-btn::after {
  background: linear-gradient(156.59deg, rgba(255, 255, 255, 0.2) 11.62%, rgba(255, 170, 154, 0.6) 100%);
  content: "";
  right: -10px;
  top: -10px;
  position: absolute;
  height: calc(100% + 10px);
  width: 40%;
  transform: rotate(-25deg);
}

.view-results-page .view-results-btn:hover {
  cursor: pointer;
}

.view-results-page .view-results-wrapper ul {
  margin-bottom: 0;
}

.view-results-page .view-results-wrapper ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: 15px;
}

.view-results-page .view-results-wrapper ul li span {
  padding-left: 100px;
}

.view-results-page .view-results-wrapper ul li button+span {
  padding-left: 0;
}

.view-results-page .view-results-wrapper ul li::after {
  width: 100%;
  height: 1px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #DADADA;
}

.view-results-page .view-results-wrapper ul::-webkit-scrollbar {
  width: 5px;
}

.view-results-page .view-results-wrapper ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

/* =========================================================================================================================================================
                                                  View Result Page CSS End
========================================================================================================================================================= */


/* =========================================================================================================================================================
                                                  Grievance Redressal Page CSS Start
========================================================================================================================================================= */

.grievance-redressal-page {
  padding-block: 50px 80px;
}

.grievance-redressal-page .nav-item {
  width: 50%;
}

.grievance-redressal-page .nav-link {
  width: 100%;
}

.grievance-redressal-page .custom-tab {
  background-color: var(--light-white);
  padding: 20px 15px;
  text-align: center;
  color: var(--black);
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  position: relative;
  transition: 0.4s;
}

.grievance-redressal-page .custom-tab::after {
  position: absolute;
  content: '';
  top: -1px;
  left: 0;
  width: 0;
  height: 8px;
  background: #F45613;
  transition: 0.4s;
  border-radius: 7px 7px 0 0;
}

.grievance-redressal-page .custom-tab:hover::after,
.grievance-redressal-page .active.custom-tab::after {
  width: 100%;
}

.grievance-redressal-page .custom-tab:hover,
.grievance-redressal-page .active.custom-tab {
  background-color: #f3f3f3;
  color: #034690;
  border-radius: 7px 7px 0 0;
}

.grievance-redressal-page .nav-tabs {
  border-radius: 7px 7px 0 0;
}

.grievance-redressal-page .custom-tab:first-child {
  border-left: none;
  border-right: none;
  border-color: #034690;
}

.grievance-redressal-page .query-section {
  padding: 30px 50px;
  background-color: #f3f3f3;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1);
}

.grievance-redressal-page .c-form-control {
  width: 100%;
  padding: 14px 23px;
  border: 1px solid #034690;
  color: #034690;
  outline: none;
  background-color: #ffffff;
  border-radius: .375rem;
}

.grievance-redressal-page .query-card {
  box-shadow: 0px 3px 15px 0px #00000026;
  background-color: #f3f3f3;
}

.grievance-redressal-page .query-card .input-group:first-child {
  margin-bottom: 20px;
}

.grievance-redressal-page .query-card .submit-btn {
  background: linear-gradient(90deg, #F45613 0%, #F99C1D 100%);
  padding: 11px;
  max-width: 75%;
  border-radius: 25px;
  margin-inline: auto;
  color: var(--white);
  margin-top: 50px;
  margin-bottom: 40px;
  background-size: 200% 100%;
  background-position: left;
  transition: background-position 0.5s ease-in-out;
  display: flex;
  justify-content: center;

}

.grievance-redressal-page .query-card .submit-btn:hover {
  background-position: right;
  color: var(--white);
  cursor: pointer;
}

.disclaimer-title {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #034690;
  text-align: center;
  margin-bottom: 20px;
}

.disclaimer-box {
  /* background-color: var(--light-theme);
  padding: 20px 30px; */
}

.disclaimer-description {
  font-family: var(--poppins-font);
  color: #034690;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
}

.disclaimer-description a {
  color: #034690;
  transition: 0.4s;
  word-wrap: break-word;
}

.disclaimer-description a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.disclaimer-title {
  margin-bottom: 10px;
}

.important-alerts-card {
  border: 1px solid #F45613;
  height: 100%;
  overflow-y: auto;
  max-height: 548px;
}

.grievance-redressal-page .row {
  align-items: stretch;
}

.important-alerts-card-header {
  background-color: #FFE2D5;
  padding-block: 25px;
}

.important-alerts-title {
  font-family: Poppins;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: #F45613;
}

.important-alerts-card-body {
  padding: 30px;
}

.important-alerts-list {
  padding-left: 0;
  margin-bottom: 0;
}

.important-alerts-item {
  position: relative;
  padding-block: 15px;
  border-bottom: 1px solid #DADADA;
}

.important-alerts-item:first-child {
  padding-top: 0;
}

.important-alerts-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.important-alerts-link {
  color: #034690;
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  transition: 0.4s;
}

.important-alerts-link:hover {
  color: #034690;
  opacity: 0.8;
}

.about-grievance-title {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #034690;
  margin-bottom: 20px;
}

.about-grievance-section {
  margin-top: 50px;
}

.about-grievance-description {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #000000;
  margin-bottom: 20px;
}

.about-grievance-ul {
  /* padding-left: 0; */
  margin-bottom: 20px;
}

.about-grievance-ul li {
  position: relative;
  list-style: none;
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: var(--light-theme-txt-two);
}

.about-grievance-ul li::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 8px;
  width: 20px;
  height: 20px;
  background-image: url(../images/checkmark.svg);
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================================================================================================================================================
                                                  Grievance Redressal Page CSS End
========================================================================================================================================================= */


/* =========================================================================================================================================================
                                                  Faq Page CSS Start
========================================================================================================================================================= */

.faq-page {
  padding-block: 50px 50px;
}

.faq-department-card {
  background-color: #f3f3f3;
  padding: 30px;
  margin-bottom: 30px;
}

.faq-department-card .form-select {
  border: 1px solid #E5E5E5;
  padding: 10px 20px;
  border-radius: 0;
  /* width: calc(100% - 50px); */
}

.faq-department-heading {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #034690;
  margin-bottom: 10px;
}

.faq-department-card .form-select:focus {
  box-shadow: none;
}

.faq-department-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-department-select svg {
  width: 25px;
}

.faq-department-select svg:hover {
  cursor: pointer;
}

.record-found-card {
  background-color: #DFEEFF;
  padding: 20px;
}

.record-found-card p {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--primary-color);
}

.faq-section {
  /* margin-top: 40px; */
}

.record-found-card {
  margin-bottom: 30px;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");

}

.faq-section .accordion-button {
  padding-top: 00px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 20px;
  color: #000000;
  border-bottom: 1px solid #000000;
  font-weight: 500;
  box-shadow: none;
  transition: all 0.4s ease-in-out;
  border-radius: 0 !important;
  background-color: #f3f3f3;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 1px solid #000000;
  padding-block: 15px;
}

.faq-section .accordion-button {
  padding: 15px !important;
  border-radius: 0 !important;

}

.faq-section .accordion {
  --bs-accordion-border-width: 0;
}

.faq-section .accordion-item {
  margin-bottom: 30px;
  background-color: #f3f3f3;
  /* border-bottom: 1px solid var(--light-black); */
  border-radius: 0;
}

.faq-section .accordion-body p {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #000000;
}

/* =========================================================================================================================================================
                                                  Faq Page CSS Start
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                  Alumni Log in Page CSS Start
========================================================================================================================================================= */



.alumni-login-page .image-section {
  text-align: left;
}

.alumni-login-page .image-section img {
  max-width: 220px;
  width: 100%;
}

.alumni-login-page .alumni-login-title {
  font-family: var(--poppins-font);
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  max-width: 220px;
  margin-top: 20px;
  color: #034690;
}

.alumni-login-page {
  position: relative;
}

.alumni-login-page:after {
  position: absolute;
  right: 0;
  background-color: #ffffff;
  height: 100%;
  width: 50%;
  content: '';
  top: 0;
  z-index: -1;
}


/* =========================================================================================================================================================
                                                  Alumni Log in Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                  Anti Ragging Cell Page CSS Start
========================================================================================================================================================= */


.anti-ragging-section {
  padding-top: 80px;
}

.anti-ragging-cell-title {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 20px;
}

.anti-ragging-cell-description {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--light-black);
  margin-bottom: 50px;
}

.ragging-committee-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.ragging-committee-heading {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  color: var(--black);
  margin-bottom: 0;
}

.ragging-committee-btn {
  background: linear-gradient(90deg, #F45613 0%, #F99C1D 100%);
  background-size: 100% 100%;
  background-position: left;
  padding: 15px 25px;
  border-radius: 23px;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  transition: 0.5s ease-in-out;
  display: flex;
  width: 100%;
  align-content: center;
  justify-content: center;
  max-width: 219px;
}

.ragging-committee-btn:hover {
  background-position: right;
  color: var(--white);
  background-size: 200% 100%;
  cursor: pointer
}

.ragging-committee-btn svg {
  margin-right: 5px;
}

.ragging-committee-table {
  width: 100%;
}

.ragging-committee-table th {
  background-color: #EAF4FF;
  padding: 15px 30px;
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--light-black);
}

.ragging-committee-table-section {
  margin-bottom: 50px;
}

.ragging-committee-table th:first-child,
.ragging-committee-table td:first-child {
  border-radius: 5px 0 0 5px;
}

.ragging-committee-table th:last-child,
.ragging-committee-table td:last-child {
  border-radius: 0 5px 5px 0;
}

.ragging-committee-table td {
  padding: 15px 30px;
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--light-black);
  white-space: nowrap;
}

.bg-grey td {
  background-color: var(--light-white);
}

.ragging-committee-table td:nth-child(2) {
  color: var(--black);
  font-weight: 500;
}


.anti-ragging-collapse-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.anti-ragging-collapse-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.anti-ragging-collapse-section .accordion-button {
  padding-top: 00px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 20px;
  color: var(--black);
  border-bottom: 1px solid var(--light-black);
  font-weight: 500;
  box-shadow: none;
  transition: all 0.4s ease-in-out;
  border-radius: 0 !important;
}

.anti-ragging-collapse-section .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 1px solid var(--light-black);
}

.anti-ragging-collapse-section .accordion {
  --bs-accordion-border-width: 0;
}

.anti-ragging-collapse-section .accordion-item {
  margin-bottom: 30px;
}

.anti-ragging-collapse-section .accordion-body {
  padding-inline: 0;
}

.anti-ragging-collapse-section .accordion-body p {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--light-black);
}

.anti-ragging-service-section {
  margin-block: 80px;
}

.first-services-img {
  background-image: url(../images/img-1.png);
  width: 250px;
  height: 250px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.second-services-img {
  background-image: url(../images/img-2.png);
  width: 250px;
  height: 250px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.third-services-img {
  background-image: url(../images/img-3.png);
  width: 250px;
  height: 250px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.four-services-img {
  background-image: url(../images/img-4.png);
  width: 250px;
  height: 250px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.anti-ragging-service-heading {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
  margin-top: 30px;
}

.help-line-section {
  position: relative;
  padding: 80px;
}

.help-line-section:after {
  position: absolute;
  content: '';
  background-color: #FFF1CC;
  width: 50%;
  left: 0;
  top: 0;
  height: 100%;
}

.help-line-section:before {
  position: absolute;
  content: '';
  background-image: url('{{ Storage::url($antiRaggingDetail->image) }}');
  width: 50%;
  right: 0;
  top: 0;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.help-heading {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 20px;
}

.help-line-section .container-fluid {
  position: relative;
  z-index: 1;
}

.help-description {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0%;
  margin-bottom: 30px;
}

.help-btn {
  background: linear-gradient(90deg, #F45613 0%, #F99C1D 100%);
  padding: 11px;
  display: block;
  /* max-width: 285px; */
  color: var(--white);
  text-align: center;
  transition: 0.4s;
  border-radius: 25px;
  word-break: break-all
}

.help-btn:hover {
  background-position: right;
  background-size: 150% 100%;
  color: var(--white);
}

.mail-help-btn {
  margin-top: 20px;
}


/* New Help Line Section Start*/

.help-left-section {
  background-color: #FFF1CC;
  padding: 50px 50px 50px 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.help-right-section img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* New Help Line Section End*/



/* =========================================================================================================================================================
                                                  Anti Ragging Cell Page CSS End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                  Introduction Page CSS Start
========================================================================================================================================================= */
.introduction-section {
  padding-block: 80px;
}

.introduction-section .left-about-section img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 12 / 9;
}

.right-about-section h4 {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  margin-bottom: 20px;
}


.introduction-section .right-about-section p {
  font-family: var(--poppins-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 26px;
  color: var(--light-black);
  margin-bottom: 20px;
}


.swiper-pagination-bullet {
  opacity: 1 !important;
  background: var(--white) !important;
  padding: 6px !important;

}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1 !important;
  padding: 6px !important;
}


/* =========================================================================================================================================================
                                                  Introduction Page CSS End
========================================================================================================================================================= */
/* =========================================================================================================================================================
                                                  historical background Start
========================================================================================================================================================= */


.historical-background-section {
  padding-block: 50px;
}

.historical-card {
  position: relative;
  background-color: var(--white);
  display: flex;
  align-items: stretch;
  gap: 15px;
  margin-bottom: 125px;
}

.historical-card::after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: -50px;
  background-image: url(../images/card-circle.png);
  width: 50%;
  height: 150px;
  background-size: contain;
  transform: translateX(-50%);
  z-index: 0;
  background-repeat: no-repeat;
}

.historical-card::before {
  background-image: url(../images/orange-dwon-arrow.png);
  position: absolute;
  content: '';
  right: 0;
  height: 75px;
  width: 100%;
  background-position: right;
  bottom: -75px;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

/* .historical-card::after{
  background: linear-gradient(0deg, #FFFFFF 27.88%, #737373 100%);
  backdrop-filter: blur(128px);
  position: absolute;
  content: '';
  opacity: 0.80;
  height: 100%;
  width: 50%;
  bottom: -10px;;
  border-radius: 100%;
  left: 50%;
  transform: translatex(-50%);
} */
.date-historical-section h3 {
  font-size: 18px;
}

.date-historical-section {
  min-height: 140px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background-color: #064F99;
  color: white;
  padding: 10px 8px;
  min-width: 30px;
  font-family: var(--poppins-font);
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}

.description-section {
  width: calc(100% + 40px);
  padding-block: 25px;
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  background-color: var(--white);
  z-index: 4;
}


/* =========================================================================================================================================================
                                                  historical background End
========================================================================================================================================================= */

/* =========================================================================================================================================================
                                                  Research Publication Start
========================================================================================================================================================= */
.book-section {
  padding-block: 66px;
}

.book-section .font-size-15 {
  color: #000000;
}

.book-section .book-card {
  box-shadow: 0px 4px 30px 0px #0000001A;
  padding: 20px;
  border-radius: 20px;
  background-color: #ffffff;
}

.book-section .book-card-inner-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.book-section .left-book-image-section {
  box-shadow: 2px 3px 4px 0px #00000040;
  border: 9px solid var(--white);
  max-width: 30%;
  min-height: 150px;
  width: 100%;
}

.book-section .right-book-image-section {
  max-width: 70%;
  width: 100%;
}

.book-section .book-name {
  font-family: var(--poppins-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #034690;
  margin-bottom: 20px;
}

.book-section .book-description {
  font-family: var(--poppins-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #034690;
  margin-bottom: 28px;
}

.book-section .book-read-more-btn,
.program-offer-course-wrapper .book-read-more-btn {
  padding: 8px 20px;
  color: var(--white);
  border-radius: 23px;
  transition: 0.5s ease-in-out;
  ;
  float: right;
  background-position: left center;
  background: linear-gradient(90deg, rgb(244, 86, 19) 0%, rgb(249, 156, 29) 50%) left center / 200% 100%;
  transition: background-position 0.5s ease-in-out;
}

.book-section .book-read-more-btn:hover,
.program-offer-course-wrapper .book-read-more-btn:hover {
  background-position: right;
  color: var(--white);
  cursor: pointer;
}

/* =========================================================================================================================================================
                                                  Research Publication End
========================================================================================================================================================= */
.account-accorndion-table table {
  width: 100%;
}

.account-accorndion-table table th,
.account-accorndion-table table td {
  border: 1px solid var(--border-color);
  text-align: left;
  padding: 5px;
  vertical-align: sub;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.offer-course-image-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.offer-course-image-list img {
  width: 100%;
}

.reserach-publication-content-section {
  margin-top: 50px;
}

.reserach-publication-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.reserach-publication-ul li {
  margin-bottom: 5px;
}

.d-content {
  display: contents;
}

/* .header-main .container{
  max-width: 90%;
} */



.fancybox__dialog .fancybox__slide {
  padding: 50px;
}


/* View Result Page Start */
.view-result-wrapper .academic-calendar-box .download-btn {
  width: unset;
  padding: 7.5px 15px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  transition: 0.4s;
}

.view-result-wrapper .academic-calendar-box .download-btn i {
  transition: 0.4s;
}

.view-result-wrapper .academic-calendar-box:hover .download-btn i {
  color: var(--light-theme-txt-four);
}

.academic-calendar-box {
  padding: 0px 15px;
}

.view-result-wrapper .academic-calendar-box {
  padding: 41px 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: contrast(0);
}

/* View Result Page End */



/* =========================================================================================================================================================
                                                          Foreign Deputations of Professors Page CSS Start
========================================================================================================================================================= */

.foreign-deputations-section.administrative-officers-wrapper-two .officer-card-heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
  text-align: center;
}

.foreign-deputations-section .left-officer-card-section {
  width: 100%;
}

.foreign-deputations-section .officer-card-sub-heading {
  text-align: center;
  margin-top: auto;
}

.foreign-deputations-section .row {
  align-items: stretch;
}

.foreign-deputations-section .officer-card {
  height: 100%;
}

.foreign-deputations-section .left-officer-card-section {
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
}

/* ============================================================================================================================================== ===========
                                                          Foreign Deputations of Professors Page CSS End
========================================================================================================================================================= */



















/* Book Page Animation Css Start */
.book-section>.container {
  height: 800px;
  position: relative;
  border-radius: 2%;
  margin-bottom: 30px;
  max-width: 1244px;
  margin-inline: auto;
}

.book-section .container>.right {
  position: absolute;
  height: 100%;
  width: 50%;
  transition: 0.7s ease-in-out;
  transform-style: preserve-3d;
  pointer-events: none;
}

.book-section .right.flip {
  pointer-events: auto;
  /* ✅ Add this line */
}

.book-section>.container>.right {
  right: 0;
  transform-origin: left;
  border-radius: 10px 0 0 10px;
}

.book-section .right>figure.front,
.book-section .right>figure.back {
  margin: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: 200%;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  background-color: white;
  overflow: hidden;
  pointer-events: auto;
}

.book-section .right>figure.front {
  background-position: right;
  border-radius: 0 10px 10px 0;
  box-shadow: -2px 2px 15px -2px rgba(0, 0, 0, 0.2);
}

.book-section .right>figure.back {
  background-position: left;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 2px 15px -2px rgba(0, 0, 0, 0.2);
  transform: rotateY(180deg);
  z-index: 11;
}

.book-section .flip {
  transform: rotateY(-180deg);
}

.book-section .flip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 0;
}

.book-section .book-section>button {
  border: 2px solid #ef9f00;
  background-color: transparent;
  color: #ef9f00;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
  transition: 0.3s ease-in-out;
}

.book-section .front#cover {
  background-image: url(../images/book-back-cover.jpg);
  background-size: cover !important;
  background-position: right;
  width: 100%;
}


.book-section .back#back-cover {
  background-image: url(../images/book-front-cover.jpg);
  background-size: cover !important;
  background-position: left;
  width: 100%;
}

#book,
#book1,
#book2,
#book3,
#book4,
#book5 {
  /* background-image: url(../images/bookcover.png); */
  background-image: url(../images/newbookcover.png);
  /* background-image: url(../images/book-2.png); */
  /* background-image: url(../images/book-3.png); */
  /* background-color: #000; */
  height: 800px;
  /* background-size: cover; */
  background-size: 100% 800px;
}

.book-section .course-des {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.book-section .front,
.book-section .back,
.book-section .book-page .content {
  background-image: url(../images/book-image-2.png);
  background-size: cover !important;
}

.book-section .book-page .content {
  height: calc(100% - 30px) !important;
  top: 50% !important;
  transform: translateY(-50%);
  width: 100%;
  transition: left 0.3s ease;
}

.book-section .front,
.book-section .back {
  padding: 50px;
}

.book-section .hidden {
  display: none !important;
}

.book-section .content {
  padding: 50px;
}

.course-page-image {
  text-align: center;
}

.course-page-image img,
.department-mobile .offer-course-img.course-page-image img,
.course-mobile .course-page-image img {
  width: 300px;
  height: 300px;
}




/* Flipbook Default Desktop Styles */
.book-section .right {
  position: absolute;
  width: 100%;
  transition: transform 0.6s;
  transform-origin: left;
}

.book-section .right.flip {
  transform: rotateY(-180deg);
}

/* MOBILE VIEW STYLES */
@media (max-width: 767px) {
  .book-section {
    display: block;
  }

  .book-section .container>.right {
    width: 75%;
    margin-inline: auto;
  }

  .book-section {
    position: relative;
    overflow: hidden;
  }

  .book-section .right {
    display: none;
    position: static !important;
    transform: none !important;
    z-index: auto !important;
    transition: none !important;
  }

  .book-section .right.current {
    display: block;
  }
}


.book-section .collapse-inner-heading {
  font-size: 20px;
  margin-bottom: 15px;
}

.book-section .accordion-header {
  margin-bottom: 25px;
  font-size: 25px;
}

.book-section ul li {
  margin-bottom: 5px;
}

.book-section .common-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  padding: 5px 10px;
  transition: 0.4s;
}

.book-section .common-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.fancybox__dialog .f-thumbs {
  display: none !important;
}

.date-news-info .btn-wrapper {
  min-width: 200px;
  justify-content: center;
}




/* Modal background */
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal box full height */
.pdf-modal-content {
  position: relative;
  background: white;
  width: 90%;
  height: 100dvh;
  margin: auto;
  border-radius: 0;
  overflow: hidden;
}

/* Zoom animation */
.animate-zoom {
  animation: zoomIn 0.3s ease;
}

/* Close button */
.pdf-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 32px;
  font-weight: 100;
  cursor: pointer;
  z-index: 10;
  color: #ffffff;
  transition: color 0.2s;
}

.pdf-close:hover {
  color: #ffffff;
  opacity: 0.8;

}

/* Iframe full */
#pdfFrame {
  width: 100%;
  height: 100%;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.95);
  }

  to {
    transform: scale(1);
  }
}

.department-form-select {
  padding: 10px 30px 10px 20px;
  border: 1px solid #d4d4d4;
  border-radius: 25px;
  outline: none;
  appearance: none;
  width: 100%;
  position: relative;
}

.department-form-select::after {
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  color: #999;
}

.photo-gallery-c-form-select {
  display: block;
  max-width: 200px;
  margin-left: auto;
  border-radius: 30px;
}


.study-center-campus-wrapper .academics-content::after {
  z-index: -1;
}

.department-book-section .book-read-more-btn,
.program-offer-course-wrapper .book-read-more-btn {
  float: unset !important;
  max-width: 150px;
  width: 100%;
  display: block;
  margin-inline: auto;
}

.error-message {
  color: red;
}


/* Dark Light Mode Css Start */
.header-menu {
  background-color: var(--light-theme-two);
}

.footer-bg {
  border: 1px solid #555555;
}

.faq-section .font-size-15 {
  color: #000000;
}

.company-info .font-size-15,
.company-contact-info .font-size-15,
.contact-us-section .contact-Information .company-info a {
  color: #000000;
}

.our-story-content .font-size-15,
.program-offer-heading .font-size-15,
.vision-mission-info .font-size-15,
.adm-director-info-content .font-size-15,
.officer-card-heading-section .font-size-15,
.account-content .font-size-15,
.intro-content .font-size-15,
.campus-establishment .font-size-15,
.offer-course-list .font-size-15,
.member-card .font-size-15,
.photo-gallery .font-size-15,
.vision-organizational-info .font-size-15,
.information-content-box .font-size-15,
.director-info-content .font-size-15,
.director-info-section .font-size-15,
.academics-wrapper .font-size-15 {
  color: #000000;
}

#book4 {
  height: 850px;
  background-size: 100% 850px;
}

.course {
  padding-bottom: 100px;
}

.screen-reader-link {
  color: var(--light-theme-txt);
  transition: all 0.4s ease-in-out;
}

.screen-reader-table th {
  background-color: #d4d4d4;
}

.screen-reader-table th,
.screen-reader-table td {
  padding: 10px;
}

.screen-reader-table td a {
  color: blue;
}

.content.ugc-page-content {
  height: 100% !important;
  min-height: 100% !important;
}

.table-faculty-photo img {
  border: 1.5px solid grey;
}

/* Dark Light Mode Css End */
.ugc-page-content.content img {
  width: 100%;
  height: 100%;
}

.social-icons li a:hover svg path,
.social-icons li a:focus svg path {
  fill: var(--primary-color);
}

.x-icon-svg svg path {
  transition: fill 0.2s ease;
}

.social-icons li.twitwer-icon:hover .x-icon-svg svg path,
.social-icons li.twitwer-icon:focus .x-icon-svg svg path {
  fill: #ffffff;
}

.x-icon-svg:hover,
.social-icons:focus {
  color: transparent
}

/* student-result-table Section Start */
.student-result-table th {
  border: 1px solid #000;
  padding: 5px;
  text-align: center;
}

.student-result-table th p {
  padding: 0 5px;
}

.student-result-table th table {
  border-top: 1px solid #000000;
}

.student-result-table th table th {
  border: none;
  padding: 5px;
  font-weight: 500;
  text-align: center;
}

.student-result-table th table th {
  border-right: 1px solid #000000;
}

.student-result-table th table th:last-child {
  border-right: none;
}

.student-result-table td {
  padding: 5px;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #000;
}

.student-result-table td table td {
  border: none;
  padding: 5px;
}

.student-result-table td table td:last-child {
  border-left: 1px solid #000;
  border-right: none;
}

/* student-result-table Section End */


.journals-detail-image {
  padding: 10px;
  position: relative;
}

.journals-detail-image img {
  position: relative;
  z-index: 1;
}

.journals-detail-image:after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border: 2px solid var(--primary-color);
}

.journals-detail-image:before {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  border: 2px solid var(--primary-color);
}

.journal-page .academic-calendar-box a {
  padding-inline: 0px;
}

.journal-page .academic-calendar-box {
  padding-block: 15px;
}






.app-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.app-popup-box {
  background: var(--primary-color);
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 950px;
  position: relative;
}

.popup-inner {
  background: #efefef;
  padding: 25px;
  border-radius: 12px;
}

.popup-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  border-top: 2px solid #b89b6c;
  border-bottom: 2px solid #b89b6c;
  padding: 10px 0;
  margin-bottom: 25px;
  color: #7a5c2e;
}

.popup-body {
  display: flex;
  gap: 30px;
  align-items: center;
}

.popup-left {
  flex: 1;
  text-align: center;
}

.popup-left img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.popup-right {
  flex: 1.3;
}

@media(max-width: 576px) {
  .app-popup-box {
    background-color: var(--white);
  }

  .popup-title {
    font-size: 20px;
    /* color: #ffffff; */
    /* border-color: #ffffff; */
  }

  .popup-left img {
    margin-bottom: 25px;
  }

  .popup-body {
    display: block;
  }

  .popup-right h3 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
    /* color: #ffffff; */
  }

  .popup-right li {
    font-size: 14px;
    /* color: #ffffff; */
  }

  .popup-inner {
    padding-inline: 0;
    background-color: transparent;
  }

  .app-popup-box {
    height: 90dvh;
    overflow-y: scroll;
  }


}

.li-disc {
  list-style: disc;
  padding-left: 15px;
}





#appPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show state */
#appPopup.show {
  display: flex;
  opacity: 1;
}

/* Hide state */
#appPopup.hide {
  opacity: 0;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}





/* Container */
.mmttc-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.mmttc-row {
  display: flex;
  gap: 30px;
}

/* Sidebar */
.mmttc-sidebar {
  width: 280px;
  border: 1px solid #ddd;
  height: 100%;
}

.sidebar-title {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 15px;
  margin: 0;
  font-family: var(--poppins-font);
  font-size: 18px;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-menu li {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.6s;
  cursor: pointer;
  font-family: var(--poppins-font);
}

.sidebar-menu li:hover,
.sidebar-menu .active {
  background: #f5f5f5;
  font-weight: 600;
  color: var(--primary-color);
}

.sidebar-menu li {
  font-size: 15px;
}

/* Content */
.mmttc-content {
  flex: 1;
}

.content-title {
  color: #f4a300;
  margin-bottom: 40px;
}

.title-underline {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.line-yellow {
  width: 60px;
  height: 3px;
  background: #f4a300;
  margin-right: 5px;
}

.line-dark {
  width: 25px;
  height: 3px;
  background: #1b2a57;
}

.mmttc-content p {
  line-height: 1.7;
  font-family: var(--poppins-font);
  color: #444;
}

.content-box {
  display: none;
}

.content-box.active {
  display: block;
}



.sidebar-menu li.active {
  font-weight: bold;
  color: var(--primary-color);
}

.content-title span {
  position: relative;
  font-family: var(--poppins-font);
}

.content-title span:before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.modal-close-icon {
  position: absolute !important;
  top: 5px;
  right: 25px;
  font-size: 24px;
  color: #000000;
  background: transparent;
}

.popup-inner {
  position: relative;
  padding-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .mmttc-row {
    flex-direction: column;
  }

  .mmttc-sidebar {
    width: 100%;
  }
}

.proffecer-section .container {
  max-width: 60%;
}

.proffecer-section img {
  width: 150px;
  min-height: 200px !important;
  aspect-ratio: 1 / 1 !important;
  object-position: center;
}

.notice-section p {
  color: #000000;
}

.notice-section p a:hover {
  color: blue;
  text-decoration: underline;
}

.notice-section p img {
  margin-left: 5px;
}


@media(max-width: 576px) {
  .proffecer-section .container {
    max-width: 100%;
  }
}