@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  color: #000;
  background-color: #F9F6F1;
  font-family: "Bricolage Grotesque", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: msemi;
}

p {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: #1A1A1A;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding-left: 15px;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
}

@font-face {
  font-family: msemi;
  src: url(../fonts/myriad-pro/MYRIADPRO-SEMIBOLD.OTF);
}
.spacer {
  margin: 10px 0;
  padding: 20px 0;
}

.bell {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  -webkit-animation: ring 4s 0.7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s 0.7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s 0.7s ease-in-out infinite;
  transform-origin: 50% 4px;
}
@keyframes ring {
  0% {
    transform: rotate(0);
  }
  1% {
    transform: rotate(30deg);
  }
  3% {
    transform: rotate(-28deg);
  }
  5% {
    transform: rotate(34deg);
  }
  7% {
    transform: rotate(-32deg);
  }
  9% {
    transform: rotate(30deg);
  }
  11% {
    transform: rotate(-28deg);
  }
  13% {
    transform: rotate(26deg);
  }
  15% {
    transform: rotate(-24deg);
  }
  17% {
    transform: rotate(22deg);
  }
  19% {
    transform: rotate(-20deg);
  }
  21% {
    transform: rotate(18deg);
  }
  23% {
    transform: rotate(-16deg);
  }
  25% {
    transform: rotate(14deg);
  }
  27% {
    transform: rotate(-12deg);
  }
  29% {
    transform: rotate(10deg);
  }
  31% {
    transform: rotate(-8deg);
  }
  33% {
    transform: rotate(6deg);
  }
  35% {
    transform: rotate(-4deg);
  }
  37% {
    transform: rotate(2deg);
  }
  39% {
    transform: rotate(-1deg);
  }
  41% {
    transform: rotate(1deg);
  }
  43% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
.latest-news {
  background: #3f634e;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 5px 0;
  position: relative;
  z-index: 1;
}

.latest-news .ticker-wrapper-h {
  display: flex;
  position: relative;
  overflow: hidden;
  border: 1px solid #173456;
  background: #fff;
  z-index: 1;
  /* border-radius: 50%; */
}
.latest-news .ticker-wrapper-h::before {
  content: "";
  width: 7%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -9px;
  background-color: #173456;
  z-index: 1;
  transform: skewX(-19deg);
}

.latest-news .ticker-wrapper-h .heading {
  background-color: #173456;
  color: #fff;
  padding: 5px 20px;
  flex: 0 0 auto;
  z-index: 1000;
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.latest-news .ticker-wrapper-h .heading:after {
  content: "";
  width: 104%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #173456;
  z-index: -1;
  transform: skewX(-19deg);
}

.latest-news .news-ticker-h {
  display: flex;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  z-index: -1;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: tic-h;
  animation-duration: 180s; /* JS will replace this automatically */
  gap: 40px;
  position: relative;
}



.latest-news .news-ticker-h:hover {
  animation-play-state: paused;
}

.latest-news .news-ticker-h li {
  display: flex;
  /*width: 100%;*/
  align-items: center;
  white-space: nowrap;
  padding-left: 20px;
}

.latest-news .news-ticker-h li a {
  color: #1A1A1A;
  font-weight: 400;
}

.latest-news .news-ticker-h li a:hover {
  color: #f9ab03;
}

@keyframes tic-h {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.lower-hed-box {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 10px;
    padding-left: 30px;
    gap: 10px;
}
.lower-hed-box .search-box {
  max-width: 400px;
  margin: 20px auto;
}
.lower-hed-box .input-group {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #173456;
  border-radius: 10px;
}
.lower-hed-box .input-group:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.lower-hed-box .form-control {
  flex: 1;
  border: none;
  padding: 5px 18px;
  font-size: 16px;
  outline: none;
}
.lower-hed-box .form-control:focus {
  box-shadow: none;
}
.lower-hed-box .form-control::-moz-placeholder {
  color: #aaa;
}
.lower-hed-box .form-control::placeholder {
  color: #aaa;
}
.lower-hed-box .btn {
  background: #173456;
  /* Teal accent */
  border: none;
  color: #fff;
  padding: 5px 18px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.lower-hed-box .btn:hover {
  background: #f9ab03;
  transform: scale(1.05);
}
.lower-hed-box .btn i {
  pointer-events: none;
}

.social-links ul {
  display: inline-flex;
  gap: 10px;
}
.social-links ul a {
  background-color: #173456;
  color: #fff;
  display: inline-block;
  padding: 5px 13px;
  font-size: 18px;
}
.social-links ul a:hover {
  background-color: #f9ab03;
  color: #000;
}

.top-header {
  background-color: #f9ab03;
}

.top-header .top-links ul li{
    display:inline-block;
}
.top-header .top-links ul li a {
    display: inline-block;
    padding: 5px 10px;
    color: #173456;
    border-right: 1px solid #36353357;
    font-size: 15px;
    line-height: 2;
    font-weight: bold;
}
.top-header .top-links ul li a:hover {
  font-weight:bold;
}

.top-header .top-links ul li:last-child a {
  border: 0;
}

.logo-area {
  padding: 10px 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.logo-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: -4%;
  height: 100%;
  width: 52%;
  background-color: #173456;
  z-index: -1;
  transform: skew(-33deg);
}
.logo-area .ytube {
  padding: 5px 8px !important;
}
.logo-area .has-search .form-control {
  padding-left: 2.375rem;
}
.logo-area .has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}
.logo-area .logo {
  display: flex;
  gap: 15px;
  align-items: center;
}
.logo-area .college_name {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0px 2px 3px #3c3737;
  display: inline-block;
}
.logo-area P {
  color: #fff;
  font-size:13px;
}
.logo-area .top-evnt-list {
    text-align: center;
    padding-right: 45px;
}
.logo-area .top-evnt-list ul {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.logo-area .top-evnt-list ul img {
  width: 60px;
  height: 50px;
}
.logo-area .top-evnt-list ul a {
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.logo-area .btns-dcx {
  text-align: center;
}
.logo-area .btns-dcx ul {
  display: inline-flex;
  gap: 10px;
}
.logo-area .btns-dcx ul li a,
.logo-area .btns-dcx ul li button {
  display: block;
  background-color: #173456;
  padding: 10px;
  margin: 5px 0;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 0;
  font-size: 14px;
}
.logo-area .btns-dcx ul li a:hover,
.logo-area .btns-dcx ul li button:hover {
  background-color: #f9ab03;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 95, 115, 0.4);
}
.logo-area .btns-dcx ul li a:hover::before,
.logo-area .btns-dcx ul li button:hover::before {
  left: 100%;
}
.logo-area .btns-dcx ul li a::before,
.logo-area .btns-dcx ul li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}
.logo-area .btns-dcx ul li a span,
.logo-area .btns-dcx ul li button span {
  color: #173456;
  padding: 2px 6px;
  background: #fff;
  border-radius: 50%;
  margin-right: 5px;
  font-size: 13px;
  transition: all 0.3s ease;
}
.logo-area .btns-dcx ul li a:hover span,
.logo-area .btns-dcx ul li button:hover span {
  background: #173456;
  color: #fff;
}

.header-carousel {
  position: relative;
  background-color: #143a63;
  padding: 10px;
}

.header-carousel .carousel-img {
  position: relative;
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: #173456;
}

.page-header {
  background: url(../img/bg.jpg) center center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: #000;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: #000;
}

.page-header .breadcrumb-item.active {
  color: #000;
}

.page-wrapper .owl-carousel .owl-item img {
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
     object-position:top;
}
.page-wrapper .slider-box {
  position: relative;
}
.page-wrapper .slider-box .slide_txt {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.page-wrapper .slider-box .slide_txt h3 {
  font-size: 20px;
  color: #1A1A1A;
  display: inline-block;
  background: rgba(202, 222, 226, 0.6392156863);
  /* line-height: 0; */
  padding: 10px;
  border-radius: 6px 0;
  line-height: 1;
  opacity: 0;
  filter: blur(5px);
  transition: all 0.4s ease;
}

.about-college img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: left;
}
.about-college .img {
  position: relative;
  margin-right: 15px;
  z-index: 1;
  padding-top: 60px;
  padding-left: 60px;
  padding-bottom: 60px;
}
.about-college .img::after {
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 500px;
  height: 100%;
  position: absolute;
  transition: all ease 0.5s;
  border: 20px solid #173456;
}
.about-college .about-txt {
  margin-top: 50px;
}
.about-college .about-txt p {
  text-align: justify;
}

.notice-area {
  background-color: #fcfcfc;
}
.notice-area .title-sm::after {
  background: linear-gradient(120deg, transparent, rgba(231, 248, 238, 0.63), transparent);
}
.notice-area .faq__accordian-main-wrapper {
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  background-color: #fff;
}
.notice-area .neWs_date {
  display: inline-block;
  font-size: 12px;
  background: #173456;
  color: #fff;
  padding: 6px;
  position: absolute;
  left: 5px;
  top: 0;
  width: 65px;
  height: 50px;
  text-align: center;
  z-index: 1;
  box-shadow: 1px 1px 3px #635c5c;
}
.notice-area .neWs_date:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  background: #f9ab03;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.4s;
}
.notice-area .neWs_date .year01 {
  display: block;
  border-top: 1px solid #ffffff;
}
.notice-area #faq__accordian-main-wrapper {
  max-width: 100%;
  margin: 0 auto;
}
.notice-area .faq__accordian-heading:nth-last-child(5) {
  margin-bottom: 0;
}
.notice-area .faq__accordian-heading {
  background: #173456;
  padding: 10px 30px 10px 10px;
  display: block;
  margin-bottom: 2px;
  position: relative;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  border: 2px solid #BFC0C0;
}
.notice-area .faq__accordian-heading::before {
  content: "\f107";
  color: #ffffff;
  font-family: fontawesome;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: 0.3s linear all;
  transform: translateY(-50%) rotate(0deg);
}
.notice-area .faq__accordian-heading.active {
  background: #f9ab03;
  color: #000;
}
.notice-area .faq__accordian-heading.active::before {
  transition: 0.3s linear all;
  transform: translateY(-50%) rotate(360deg);
}
.notice-area .faq__accordian-heading.active::before {
  color: #000;
}
.notice-area .faq__accordion-content {
  display: none;
}
.notice-area .view-btn {
  text-align: right;
}
.notice-area marquee {
  height: 229px;
  background-color: #d9ddeb;
  padding: 10px;
}
.notice-area .qiick-links ul li {
  position: relative;
  min-height: 60px;
}
.notice-area .qiick-links ul li a {
  font-size: 14px;
  color: #000;
  display: block;
  font-weight: 400;
  padding-top: 0;
  padding-left: 75px;
}
.notice-area .qiick-links ul li a:hover {
  color: #173456;
  font-weight: 600;
}
.notice-area .view-btn .common_btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
}
.notice-area .p-box {
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  background-color: #fff;
  height: 455px;
  overflow: hidden;
}
.notice-area .p-box p {
  text-align: justify;
}
.notice-area .principal-image {
  width: 280px;
  float: left;
  height: auto;
  margin: 7px 10px 10px 0;
  text-align: center;
  padding: 5px;
  box-shadow: 0px 2px 3px 1px #bfbfbf;
}
.notice-area .principal-image img {
  padding: 10px;
  width: 100%;
  height: 189px;
}
.notice-area .principal-image p {
  text-align: center;
}
.notice-area .txtp {
  background-color: #17345638;
  padding: 5px;
  margin-top: 10px;
}
.notice-area .txtp h3 {
  font-size: 23px;
  color: #1A1A1A;
}
.notice-area .txtp p {
  color: #1A1A1A;
}
.notice-area .princi-img {
  position: relative;
}
.notice-area .princi-img::before {
  content: "";
  background-color: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  border-bottom: 5px solid #f9ab03;
  border-right: 5px solid #f9ab03;
  z-index: 2;
}
.notice-area .princi-img::after {
  content: "";
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 90px);
  height: calc(100% - 90px);
  border-top: 5px solid #173456;
  border-left: 5px solid #173456;
}

.talks-seminars .talks-box {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  background-color: #fff;
  height: 395px;
  overflow:hidden;
}
.talks-seminars .imp_links01{
  height: 395px;
  overflow-y: scroll;  
}
.talks-seminars .item {
  position: relative;
  overflow: hidden;
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.talks-seminars .item img {
  width: 100%;
  transform: scale(1);
  transition: transform 0.7s ease;
}
.talks-seminars .seminar__slide .item:hover img {
  transform: scale(1.05);
  /* zoom on hover */
}
.talks-seminars .owl-theme .owl-nav {
  display: none;
}
.talks-seminars .owl-carousel .owl-item img {
  height: 376px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.talks-seminars .owl-theme .owl-dots .owl-dot.active span,
.talks-seminars .owl-theme .owl-dots .owl-dot:hover span {
  background: #173456;
}
.talks-seminars .owl-theme .owl-dots,
.talks-seminars .owl-theme .owl-nav {
  display: none;
}
.talks-seminars .talks-box ul li a {
  display: block;
  background-color: #173456;
  padding: 10px;
  margin: 5px 0;
  color: #fff;
  border: 2px solid #BFC0C0;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}
.talks-seminars .talks-box ul li a:hover {
  background-color: #f9ab03;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 95, 115, 0.4);
  color:#000;
}
.talks-seminars .talks-box ul li a:hover::before {
  left: 100%;
}
.talks-seminars .talks-box ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}
.talks-seminars .talks-box ul li a span {
  color: #173456;
  padding: 2px 6px;
  background: #fff;
  border-radius: 50%;
  margin-right: 5px;
  font-size: 13px;
  transition: all 0.3s ease;
}
.talks-seminars .talks-box ul li a:hover span {
  background: #173456;
  color: #fff;
}
.talks-seminars .prayer {
  height: auto !important;
}
.talks-seminars p {
  text-align: justify;
}

.Mary-Ward {
  background-color: #fcfcfc;
}
.Mary-Ward .title-sm::after {
  background: linear-gradient(120deg, transparent, rgba(231, 248, 238, 0.63), transparent);
}
.Mary-Ward .mary-box {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  height: 480px;
  overflow: hidden;
}
.Mary-Ward .mary-box p {
  text-align: justify;
}
.Mary-Ward .mary-box .mary-img {
  float: left;
  height: auto !important;
  width: 250px;
  margin: 5px 10px 0 0;
}
.Mary-Ward .mary-box .mary-img img {
  width: 250px;
}
.Mary-Ward .event-box {
  overflow-y: scroll;
  background: url(../img/evnt-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position:relative;
}
@media screen and (min-width:991px){
  .Mary-Ward .event-box{
      height:425px!important;
  }  
}
.dcsz{
    position:relative;
}
.dcsz .common_btn{
    width: 100%;
    border-radius: 0;
    display:block;
    margin-top:10px;
}
.Mary-Ward .event-list li {
  position: relative;
  height: 76px;
  background: rgba(255, 255, 255, 0.7411764706);
  border: 1px solid #7f96b0;
  margin: 5px 0;
  border-radius: 10px;
  overflow: hidden;
}
.Mary-Ward .event-list .dated {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  background: linear-gradient(90deg, #0b2d4d, #143a63);
  padding: 5px;
  font-size: 14px;
  color: #fff;
  width: 50px;
  height: 74px;
}
.Mary-Ward .event-list .dated span {
  display: block;
  font-weight: 600;
  font-size: 16px;
}
.Mary-Ward .event-list a {
  display: inline-block;
  padding-left: 14%;
  color: #000;
  font-weight: normal;
}
.Mary-Ward .event-list a:hover {
  padding-left: 15%;
  font-weight: 600;
}

.photo-gallery {
  background-color: #fcfcfc;
  /* 3D Tilt on Hover */
  /* Overlay */
  /* Overlay Icon */
  /* Caption Text */
  /* Glow Effect */
  /* Navigation buttons */
}
.photo-gallery .title-sm::after {
  background: linear-gradient(120deg, transparent, rgba(231, 248, 238, 0.63), transparent);
}
.photo-gallery .owl-theme .owl-dots {
  display: none;
}
.photo-gallery .owl-theme .owl-nav [class*=owl-] {
  background: none !important;
}
.photo-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  background: #17345638;
  padding: 10px;
  overflow: hidden;
}
.photo-gallery .gallery-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-gallery .gallery-item:hover {
  transform: rotateY(10deg) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.photo-gallery .gallery-item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.photo-gallery .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateZ(50px);
  width: 100%;
}
.photo-gallery .gallery-item:hover .overlay {
  opacity: 1;
}
.photo-gallery .overlay i {
  color: #fff;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 15px;
  border-radius: 50%;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.photo-gallery .gallery-item:hover .overlay i {
  transform: translateY(0);
  opacity: 1;
}
.photo-gallery .overlay h3 {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease 0.1s;
  width: 80%;
  text-align: center;
}
.photo-gallery .gallery-item:hover .overlay h3 {
  opacity: 1;
  transform: translateY(0);
}
.photo-gallery .gallery-item:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}
.photo-gallery .owl-theme .owl-dots,
.photo-gallery .owl-theme .owl-nav {
  text-align: right !important;
}
.photo-gallery .owl-nav {
  text-align: center;
  margin-top: 20px;
  display: none;
}
.photo-gallery .owl-nav .nav-btn {
  background: #173456;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.photo-gallery .owl-nav .nav-btn:hover {
  background: #E63946;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.photo-gallery .photo-fbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.videogallery {
  background-color: unset;
}

.upcoming-events {
  /* Event Item */
  /* Details Box */
  /* Fade-in animation */
  /* Navigation buttons */
}
.upcoming-events .readmore {
  margin-top: -50px;
}
.upcoming-events .events .reg a {
  display: block;
  text-align: center;
  padding: 3px;
  color: #fff;
  background-color: #f9ab03;
  font-weight: normal;
  font-size: 14px;
}
.upcoming-events .events .reg a:hover {
  background-color: #E63946;
}
.upcoming-events .events .item {
  background-color: #fff;
  padding: 10px;
  max-height: 620px;
  height: 620px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.upcoming-events .events .item img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.upcoming-events .events .item .details-box h3 {
  padding: 5px 0;
  color: #1A1A1A;
  font-size: 18px;
  min-height: 60px;
  line-height: 1.3;
}
.upcoming-events .events .item .details-box .check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bbbbbb;
  padding: 5px 0px;
}
.upcoming-events .events .item .details-box .check .left p {
  color: #000;
}
.upcoming-events .events .item .details-box .check .right a {
  display: inline-block;
  color: #173456;
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;
}
.upcoming-events .events .item .details-box .check .right a:hover {
  color: #f9ab03;
}
.upcoming-events .owl-theme .owl-dots {
  display: none;
}
.upcoming-events .owl-theme .owl-dots,
.upcoming-events .owl-theme .owl-nav {
  text-align: right !important;
}
.upcoming-events .owl-theme .owl-nav [class*=owl-] {
  background: none;
}
.upcoming-events .event-slide .item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}
.upcoming-events .event-slide .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.upcoming-events .event-slide .item img {
  transition: all 0.5s ease;
}
.upcoming-events .event-slide .item:hover img {
  transform: scale(1.05);
}
.upcoming-events .details-box {
  padding: 20px;
  text-align: left;
  height:600px;
}
.upcoming-events .check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.upcoming-events .check .left p {
  color: #666;
  font-weight: 500;
}
.upcoming-events .check .left i {
  color: #173456;
  margin-right: 5px;
}
.upcoming-events .check .right a:hover {
  color: #f9ab03;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.upcoming-events .event-slide .item.animated {
  animation: fadeInUp 1s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.upcoming-events .owl-nav {
  text-align: center;
  margin-top: 20px;
}
.upcoming-events .owl-nav .nav-btn {
  background: #173456;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.upcoming-events .owl-nav .nav-btn:hover {
  background: #f9ab03;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.achievements {
  /* Owl Navigation */
}
.achievements .owl-carousel .item {
  transition: all 0.4s ease;
  position: relative;
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #fff;
  position: relative;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  margin: 0 20px 10px;
  text-align: center;
  min-height: 365px;
}
.achievements .owl-carousel .item::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  border-top: 15px solid #fcfcfc;
  border-left: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.achievements .owl-carousel .item::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  border-top: 15px solid #fcfcfc;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.achievements .icon {
  width: 50px;
  height: 45px;
  background: #173456;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
}
.achievements .icon:before {
  content: "";
  border-bottom: 16px solid #173456;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}
.achievements .icon i {
  animation: blink 1.2s infinite ease-in-out;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.achievements .owl-carousel .item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 35px rgba(22, 122, 198, 0.3);
}
.achievements .achievement-icon {
  font-size: 2.8rem;
  color: #167ac6;
  margin-bottom: 15px;
  background: rgba(22, 122, 198, 0.1);
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  transition: 0.4s;
}
.achievements .item:hover .achievement-icon {
  background: #167ac6;
  color: #fff;
  transform: scale(1.1);
}
.achievements .achievement-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}
.achievements .achievement-date {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.achievements .achievement-date::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shine 2s infinite linear;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.achievements .achievement-line {
  font-size: 16px;
  color: #1A1A1A;
}
.achievements .owl-nav .owl-prev,
.achievements .owl-nav .owl-next {
  background: #173456 !important;
  color: #fff !important;
  border-radius: 5px;
  /* width: 45px; */
  /* height: 45px; */
  transition: 0.3s;
  /* line-height: 3; */
  padding: 5px 11px;
  font-size: 18px;
  display: none;
}
.achievements .owl-nav .owl-prev:hover,
.achievements .owl-nav .owl-next:hover {
  background: #E63946 !important;
}
.achievements .owl-dots {
  margin-top: 25px;
  display: none;
}
.achievements .achievement-img img {
  margin-bottom: 10px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
.achievements .owl-dot span {
  background: #bbb !important;
  width: 12px;
  height: 12px;
  transition: 0.3s;
}
.achievements .owl-dot.active span {
  background: #167ac6 !important;
  transform: scale(1.2);
}
.achievements .owl-theme .owl-nav {
  text-align: right;
}

.tooltip-inner {
  font-size: 1.2em;
  /* Adjust this value as needed */
}

@media (min-width: 576px) {
  .virtual-tour {
    max-width: 700px;
  }
}
.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.word {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  transform-origin: bottom;
}

.common-title {
  font-size: 35px;
  font-weight: 600;
  color: #173456;
  letter-spacing: 2px;
  text-shadow: 0 2px 3px #d0c8c8;
  display: inline-block;
}

.common-title span {
  display: inline-block;
  transform: translateX(100px);
  opacity: 0;
  white-space: pre;
}

.title-sm {
  font-size: 30px;
  text-transform: capitalize;
  position: relative;
  overflow: visible !important;
  margin-bottom: 30px;
  overflow: hidden;
}
.title-sm::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shine1 2s infinite linear;
}
@keyframes shine1 {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}
.title-sm::before {
  position: absolute;
  content: "";
  background-image: url(../img/shape-4.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 210px;
  height: 21px;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

@keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}
.common_btn {
  transition: all ease 0.5s;
  padding: 10px 20px 10px 20px;
  color: #fff;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #173456;
  z-index: 1;
  border: 0;
  font-weight: 600;
  font-size: 16px;
}
.common_btn::before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  z-index: -1;
  height: 100%;
  position: absolute;
  transform: scaleX(0);
  transition: all ease 0.5s;
  background-color: #f9ab03;
}
.common_btn::after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  z-index: -1;
  height: 100%;
  position: absolute;
  transform: scaleX(0);
  transition: all ease 0.5s;
  background-color: #f9ab03;
}

.common_btn:after {
  transform: scaleY(0);
}

.common_btn:hover {
  color: #000;
}

.common_btn:hover:before {
  transform: scaleX(1);
}

.common_btn:hover:after {
  transform: scaleY(1);
}

#lcl_wrap {
  background-color: rgba(26, 79, 139, 0.7490196078);
}

.sitee__footer {
  background: url(../img/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.sitee__footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #173456ba;
  z-index: -1;
}
.sitee__footer .bx-1 {
  padding-right: 20px;
}
.sitee__footer .social ul {
  display: inline-flex;
  gap: 10px;
  margin-top: 10px;
}
.sitee__footer .social ul li a {
  font-size: 18px;
  background-color: #fff;
  color: #173456 !important;
  padding: 5px 10px !important;
  display: inline-block;
}
.sitee__footer .inner-box h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
  /*box-shadow: 0 4px 15px rgba(214, 210, 210, 0.4);*/
  padding: 5px;
  border-bottom: 3px solid #ffffff69;
  display:inline-block;
}
.sitee__footer .inner-box i{
    padding-right:5px;
}
.sitee__footer .inner-box p {
  text-align: justify;
  color: #fff;
}
.sitee__footer .inner-box ul li a {
  display: block;
  color: #fff;
  padding: 5px 0;
}
.sitee__footer .inner-box ul li a:hover {
  padding-left: 10px;
}

.lower__ft {
  padding: 10px;
  background-color: #000;
}
.lower__ft p {
  color: #fff;
}
.lower__ft p a {
  font-weight: bold;
  color: #f9ab03;
}
.lower__ft p a:hover {
  color: #E63946;
}

.master-banner {
  position: relative;
  z-index: 1;
}

.master-banner img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.master-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(22 51 84 / 57%);
}

.master-banner .banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 35px;
  letter-spacing: 1px;
  text-transform: capitalize;
  opacity: 0;
  animation: fadeUp 5s ease-in-out infinite;
  font-weight: bold;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align:center;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
}
.master-page {
  padding: 20px 0;
}

.master-page .center_text h2 {
  font-size: 30px;
  display: inline-block;
  color: #1A1A1A;
}
.master-page .center_text h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shine 2s infinite linear;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.master-page .sidebar-menu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 20px;
}

.master-page .tittle_menu {
  color: #173456;
  font-size: 25px;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

.master-page .sidebar-menu .drop2x {
  position: absolute;
  right: 15px;
  top: 8px;
}

.master-page .sidebar-menu nav ul li:hover .submenu2 {
  max-height: 100%;
  visibility: visible;
  transform: translateY(0);
}

.master-page .sidebar-menu nav ul li a {
    font-size: 14px;
    padding: 8px 11px 8px 30px;
    margin-top:10px;
    color: #0b2d4d;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
    /* border: 1px solid; */
    box-shadow: 0px -6px 5px #ddd;
    /*border-radius:10px;*/
}

.master-page .sidebar-menu nav ul li a::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0b2d4d;
  font-size: 14px;
}

.master-page .sidebar-menu nav ul li a:hover {
  background: #173456;
  color: #ffffff;
  border: 0;
}

.master-page .sidebar-menu nav ul li a:hover::before {
  color: #ffffff;
}
/*
.master-page .sidebar-menu nav ul li a:focus {
  background: #173456;
  color: #ffffff;
  border: 0;
}
*/


.master-page .sidebar-menu nav .active {
  background: #173456;
  color: #ffffff;
  border: 0;
}

.master-page .sidebar-menu nav .active::before {
  color: #ffffff;
}

.master-page .sidebar-menu .submenu2 {
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-20px);
  transition: all 0.3s linear;
}

.master-page .master-content {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  border-radius: 10px;
  overflow:hidden;
}

.master-page .master-content .master-title {
  text-align: center;
}

.master-page .master-content .inner {
  padding: 10px;
  margin: 5px 0;
}

.master-page .master-content .inner p {
  text-align: justify;
  padding: 5px 0;
  color: #1A1A1A;
}

.master-page .table {
  margin-top: 10px;
  color: #1A1A1A;
  background-color: #fff;
  text-align: center;
}

.master-page .table tr,
.master-page .table td,
.master-page .table th {
  border: 1px solid #888888;
}

.master-page .table thead {
  background-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

.master-page .table thead th {
  border-bottom: 0;
}

.master-page .table i {
  font-size: 22px;
  color: #173456;
}

.master-page .table i:hover {
  color: #f9ab03;
}

.master-page .nav-tabs {
  flex-direction: column;
  border: 0;
}

.master-page .nav-tabs .nav-link {
      font-size: 14px;
    padding: 8px 11px 8px 30px;
    margin-top: 10px;
    color: #0b2d4d;
    position: relative;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    font-weight: 500;
    /* border: 1px solid; */
    box-shadow: 0px -6px 5px #ddd;
    /* border-radius: 10px; */
}

.master-page .nav-tabs .nav-link::before {
    font-family: FontAwesome;
    display: inline-block;
    padding-right: 6px;
    padding-left: 10px;
    vertical-align: middle;
    content: "\f101";
    color: #000;
    position: absolute;
    left: 0;
    top: 5px;
}

.master-page .nav-tabs .nav-link:hover {
  background: #173456;
    color: #ffffff;
    border: 0;;
}

.master-page .nav-tabs .nav-link:hover::before {
  color: #ffffff;
}

.master-page .tdesk .in_bx {
  background: #dadada;
  margin-bottom: 10px;
  padding: 10px;
  height: 280px;
  overflow: hidden;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
}

.master-page .tdesk .in_bx img {
  border-radius: 60%;
}

.master-page .tdesk .in_bx h4 {
  font-size: 18px;
  color: #1A1A1A;
  margin-top: 10px;
}

.master-page .tdesk .in_bx p {
  color: #1A1A1A;
  font-size: 14px;
  text-align: center;
  padding-top: 0;
}

.master-page .tdesk .in_bx .dtalis {
  font-size: 16px;
  background: #E63946;
  color: #ffffff;
  padding: 5px 20px;
  display: inline-block;
  margin: 5px;
  border-radius: 15px 0;
}
.master-page .tdesk .in_bx .dtalis:hover {
  background: #f9ab03;
}

.master-page .msub-title {
  font-size: 30px;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 30px;
}
.master-page .msub-title::before {
  position: absolute;
  content: "";
  background-image: url(../img/shape-4.webp);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 210px;
  height: 21px;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.photo-gallery {
  /* 3D Tilt on Hover */
  /* Glow Effect */
}
.photo-gallery .inner {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  border-radius: 10px;
}
.photo-gallery .inner .gal_inner {
  margin-bottom: 10px;
  text-align: center;
  min-height: 250px;
  border: 1px solid #173456;
  background-color: rgb(23 52 86 / 21%);
  transition: all 0.3s linear;
  /*overflow:hidden;*/
}
.photo-gallery .inner .gal_inner:hover p {
  color: #173456;
}
.photo-gallery .inner .gal_inner img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-gallery .inner .gal_inner p {
    padding: 10px 0;
    color: #1A1A1A;
    transition: all 0.3s linear;
    font-weight: 500;
    font-size: 13px;
}
.photo-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  background: #17345638;
  padding: 10px;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 10px;
}
.photo-gallery .gallery-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-gallery .gallery-item:hover {
  transform: rotateY(10deg) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.photo-gallery .gallery-item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.photo-gallery .gallery-item:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.vtour {
  font-size: 25px;
  color: #1A1A1A;
  color: #173456;
}

.close_mod {
  background-color: #173456;
  color: #fff;
  font-size: 16px;
  border: 0;
}
.close_mod:hover {
  background-color: #f9ab03;
}

.event-listing {
  /* Event Item */
  /* Details Box */
  /* Fade-in animation */
}
.event-listing .inner {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  border-radius: 10px;
}
.event-listing .item img {
  height: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-listing .item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}
.event-listing .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.event-listing .item img {
  transition: all 0.5s ease;
}
.event-listing .item:hover img {
  transform: scale(1.05);
}
.event-listing .details-box {
  padding: 20px;
  text-align: left;
}
.event-listing .check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.event-listing .check .left p {
  color: #666;
  font-weight: 500;
}
.event-listing .check .left i {
  color: #173456;
  margin-right: 5px;
}
.event-listing .check .right a:hover {
  color: #f9ab03;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.event-listing .event-slide .item.animated {
  animation: fadeInUp 1s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.principal-desk {
  padding: 30px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fcfcfc;
}
.principal-desk .p-img {
  float: left;
  width: 300px;
  margin: 10px 10px 0 0;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #f9ab03;
  padding: 10px;
  /* acts as the frame thickness */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.principal-desk .p-img img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  display: block;
}
.principal-desk p {
  text-align: justify;
  padding-bottom: 10px;
}
.principal-desk .teach-name {
  font-size: 25px;
  color: #1A1A1A;
  font-style: italic;
}
.principal-desk .subtttl {
  text-align: right;
}

@media (min-width: 576px) {
  .techer-pop .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
  }
}

.techer-pop .topmodal .Right h3 {
  font-size: 25px;
  color: #000;
  font-style: italic;
}

.techer-pop .topmodal .Right P {
  font-size: 20px;
  color: #000;
}

.techer-pop .topmodal .Right h4 {
  font-size: 20px;
  color: #000;
}

.techer-pop .nav-tabs .nav-link {
  font-size: 12px;
  color: #000;
  background-color: #dee2e6;
  font-weight: 600;
}

.user-img {
  border-radius: 50%;
}

.techer-pop .nav-tabs .nav-item.show .nav-link,
.techer-pop .nav-tabs .nav-link.active {
  background-color: #173456;
  color: #ffffff;
}

.techer-pop .nav-tabs {
  border-bottom: 0;
  gap: 5px;
}

.techer-pop .academic-table h3 {
  font-size: 20px;
  color: #000;
  padding: 10px 0;
}

.techer-pop .table {
  font-size: 14px;
  color: #000;
  text-align: center;
}

.techer-pop .table thead {
  background: rgba(0, 0, 0, 0.2);
  color: #000;
  border-bottom: 0;
}

.techer-pop .table tr,
.techer-pop .table td,
.techer-pop .table th {
  border: 1px solid grey;
}

@media screen and (min-width: 991px) {
  /* Sticky on scroll */
  .sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9098039216) !important;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 1s ease forwards;
    z-index: 999;
    padding: 20px;
  }
  .sticky-menu ul.mainNav > li > a {
    padding: 15px 10px;
  }
  /* Slide-down animation */
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}
.loader-mask {
  /* === BEHALA COLLEGE Preloader === */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #173456, #f9ab03);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loader-mask .college-logo {
  width: 100px;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.8);
  animation: logoFade 1.5s ease-in-out infinite;
}
.loader-mask .college-loader {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: fadeText13 1.5s ease-in-out infinite;
}
@keyframes fadeText13 {
  0% {
    opacity: 0;
    letter-spacing: 8px;
  }
  50% {
    opacity: 1;
    letter-spacing: 2px;
  }
  100% {
    opacity: 0;
    letter-spacing: 8px;
  }
}
@keyframes logoFade {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
 

}/*# sourceMappingURL=style.css.map */


 .master-page .events {
  margin-top: 10px;
  box-shadow: 0px 10px 20px 0px rgba(62, 48, 48, 0.42);
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
}
.master-page .events .img img{
    height:200px;
}
.master-page .events .readmore {
  font-weight: bold;
}
.master-page .events .event-txt .title-event {
  font-size: 25px;
  color: #3e4095;
}
.master-page .events .event-txt p {
  padding: 0 !important;
}

/* Overlay */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.search-box {
    width: 60%;
    max-width: 600px;
    border: 2px solid white;
    padding: 10px;
    border-radius: 30px;
    background: transparent; 
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.search-box::placeholder{
    color:#fff;
}
.search-box:focus-visible{
    outline:0;
}

.menu-items {
  margin-top: 30px;
  width: 300px;
}
.menu-items .over-menu-items {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid white;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    text-align: center;
}

.menu-items button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
.contact-modern{
  padding:30px 0;
  background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
}

.contact-glass{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(15px);
  padding:45px;
  border-radius:25px;
  color:#fff;
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.contact-glass h2{
  font-size:34px;
  font-weight:700;
  margin-bottom:5px;
}

.contact-glass p{
  color:#ddd;
  margin-bottom:30px;
}

.info-card{
  display:flex;
  gap:15px;
  background:rgba(255,255,255,0.15);
  padding:18px;
  border-radius:15px;
  margin-bottom:15px;
  transition:.4s;
}

.info-card:hover{
  transform:translateX(10px);
  background:rgba(255,255,255,0.25);
}

.info-card i{
  font-size:22px;
  background:#173456;
  color:#fff;
  width:45px;
  height:45px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.info-card span{
  font-size:13px;
  color:#ccc;
  display:block;
}

.info-card a,
.info-card p{
  color:#fff;
  font-size:15px;
  margin:0;
  text-decoration:none;
}

.map-frame{
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.5);
}
.custom-modal-header{
    background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
    color:#fff;
    border-radius: 8px 8px 0 0;
}

.contact-card{
    border:1px solid #e3e3e3;
    border-radius:10px;
    padding:20px;
    background:#f9fbff;
}

.contact-card h5{
    color:#1d3557;
    font-weight:600;
}

.contact-card p{
    margin:0;
    color:#555;
}

.custom-close{
    background:#fff;
    border-radius:50%;
    padding:6px 10px;
    font-size:18px;
    border:none;
}
.btn-directory{
    width:100%;
    color:#fff;
    font-size:18px;
    font-weight:600;
    border-radius:50px;
    margin-top:20px;
    background:linear-gradient(135deg,#173456,#f9ab03);
    border:2px solid #fff;
    padding:10px 15px;
    letter-spacing:.5px;
    transition:all .3s ease;
    box-shadow:0 6px 15px rgba(0,95,115,.35);
    position:relative;
    overflow:hidden;
}

/* Hover Effect */
.btn-directory:hover{
    background:linear-gradient(135deg,#f9ab03,#173456);
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,95,115,.45);
    color:#fff;
}
.modal-title{
    font-size:20px;
}

/* Shine Effect */
.btn-directory::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.3),transparent);
    transition:.5s;
}

.btn-directory:hover::before{
    left:100%;
}

/* Active */
.btn-directory:active{
    transform:scale(.97);
}

.modal-footer{
    border-top:0;
}


/* =========================
   GENERAL STYLES
========================= */

/* Reset list styles */
.yellow-menu,
.yellow-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Parent menu items (desktop horizontal) */
.yellow-menu > li {
    display: inline-block;
    position: relative;
    margin-right: 5px;
}

/* Parent buttons */
.yellow-menu > li > a.btn {
    display: inline-block;
    padding: 8px 14px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

/* =========================
   CHILD MENUS
========================= */

/* Dropdown hidden by default */
.custom-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffc107;
    z-index: 9999;
    padding: 0;
}

/* Child items stacked */
.custom-dropdown-menu li {
    display: block;
}

/* Child links */
.custom-dropdown-menu li a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    width: 100%;
}

.custom-dropdown-menu li a:hover {
    background: #e0a800;
}

/* Nested submenu */
.custom-dropdown-submenu {
    position: relative;
}

.custom-dropdown-submenu > .custom-dropdown-menu {
    display: none;
    position: relative;
    margin-left: 15px;
}

/* =========================
   DESKTOP HOVER SUPPORT
========================= */
@media (min-width: 992px) {

    /* Hover dropdown open */
    .custom-dropdown:hover > .custom-dropdown-menu {
        display: block;
    }

    .custom-dropdown-submenu:hover > .custom-dropdown-menu {
        display: block;
    }
}

/* =========================
   MOBILE RESPONSIVE (Click Open)
========================= */
@media (max-width: 991px) {

    /* Override bootstrap flex */
    .yellow-menu.d-flex {
        display: block !important;
        width: 100% !important;
    }

    /* Main menu vertical */
    .yellow-menu > li {
        display: block !important;
        width: 100% !important;
        margin-bottom: 6px;
    }

    /* Parent button full width */
    .yellow-menu > li > a.btn {
        width: 100% !important;
        display: block !important;
        text-align: left;
        background: #ffc107;
        padding: 12px;
        border-radius: 6px;
    }

    /* Dropdown hidden until click */
    .custom-dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100%;
        margin-left: 15px;
        background: #fff3cd;
    }

    /* Show dropdown when active */
    .custom-dropdown.active > .custom-dropdown-menu {
        display: block !important;
    }

    /* Nested submenu click */
    .custom-dropdown-submenu.active > .custom-dropdown-menu {
        display: block !important;
    }
}


figure {
    margin:auto;
}

.inner-boxevnt {
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    overflow: hidden;
    padding: 15px;
    transition: box-shadow 0.2s ease;
    min-height: 530px;
    margin-top: 10px;
}

/* Light professional hover */
.inner-boxevnt:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Image */
.inner-boxevnt img {
   width: 100%;
    height: 400px;
    /* object-fit: cover; */
    border-radius: 4px;
    margin-bottom: 12px;
    object-fit: cover;
    object-position: top;
}

/* Title */
.inner-boxevnt h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2d3d;
}

/* Description */
.inner-boxevnt.card-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* View details */
.inner-boxevnt .right a {
    display: inline-block;
    font-size: 14px;
    color: #1f4fd8;
    text-decoration: none;
    font-weight: 500;
}

.inner-boxevnt .right a i {
    font-size: 12px;
    margin-left: 4px;
}

.inner-boxevnt .right a:hover {
    text-decoration: underline;
}

/* Registration link */
.inner-boxevnt .reg a {
    display: inline-block;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 4px;
    background: #1f4fd8;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
.signature-overlay{
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
}

.inner-boxevnt .reg a:hover {
    background: #173db3;
}
.iso_logo{
    display:inline-block;
    padding-top:28px;
}
.iso_logo img{
    width:85px;
}


/* Floating Wrapper */
.fab-menu{
    position:fixed;
    bottom:5%;
    right:5%;
    z-index:999;
}

.fab-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#173456;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#fff;
    cursor:pointer;
    position:relative;
    z-index:10;
    box-shadow:0 8px 18px rgba(0,0,0,0.25);
}

/* Perfect Pulse Ring */
.fab-btn::before,
.fab-btn::after{
    content:"";
    position:absolute;
    inset:-6px; /* little outside ring */

    border-radius:50%;

    border:2px solid rgba(23,52,86,0.4);

    animation:whatsappPulse 1.6s cubic-bezier(0.4,0,0.2,1) infinite;
}

/* Second Wave */
.fab-btn::after{
    animation-delay:0.8s;
}

/* WhatsApp Perfect Pulse */
@keyframes whatsappPulse{
    0%{
        transform:scale(0.85);
        opacity:0.8;
    }
    50%{
        transform:scale(1.25);
        opacity:0.35;
    }
    100%{
        transform:scale(1.65);
        opacity:0;
    }
}

.fab-btn:hover{
    animation: none;
}

.fab-btn:hover::before{
    animation: none;
}

.fab-btn i{
    font-size:20px;
}

/* Links Container */
.fab-links{
    position:absolute;
    bottom:75px;
    right:0;
    width:300px;
    background:white;
    border-radius:18px;
    padding:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    height:50vh;
    overflow-y:scroll;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:0.4s ease;
}

/* Show Menu */
.fab-menu.active .fab-links{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.fab-menu.active .fab-btn{
    transform:rotate(45deg);
    background:#173456;
    color:#fff;
}

/* Main Links */
.fab-links a,
.submenuql-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px;
    margin:6px 0;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    color:#111827;
    background:#f3f4f6;
    cursor:pointer;
    transition:0.3s;
}

.fab-links a:hover,
.submenuql-btn:hover{
    background:#173456;
    color:white;
}

/* submenuql Box */
.submenuql{
    display:none;
    padding-left:10px;
    margin-top:5px;
     transition:0.3s;
}

.submenuql a{
    font-size:14px;
    padding:10px;
    background:#e5e7eb;
}

.submenuql a:hover{
    background:#173456;
    color:white;
}

/* Arrow */
.arrow{
    font-size:14px;
    transition:0.3s;
}

.submenuql-open .arrow{
    transform:rotate(90deg);
}

/* Mobile Responsive */
@media(max-width:500px){
    .fab-links{
        width:190px;
    }
    .fab-links a,
    .submenuql-btn{
        font-size:14px;
    }
}
figure.table {
    width: 99%;
    overflow-x: auto;
    font-size: 14px;
    /* Hide scrollbar (Firefox) */
    scrollbar-width: none;
}

/* Hide scrollbar (Chrome, Edge, Safari) */
figure.table::-webkit-scrollbar {
    display: none;
}