@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans: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");
:root {
  --gradient: linear-gradient(120deg, #00081c 0%, #0035a3 100%);
  --blue: #1e90ff;
  --white: #ffffff;
  --body-font: "Roboto", sans-serif;
  --heading-font: "Yantramanav", sans-serif;
  --theme-color: #1a1926;
  --theme-color2: #FDA31B;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #012758;
  --footer-bg2: #1a1926;
  --footer-text-color: #F5FAFF;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  background: #f2f3f5 url(../images/bg2.png);
}

.top_nav {
  background: #182b49;
  color: #fff;
  font-size: 0.9em;
}
.top_nav ul {
  margin: 0;
  padding: 0;
}
.top_nav ul li {
  display: block;
  color: #fff;
  font-size: 0.9em;
}
.top_nav ul li .warnin {
  background: #ffc107;
  color: #000000;
}
.top_nav ul li .active {
  background: rgba(23, 163, 184, 0.355);
}
.top_nav ul li a {
  color: #fff;
  display: block;
  padding: 0.2em 0.5em;
}
.top_nav ul li a:hover {
  background: rgba(23, 163, 184, 0.355);
  color: #fff;
}

.top-header {
  background: #fff url("../images/header-right.png") no-repeat right;
  background-size: contain;
}

.menu_stl {
  margin: 0;
  line-height: 1.8em !important;
}

@media screen and (min-width: 992px) {
  .menu_stl {
    background: #a70019 !important;
  }
  .menu_stl .nav-link {
    color: #fff;
  }
  .navbar {
    padding: 0;
    line-height: 3rem;
  }
  .navbar .dropdown-menu {
    line-height: initial;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover > .dropdown-menu,
  .dropend:hover > .dropdown-menu {
    display: block;
  }
  .dropdown:hover > .dropdown-menu {
    margin-top: -0.5rem;
  }
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: -0.5rem;
    left: 100%;
    margin-left: 0;
  }
  .dropend .dropdown-toggle::after {
    left: calc(100% - 15px);
    top: 40%;
    background: none !important;
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.3s ease-in-out;
  }
  /* Nested dropdowns (dropend) on hover */
  .dropdown-menu .dropend:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 100%;
    animation: fadeIn 0.3s ease-in-out;
  }
  /* Hide dropdowns by default */
  .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
  }
  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.dropdown-item {
  position: relative;
  color: #212529;
  padding-bottom: 0.4rem;
  transition: color 0.3s ease;
  text-decoration: none;
  line-height: 1.7em;
}

.dropdown-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: rgba(109, 109, 109, 0.2);
  transition: width 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #343a40;
}

.dropdown-item:hover::after,
.dropdown-item:focus::after {
  width: 100%;
}

.highlight::after {
  content: url("../images/newicon.png");
  margin-left: 5px;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.blinking-text {
  animation: blinker 1s linear infinite;
}

.styled-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.styled-list ul li {
  display: block;
}
.styled-list ul li a {
  position: relative;
  display: block;
  padding: 5px 0.2em;
  border-bottom: #eee 1px solid;
  color: #343a40;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}
.styled-list ul li a span, .styled-list ul li a {
  position: relative;
  z-index: 2;
}
.styled-list ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #0d6efd;
  transition: width 0.3s ease;
  z-index: 1;
}
.styled-list ul li a:hover::before {
  width: 100%;
}
.styled-list ul li a:hover {
  color: #fff;
}

.importantlink {
  padding: 2em 0;
}
.importantlink ul {
  margin: 0;
  padding: 0;
}
.importantlink ul li:nth-child(1) {
  background: #6f42c1;
}
.importantlink ul li:nth-child(2) {
  background: #6c757d;
}
.importantlink ul li:nth-child(3) {
  background: #28a28b;
}
.importantlink ul li:nth-child(4) {
  background: #eda12e;
}
.importantlink ul li:nth-child(5) {
  background: #75221c;
}
.importantlink ul li:nth-child(6) {
  background: #cd367a;
}
.importantlink ul li:nth-child(7) {
  background: #6c757d;
}
.importantlink ul li:nth-child(8) {
  background: #be67d9;
}
.importantlink ul li:nth-child(9) {
  background: rgba(28, 117, 35, 0.8901960784);
}
.importantlink ul li:nth-child(10) {
  background: #9e9e9e;
}
.importantlink ul li:nth-child(11) {
  background: #ff0c0c;
}
.importantlink ul li {
  display: flex;
  border: 2px solid rgba(0, 0, 0, 0);
  background: #182b49;
  flex-grow: 1;
  text-align: center;
  border-radius: 12px;
  transition-duration: 0.3s;
  padding: 0.8em 1em;
  justify-content: center;
}
.importantlink ul li a {
  color: #fff;
  display: block;
  transition-duration: 0.3s;
  text-align: center;
  font-size: 13px;
}
.importantlink ul li a img {
  width: 44px;
  margin: 0 auto;
  filter: brightness(0) invert(100);
  display: block;
}
.importantlink ul li:hover {
  background: #fff;
  border-color: #343a40;
}
.importantlink ul li:hover a {
  color: #343a40;
}
.importantlink ul li:hover a img {
  filter: contrast(100%) saturate(96%) brightness(283%);
}

.importantlink {
  padding: 2em 0;
}
.importantlink .row {
  /* Light Blue */
  /* Bright Red */
  /* Fresh Green */
  /* Purple */
  /* Yellow */
  /* Dark Blue-Grey */
  /* Teal */
}
.importantlink .row .col-md-2:nth-child(1) a {
  background: #6f42c1;
}
.importantlink .row .col-md-2:nth-child(2) a {
  background: #6c757d;
}
.importantlink .row .col-md-2:nth-child(3) a {
  background: #28a28b;
}
.importantlink .row .col-md-2:nth-child(4) a {
  background: #eda12e;
}
.importantlink .row .col-md-2:nth-child(5) a {
  background: #75221c;
}
.importantlink .row .col-md-2:nth-child(6) a {
  background: #cd367a;
}
.importantlink .row .col-md-2:nth-child(7) a {
  background: #6c757d;
}
.importantlink .row .col-md-2:nth-child(8) a {
  background: #be67d9;
}
.importantlink .row .col-md-2:nth-child(9) a {
  background: rgba(28, 117, 35, 0.8901960784);
}
.importantlink .row .col-md-2:nth-child(10) a {
  background: #3498db;
}
.importantlink .row .col-md-2:nth-child(11) a {
  background: #e74c3c;
}
.importantlink .row .col-md-2:nth-child(12) a {
  background: #2ecc71;
}
.importantlink .row .col-md-2:nth-child(13) a {
  background: #9b59b6;
}
.importantlink .row .col-md-2:nth-child(14) a {
  background: #f1c40f;
}
.importantlink .row .col-md-2:nth-child(15) a {
  background: #34495e;
}
.importantlink .row .col-md-2:nth-child(16) a {
  background: #16a085;
}
.importantlink .row .col-md-2 {
  text-align: center;
}
.importantlink .row .col-md-2 a {
  color: #fff;
  text-decoration: none;
  background-color: #000000;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  border-radius: 12px;
  padding: 1em;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: auto;
}
.importantlink .row .col-md-2 a span {
  font-weight: bold;
  font-size: 1.5em;
}
.importantlink .row .col-md-2 a img {
  width: 44px;
  filter: brightness(0) invert(100%);
  transition: all 0.3s ease;
}
.importantlink .row .col-md-2:hover a img {
  filter: brightness(0) invert(100%);
}

.banner_style {
  margin: 0;
  padding: 1em 0 0 0 !important;
  background: #ffffff;
}
.banner_style .newsbs {
  background: #e7f0ff !important;
  height: calc(100% - 2px);
}
.banner_style .marquee-box {
  height: calc(100% - 42px);
  max-height: 387px;
  overflow: hidden;
}

.news_marquee {
  background: #3dc6b7;
  padding: 0.5em 0;
  color: #fff;
}
.news_marquee p {
  margin: 0;
  padding: 0;
  color: #fff;
}
.news_marquee a {
  display: block;
  color: #fff;
}
.news_marquee ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1em;
}
.news_marquee ul li {
  display: inline-block;
  color: #fff;
}

.vc_card {
  background: #ffc107;
  transition: background-color 0.3s ease;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.vc_card .vc_img {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: #fff 4px solid;
  margin-bottom: 1em;
  background: #fff;
}
.vc_card .Kulgeet {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: #fff 4px solid;
  margin-bottom: 1em;
  background: #fff;
}
.vc_card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0%;
  width: 100%;
  background: #fff;
  z-index: 0;
  transition: height 0.4s ease;
  border-radius: inherit;
  color: #6f42c1;
}
.vc_card:hover::before {
  height: 100%;
}
.vc_card img.vc_img {
  transition: transform 0.3s ease;
}
.vc_card img.Kulgeet {
  transition: transform 0.3s ease;
}
.vc_card h4,
.vc_card p {
  transition: color 0.3s ease, transform 0.3s ease;
  color: #fff;
}
.vc_card:hover img.vc_img {
  transform: scale(1.05);
  border: #0d6efd 4px solid;
}
.vc_card:hover h4,
.vc_card:hover p {
  color: #6f42c1;
  transform: translateY(-2px);
}

.about_sec {
  margin: 2em 0;
}

.news_bx {
  margin: 0 0 0.8em 0;
  color: #343a40;
}
.news_bx .news_img {
  background: #a70019;
  padding: 4px;
  border-radius: 4px;
  align-items: center;
  vertical-align: middle;
  align-content: center;
}
.news_bx .news_img img {
  height: 40px;
  max-width: 40px;
  filter: brightness(0) invert(100);
}
.news_bx .news_text {
  font-size: 0.8em;
  display: block;
}
.news_bx .news_text .date_st {
  color: #0d6efd;
}
.news_bx:hover {
  color: black;
}
.news_bx:hover .date_st {
  color: #f00;
}

.box_overflow {
  overflow: auto;
  height: 100px;
}
.box_overflow::-webkit-scrollbar {
  width: 16px;
}
.box_overflow::-webkit-scrollbar-track {
  background-color: #f8f9fa;
  border-radius: 10px;
}
.box_overflow::-webkit-scrollbar-thumb {
  border: 5px solid transparent;
  border-radius: 100px;
  background-color: #6f42c1;
  background-clip: content-box;
}
.box_overflow::-webkit-scrollbar-thumb:hover {
  background-color: rgb(88.6693227092, 51.3784860558, 156.6215139442);
}

.btn_link {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn_link span {
  transition: transform 0.3s ease;
}
.btn_link i {
  transition: transform 0.3s ease;
}
.btn_link:hover {
  color: #0d6efd;
}
.btn_link:hover span {
  text-decoration: underline;
}
.btn_link:hover i {
  transform: translateX(5px);
}

.btn_animated {
  display: inline-block;
  color: #333;
  position: relative;
  text-decoration: none;
}
.btn_animated::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #6a5acd;
  transition: width 0.3s ease;
}
.btn_animated:hover::after {
  width: 100%;
}
.btn_animated i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.btn_animated:hover i {
  transform: translateX(5px);
}

.blink_s {
  animation: blink-soft 1s ease-in-out infinite;
}

@keyframes blink-soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.o-programmes {
  padding: 3em 0;
  background: #009688 url("../images/bg2.png");
  color: #fff;
}
.o-programmes .programmes-inn h5 {
  color: #fff;
}
.o-programmes .programmes-inn ul {
  margin: 0;
  padding: 0;
}
.o-programmes .programmes-inn ul li {
  display: block;
  color: #fff;
  line-height: 32px;
}
.o-programmes .programmes-inn ul li a {
  display: inline-block;
  color: #fff;
  position: relative;
  padding-right: 1.2em;
  transition: color 0.3s ease;
}
.o-programmes .programmes-inn ul li a::before {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #000000;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.o-programmes .programmes-inn ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: width 0.3s ease;
}
.o-programmes .programmes-inn ul li a:hover {
  color: #000000;
}
.o-programmes .programmes-inn ul li a:hover::after {
  width: 100%;
}
.o-programmes .programmes-inn ul li a:hover::before {
  opacity: 1;
  right: -1.2em;
}

.recent_activity {
  padding: 3em 0;
}
.recent_activity h4 {
  margin-bottom: 1em;
}

.s_list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}
.s_list ul li {
  width: calc((100% - 40px) / 5);
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.s_list ul li:hover {
  transform: scale(1.05);
}
.s_list ul li img {
  filter: brightness(0) invert(100%);
  height: 50px;
}
.s_list ul li a {
  display: block;
  background: linear-gradient(-45deg, #6f42c1, #0d6efd, #a70019, #f1f1f1);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: #fff;
  padding: 0.9em;
  border-radius: 0em 3em 0em 3em;
  text-decoration: none;
}
.s_list ul li span {
  display: block;
  margin-top: 0.5em;
}

/* Responsive adjustments - update the width calculation accordingly */
@media (max-width: 1024px) {
  .s_list ul li {
    width: calc((100% - 30px) / 4);
  }
}
@media (max-width: 768px) {
  .s_list ul li {
    width: calc((100% - 20px) / 3);
  }
  .image-style-side {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .s_list ul li {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 400px) {
  .s_list ul li {
    width: calc((50% - 10px) / 1);
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.university_diary {
  background: #ff8907 url(../images/bg2.png);
  padding: 2.5em 0;
}
.university_diary h3 {
  text-align: center;
  margin-bottom: 1em;
}

.events_item {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 1em;
  margin-bottom: 25px;
}
.events_item .events-img {
  position: relative;
}
.events_item .events-img img {
  border-radius: 5px;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.events_item .events-img img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  background: var(--color-dark);
  transition: var(--transition);
}
.events_item .events-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  line-height: 50px;
  padding: 0;
  margin: -25px 0 0 -25px;
  background: var(--theme-color2);
  transform: scale(3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}
.events_item .event-meta {
  display: flex;
  gap: 15px;
  margin: 14px 0;
}
.events_item .event-meta i {
  color: var(--theme-color2);
  margin-right: 5px;
}
.events_item .events-title {
  color: #000000;
}
.events_item .events-title a {
  color: #000000;
}

.events_item:hover .events-img::before {
  opacity: 0.5;
  visibility: visible;
}

.events_item:hover .events-img a {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.events_item:hover .events-img a:hover {
  background: var(--color-white);
  color: var(--theme-color2);
}

.video_gallery {
  padding: 2.5em 0;
}
.video_gallery iframe {
  width: 100%;
  height: 250px;
}

.npl_style {
  padding: 2em 0;
}
.npl_style .npl_img {
  text-align: center;
  box-shadow: 3px 3px 10px rgba(107, 107, 107, 0.5490196078);
  border-radius: 100px;
  padding: 0.5em 1em;
  transition: all 0.3s ease;
  background: #fff;
}
.npl_style .npl_img img {
  height: 100px;
  transition: transform 0.3s ease;
  max-width: 100%;
}
.npl_style .npl_img:hover {
  box-shadow: 5px 5px 20px rgba(74, 74, 74, 0.6);
  background-color: #f5f5f5;
}
.npl_style .npl_img:hover img {
  transform: scale(1.05);
}

.clogo_style {
  padding: 2em 0;
}
.clogo_style .c_logo img {
  max-width: 100%;
}

.footer_stl {
  background: #0c2343;
  color: #fff;
  padding: 2.5em 0 0 0;
  position: relative;
  z-index: 1;
  margin: 8em 0 0 0;
}
.footer_stl::before {
  position: absolute;
  background: url(../images/bg.png);
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer_stl .footer_list {
  margin: 0;
  padding: 0;
}
.footer_stl .footer_list li {
  display: block;
  line-height: 25px;
}
.footer_stl .footer_list li a {
  display: inline-block;
  color: #fff;
  position: relative;
  padding-right: 1.2em;
  transition: color 0.3s ease;
  font-size: 0.8em;
}
.footer_stl .footer_list li a::before {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #ffc107;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.footer_stl .footer_list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #ffc107;
  transition: width 0.3s ease;
}
.footer_stl .footer_list li a:hover {
  color: #ffc107;
}
.footer_stl .footer_list li a:hover::after {
  width: 100%;
}
.footer_stl .footer_list li a:hover::before {
  opacity: 1;
  right: -1.2em;
}
.footer_stl .footer-bott {
  border-top: rgba(255, 255, 255, 0.1) 1px solid;
  padding: 1em 0;
}
.footer_stl .container {
  position: relative;
}
.footer_stl .footer-contact-desc {
  margin: 0;
  background: #0c2343;
  text-align: center;
  padding: 35px;
  position: absolute;
  left: 0;
  right: 0;
  margin: -130px auto 0;
  z-index: 111;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}
.footer_stl .footer-contact-desc::before {
  position: absolute;
  background: url(../images/bg.png);
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
}
.footer_stl .footer-contact-desc i {
  font-size: 2em;
  margin-bottom: 0.5em;
}
.footer_stl .footer_b_t {
  padding-top: 100px;
}

@media (max-width: 768px) {
  .footer_stl {
    margin: 0em 0 0 0;
  }
  .footer_stl .footer-contact-desc {
    position: relative;
    margin: 0;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  }
  .footer_stl .footer_b_t {
    padding: 2em 0 0 0;
  }
}
/* FullCalendar container */
#bsb-calendar-1 {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
  min-height: 250px;
  overflow: hidden;
}

/* Event appearance */
.fc-event {
  background-color: #198754;
  /* Bootstrap success green */
  border: none;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Hover effect */
.fc-event:hover {
  background-color: #146c43;
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  cursor: pointer;
}

/* Calendar title */
.fc-toolbar-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
}

/* Navigation buttons */
.fc .fc-button {
  background-color: #0d6efd;
  border: none;
  color: #fff;
  font-weight: 500;
  border-radius: 0.25rem;
  padding: 6px 12px;
  transition: background-color 0.2s ease;
}

.fc .fc-button:hover,
.fc .fc-button:focus {
  background-color: #0b5ed7;
  outline: none;
}

/* Active button state */
.fc .fc-button-primary:not(:disabled).fc-button-active {
  background-color: #0b5ed7;
}

/* Day cell styling (optional) */
.fc-daygrid-day-frame {
  padding: 8px;
  min-height: 100px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #bsb-calendar-1 {
    padding: 10px;
  }
  .fc-toolbar-title {
    font-size: 1.25rem;
  }
  .fc .fc-button {
    padding: 4px 8px;
    font-size: 0.875rem;
  }
  .fc-daygrid-day-frame {
    min-height: 80px;
  }
}
/* Optional Bootstrap tooltip support */
.tooltip-inner {
  background-color: #212529;
  color: #fff;
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 4px;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #212529;
}

#backToTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 5px;
}

#backToTopBtn:hover {
  background-color: #555;
}

.footer-share {
  text-align: center;
}

.footer-share ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.footer-share ul li {
  display: block;
}
.footer-share ul li a {
  font-size: 13px;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease 0s;
  background: rgba(255, 255, 255, 0.15);
}
.footer-share ul li a:hover {
  background-color: #ff3115;
  color: #ffffff;
}

.page_style .page_banner {
  background: #fff;
  padding: 2em 0;
  text-align: center;
  margin-bottom: 2em;
}
.page_style .img_page {
  margin-bottom: 1em;
  max-width: 100%;
}
.page_style p {
  text-align: justify;
  color: #000000;
}

.marquee_s {
  height: calc(100% - 82px);
  min-height: 350px;
  max-height: 270px;
}

.img_page {
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .img_page {
    float: left;
    margin-right: 1em;
    max-width: 400px;
  }
  .sticky_top {
    top: 70px;
  }
}
.page_header {
  background: #fff;
  background-size: cover;
  padding: 1.5em 0 0.1em 0;
  font-size: 0.8m;
  z-index: 1;
  position: relative;
}
.page_header h1 {
  font-size: 2em;
  font-weight: bold;
}

.page_inn {
  background: #fff;
  padding: 1em;
  border-radius: 0.5em;
  text-align: justify;
  margin-bottom: 1em;
}
.page_inn .page_list {
  margin: 0;
  padding: 0;
}
.page_inn .page_list li {
  display: block;
  line-height: 2.5em;
}
.page_inn .page_list li a {
  display: inline-block;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
}
.page_inn .page_list li a i {
  color: #f00;
}
.page_inn .page_list li a::before {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #f00;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.page_inn .page_list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f00;
  transition: width 0.3s ease;
}
.page_inn .page_list li a:hover {
  color: #f00;
}
.page_inn .page_list li a:hover::after {
  width: 100%;
}
.page_inn .page_list li a:hover::before {
  opacity: 1;
  right: -1.2em;
}

.verse {
  margin-bottom: 30px;
  background-color: #fffaf0;
  border-left: 6px solid #800000;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  color: #2e3b55;
  font-weight: bold;
  font-size: 1.25em;
}

.verse:last-child {
  margin-bottom: 0;
}

.credit {
  text-align: right;
  margin-top: 40px;
  font-style: italic;
  color: #6b4d3b;
  font-weight: bold;
}

.iframe_map {
  margin-top: 2em;
  border-top: #a70019 4px solid;
}
.iframe_map iframe {
  width: 100%;
}

@media (min-width: 768px) {
  .iframe_map {
    margin-bottom: -9em;
  }
}
.owl-carousel .owl-stage {
  display: flex;
}

.owl-carousel .owl-item {
  display: flex;
  height: auto !important;
}

.owl-carousel .item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.events_item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.owl_item_f {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
}

.img_gallery {
  width: 100%;
  height: 190px;
}

.i_link_page {
  margin: 0;
  padding: 0;
}
.i_link_page li {
  display: block;
  padding: 0.7em 0;
}
.i_link_page li:last-child {
  border-bottom: 0;
}
.i_link_page li a {
  display: inline-flex;
  gap: 0.8em;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
}
.i_link_page li a i {
  color: #f00;
  display: block;
  margin-top: 4px;
  font-size: 1.5em;
}
.i_link_page li a::before {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #f00;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.i_link_page li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f00;
  transition: width 0.3s ease;
}
.i_link_page li a:hover {
  color: #f00;
}
.i_link_page li a:hover::after {
  width: 100%;
}
.i_link_page li a:hover::before {
  opacity: 1;
  right: -1.2em;
}

@media screen and (max-width: 1400px) {
  .banner_style .carousel-item img {
    height: 65vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner_style .newsbs {
    height: calc(65vh - 2px);
  }
  .banner_style .marquee-box {
    height: calc(100% - 55px);
    max-height: 48vh;
  }
  .nav-link {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  .banner_style .carousel-item img {
    height: auto;
  }
}
.ImportantLinks {
  margin: 0;
  padding: 0;
}
.ImportantLinks li {
  display: block;
  padding: 0.2em 0;
}
.ImportantLinks li a {
  display: inline-flex;
  line-height: 22px;
  gap: 0.5em;
  color: #000000;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.9em;
}
.ImportantLinks li a i {
  color: #f00;
  display: block;
  margin-top: 2px;
}
.ImportantLinks li a::before {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  color: #f00;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.ImportantLinks li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #f00;
  transition: width 0.3s ease;
}
.ImportantLinks li a:hover {
  color: #f00;
}
.ImportantLinks li a:hover::after {
  width: 100%;
}
.ImportantLinks li a:hover::before {
  opacity: 1;
  right: -1.2em;
}

.RecentImg {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=styles.css.map */