@font-face {
  font-family: 'robotoRegular';
  src: url(../font/Roboto-Regular.ttf);
}

:root {
  --primary-light: rgba(43, 70, 71, 0.09);
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --transition: all .5s ease-in-out;
  --border-white-color: rgba(255, 255, 255, 0.08);
  --black: black;
  --white: white;
  --theme-bg-light: #F2F3F5;
  --primary: #2b4647;
  --secondary: #f59e1c;
  --third: #b3a065;
  --fived: #5e9831;
}

body,
html {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  margin: 0;
}

::selection {
  background-color: var(--primary);
  color: var(--secondary);
}

p {
  line-height: 24px !important;
  text-align: justify !important;
  color: var(--primary);
  letter-spacing: 1px;
}

ul {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

li::marker {
  color: var(--primary);
}

/* table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border: 2px solid var(--primary);
} */

/* Prevent Lenis Library when Modal Pop up Occurred */
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.text-white {
  color: #fff;
}

.text-green {
  color: #2a4747;
}

/* header start */
.logo {
  width: 5.5%;
}

header {
  position: fixed;
  z-index: 100;
  top: 0px;
  transition: all 0.5s linear;
  /* display: none; */
}

header.is-sticky {
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0px;
  z-index: 1000;
  animation: fadeInOut 0.5s linear normal;
}

.whitelogo,
.darklogo {
  /* padding-top: 10px; */
  width: 110px;

  transition: all 500ms ease;
}

header.is-header .whitelogo {
  display: none;
  transition: all 500ms ease;
}

header.is-sticky .whitelogo {
  width: 100px;
  transition: all 500ms ease;
}

header.is-sticky .darklogo {
  display: none;
  transition: all 500ms ease;
}

header.is-sticky .nav-list>li,
header.is-sticky .nav-list>li>a,
header.is-sticky .nav-list>li>a>i {
  color: var(--primary);
  animation: fadeInOut 0.5s linear normal;

}

header.is-sticky .nav-icon span {
  background-color: var(--primary);
}

header.is-sticky .nav-list li:hover,
header.is-sticky .nav-list>li:hover>a,
header.is-sticky .nav-list>li:hover>a>i {
  color: var(--secondary) !important;
  cursor: pointer;

}

/* btn start */
nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 0 25px;
}

/* nav icons start */
.nav-icon {
  width: 30px;
  height: 30px;
  position: relative;
  align-content: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: auto;
}

.nav-icon span {
  width: 80%;
  height: 3px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  margin: 5px auto;
  display: block;
  background-color: var(--white);
}

.active-tab,
header.is-sticky .nav-list>li .active-tab {
  color: var(--secondary) !important;
}

.nav-icon.active {
  position: relative;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-icon.active span {
  position: absolute;
  transition: all 0.3s ease;
  top: 50%;
  left: 0%;
  margin: 0px;
  transform: translate(-50%, -50%);
}

.nav-icon.active span:nth-of-type(1) {
  transform: rotate(45deg);

}

.nav-icon.active span:nth-of-type(2) {
  transform: rotate(0deg);
  display: none;

}

.nav-icon.active span:nth-of-type(3) {
  transform: rotate(-45deg);
}

/* nav icons end */
.nav-list {
  max-height: 100vh;
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.nav-list>li {
  max-height: 100%;
  align-content: center;
  padding: 35px 8px;
  position: relative;
  transition: all 300ms ease-in-out;
}

.nav-list>li>a {
  text-transform: capitalize;
  padding: 10px 0;
}

.nav-list>li,
.nav-list>li>a,
.nav-list>li>a>i {
  color: var(--white);
}

.nav-list>li>a>i {
  font-size: 0.8rem;
}

.nav-list li:hover,
.nav-list>li:hover>a,
.nav-list>li:hover>a>i {
  color: var(--secondary) !important;
  cursor: pointer;

}

/* nav sublist */

.nav-list>li>ul {
  max-width: max-content;
  min-width: 200px;
  position: absolute;
  top: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--white);
  display: none;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.nav-list>li>ul>li {
  /* border-left: 3px solid var(--primary); */
  border-left: 3px solid transparent;
}


.nav-list>li>ul>li>a {
  padding: 12px;
  display: block;
  text-transform: capitalize;
  color: var(--primary);
  text-wrap-mode: nowrap;
}

.nav-list>li>ul>li:hover>a {
  color: var(--white);
}

.nav-list>li>ul>li:hover,
.nav-list>li>ul>li:active {
  border-left: 3px solid var(--secondary);
  background-color: var(--primary);
  color: var(--white);
}

.nav-list>li.active>ul {
  top: 69px;
  left: 0;
  display: block;
  animation: fadedown 0.3s linear normal;
}

@keyframes fadedown {
  from {
    opacity: 0;
    z-index: 1;
    transform: translateY(-20px);
  }
}

nav .theme-btn {
  padding: 14px;
}

/* header end */



/* slider section */

#slider-section .col-12 {
  padding: 0px;
}

#slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
}

.swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  background-color: var(--primary);
  touch-action: pan-y;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

/* .myTeam {
  overflow: unset;
} */
/* .myTeam .swiper-wrapper {
  overflow: hidden;
} */

.swiper-slide {
  position: relative;
  width: 100%;
  /* z-index: 1; */
}

/* Modal Start */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999999;
  margin: 0 auto;
}

.modal-content {
  background-color: #fefefe;
  padding: 20px;
  border: 1px solid #888;
  max-width: 80%;
  margin: 0 auto;
  max-height: 90vh;
  margin-top: 5vh;
  overflow: auto;
  width: 100%;
  max-width: 100%;
}

.modal-content.staff-modal {
  margin: 25vh auto 0 auto;
  height: 50vh;
}

.modal.show {
  display: block;
}

/* 
.close {
  color: #2b464780;
  float: right;
  font-size: 40px;
  font-weight: normal;
  text-align: right;
} */
.close {
  color: #2b464780;
  background: #f2f2f2;
  padding: 5px;
  text-align: center;
  float: right;
  font-size: 28px;
  font-weight: normal;
  text-align: center;
  display: inline-block;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 24px;
  border-radius: 30px;
}

.close:hover,
.close:focus {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

/* Modal End */

.content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: max-content;
  color: #f2f2f2;
  text-align: center;
  padding: 20px;
  opacity: 1;
  /* gap: 50px; */
  z-index: 2;
  /* justify-content: space-between; */
}

.content h1 {
  color: var(--secondary) !important;
}

#banner .content {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* #banner .banner-object {
  height: 250px;
  width: 40%;
  border-radius: 0px 0px 30% 0px;
  background-color: var(--primary);
  position: absolute;
  top: -100px;
  left: -50px;
} */

.content h1 {
  margin-bottom: 30px;
  text-transform: uppercase;
  opacity: 0;
  color: var(--yellow);
}

#banner .content p {
  text-align: center;
}

.content p {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 0px;
  opacity: 0;
  color: var(--white);
  text-transform: capitalize;
  text-align: center !important;
  line-height: 1.6 !important;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes animatedUpDown {
  0% {
    top: 0%;
  }

  50% {
    top: 50%;
  }

  100% {
    top: 0%;
  }
}

.swiper-slide-visible .content {
  opacity: 1;
}

.swiper-slide-visible .content h1 {
  animation: moveDown 0.8s ease-in forwards;
}

.swiper-slide-visible .content p {
  animation: moveDown 1.5s ease-in forwards;

}

@keyframes moveDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  clip-path: circle(71%);
  /* Default to final state */
  filter: brightness(90%);
  overflow: hidden;
  opacity: 1;
}

.background::before {
  height: 100%;
  width: 100%;
  position: absolute;
  content: '';
  background-color: rgba(0, 0, 0, 0.308);
}

.background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Animation for initial load only */
.background.initial-load {
  clip-path: circle(5%);
  /* Initial state for animation */
  opacity: 0;
  animation: resizeClipPath 3s ease-in-out forwards;
}

@keyframes resizeClipPath {
  0% {
    clip-path: circle(5%);
    opacity: 0;
  }

  100% {
    clip-path: circle(71%);
    opacity: 1;
  }
}

.scroll-down-btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary);
  z-index: 51;
  font-size: 20px;
  -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
  animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse both;
}

@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  100% {
    -webkit-transform: translate(-50%, -8px);
    transform: translate(-50%, -8px);
  }
}

@keyframes slide-top {
  0% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  100% {
    -webkit-transform: translate(-50%, -8px);
    transform: translate(-50%, -8px);
  }
}

.inquiry-fixed {
  position: absolute;
  left: 50%;
  bottom: 30%;
  z-index: 3;
  transform: translate(-50%, -50%);
}

/* pagination button */
#slider-section .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-pagination-right, 20px);
}

#slider-section .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: auto;
  right: var(--swiper-pagination-right, 20px);
}

#slider-section .swiper-button-next,
#slider-section .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 70%);
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dbbc5b;
}

#slider-section .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 30%);
}

#slider-section .swiper-button-next:after,
#slider-section .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 30px;
  text-transform: none !important;
  letter-spacing: 0;
  rotate: 90deg;
  font-variant: initial;
  line-height: 1;
}



/* pagination bullet */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
}

.slider-container .swiper-pagination-bullet-active {
  height: 32px;
  background-image: linear-gradient(180deg, #f09819 0%, #dbbc5b 100%);
  border-radius: 14px;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 25px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

/* hero section media queries */

@media (max-width: 1200px) {
  .content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .content[data-content="two"],
  .content[data-content="three"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 900px) {

  .content,
  .content[data-content="three"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .content[data-content="two"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .content h1 {
    margin-bottom: 14px;
  }

  .btn {
    padding: 8px 16px;
  }

}

@media (max-width: 790px) {
  .btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }


}

@media (max-width: 660px) {

  .content,
  .content[data-content="two"],
  .content[data-content="three"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }

  .background[data-item="two"] {
    background-position: 40% 50%;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .slider-container .swiper-pagination-bullet-active {
    height: 24px;
  }
}


/* hero section media queries */

@media (max-width: 1200px) {
  .content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .content[data-content="two"],
  .content[data-content="three"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 900px) {

  .content,
  .content[data-content="three"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .content[data-content="two"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .content h1 {
    margin-bottom: 14px;
  }

  .btn {
    padding: 8px 16px;
  }

}

@media (max-width: 790px) {
  .btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }


}

@media (max-width: 660px) {

  .content,
  .content[data-content="two"],
  .content[data-content="three"] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }

  .background[data-item="two"] {
    background-position: 40% 50%;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }

  .slider-container .swiper-pagination-bullet-active {
    height: 24px;
  }
}



/*====================
### Theme button
======================*/
a {
  text-decoration: none !important;
}

img {
  width: 100%;
}

.theme-btn-new {
  font-size: 16px;
  color: var(--white);
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  position: relative;
  border-radius: 12px 12px 12px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--secondary);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn-new:hover {
  background-color: #2a4747;
}


.theme-btn {
  font-size: 16px;
  color: var(--white);
  padding: 16px 20px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  position: relative;
  border-radius: 12px 12px 12px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--secondary);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 400px;
  width: 400px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--white) !important;
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.slider-section .theme-btn {
  margin-top: 30px;
}

/*====================
### Margin & padding
======================*/

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.pd-70 {
  padding: 70px 0;
}

.pd-80 {
  padding: 80px 0;
}

.pd-100 {
  padding: 100px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

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

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mtb-50 {
  margin: 50px 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}



/*====================
### Site title css
======================*/

.site-heading {
  margin-bottom: 20px !important;
  position: relative;
  z-index: 1;
}

.site-heading-before-effect {
  margin-bottom: 50px !important;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  position: relative;
  border-bottom: 2px solid var(--secondary);
  line-height: 2;
  /* padding-bottom: 6px; */
}

.site-title-tagline i {
  line-height: 0;
  font-size: 30px;
  color: var(--secondary);
  padding: 0px 8px 6px 0px;
}


.site-title {
  /* text-transform: capitalize !important; */
  font-size: 24px;
  font-weight: 800 !important;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
  text-transform: uppercase;
}


.site-title span {
  /* font-size: 26px; */
  font-weight: 800;
  color: var(--secondary);
  /* text-transform: capitalize; */
}

.site-heading p {
  margin-top: 15px;
}

.content-info-left {
  margin-right: 30px;
}


.content-info-right {
  margin-left: 30px;
}

/*====================
1. CHAIRMAN's SECTION
======================*/

.chairman-section {
  position: relative;
  background-color: var(--theme-bg-light);
  overflow: hidden;
}

.chairman-section .content-img {
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.chairman-section .content-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--third);
  border-radius: 25px 25px 25px 0;
  transform: rotate(-8deg);
  z-index: -1;
}

.chairman-section .content-img img {
  border-radius: 25px 25px 25px 0;
  width: 100%;
}

.chairman-section .content-list li {
  margin-top: 15px;
  line-height: 1.6px;
}

.chairman-section .content-list i {
  color: var(--third);
  margin-right: 8px;
}

.chairman-section .content-btn {
  margin-top: 40px;
}

.apply-details .content-list li {
  margin-top: 8px;
}

.apply-details .content-list i {
  color: var(--third);
  margin-right: 8px;
}

.gd-name {
  position: absolute;
  font-size: 20px;
  bottom: -15%;
  right: -5%;
  /* background: linear-gradient(0deg, var(--primary), transparent); */
  background: #2b4647ad;
  backdrop-filter: blur(5px);
  color: var(--primary);
  color: #fff;
  padding: 25px;
  border-radius: 5px;
}

.gd-name span {
  color: var(--secondary);
  display: block;
  font-weight: 600;
  font-size: 24px;

}

@media all and (max-width: 991px) {
  .chairman-section .content-img {
    margin-left: 0px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .chairman-section .content-info {
    margin-bottom: 70px;
  }

  .apply-details .details-left {
    margin-bottom: 40px;
  }

.pd-80 {
  padding: 60px 0;
}


}



/*====================
2. WIDGET SECTION 
======================*/

.widget-section {
  position: relative;
  z-index: 1;
  background-color: var(--primary);
}

.widget-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../image/bg-texture.png);
  /* background-repeat: no-repeat; */
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  z-index: -1;
}

.widget-section .site-title {
  color: #fff;
}

.widget-box:nth-child(1) {
  margin-bottom: 20px;
}

.widget-box.bg-none {
  /* background-color: transparent;
  box-shadow: none; */
  cursor: initial;

}

.widget-box {
  padding: 20px;
  /* margin: 10px 0 50px 0; */
  background: var(--white);
  border-radius: 25px 25px 25px 0px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
  z-index: 1;
  cursor: pointer;
  height: 100%;
  min-height: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.widget-box .count {
  position: absolute;
  right: 30px;
  top: 0px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 0.9px var(--third);
  -webkit-text-fill-color: transparent;
}

/* .widget-img{
  width: 60%;
  position: absolute;
  top: -30px;
} */
.widget-icon {
  width: 80px;
  height: 80px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  font-size: 60px;
  background: var(--third);
  /* margin: 0 auto 25px auto; */
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: var(--transition);
}


.widget-box:hover .widget-icon {
  transform: rotateY(360deg);
}

.widget-icon img {
  width: 48px;
  filter: brightness(0) invert(1);
}

.widget-content {
  flex: 1;
}


.widget-title {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.widget-content p {
  color: var(--primary);
  margin: 0;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary);
}

/* 
.widget-section .swiper-wrapper {
  padding: 50px 0;
} */

.widget-section .swiper-slide {
  height: auto;
}

.widget-section .swiper-wrapper {
  margin-bottom: 30px;
}

.widget-section .swiper-horizontal {
  touch-action: pan-y;
  padding: 20px;
}

@media all and (max-width: 1199px) {

  .widget-box.active::before {
    transform: scale(1);
  }
}

.card {
  border-radius: 25px 25px 25px 0;
  border: 2px solid var(--third);
  background-color: var(--primary);
  min-height: 100%;
}

.card:hover {
  border: 2px solid #fff;
  transform: scale(102%) !important;
  transition: var(--transition);
}

.widget-content h4 {
  color: var(--third);
}

.widget-content p {
  color: #fff;
}

.card.sanik-img {
  background-color: #0000;
  box-shadow: none;
  border: none;
}

.sanik-img .widget-img {
  /* height: 150%; */
  width: 55%;
  bottom: 0;
  right: 25%;
}

/*====================
#. WHY US SECTION 
======================*/

.admission-section {
  position: relative;
}

/* .admission-section .site-title {
  padding: 0 15%;
} */

.why-us-left {
  margin-right: 20px;
}

.contact-no {
  color: var(--white);
  transition: 200ms;
}

.contact-no:hover {
  color: var(--primary);
}



/*====================
#. Student about-us-section css 
======================*/

.about-us-section,
.admission-section,
.rti-sectoin,
.result-section,
.duities-responsibility-section,
.event-section {
  position: relative;
  overflow: hidden;
}

.about-us-section .content-img,
.admission-section .content-img,
.rti-section .content-img,
.result-section .content-img,
.duities-responsibility-section .content-img,
.event-section .content-img {
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.about-us-section .content-img::before,
.admission-section .content-img::before,
.rti-section .content-img::before,
.result-section .content-img::before,
.duities-responsibility-section .content-img::before,
.event-section .content-img::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  bottom: -30px;
  width: 80%;
  border: 7px solid var(--secondary);
  border-radius: 25px 25px 25px 0;
  z-index: -1;
}

.about-us-section .content-img img,
.admission-section .content-img img,
.rti-section .content-img img,
.result-section .content-img img,
.duities-responsibility-section .content-img img,
.event-section .content-img img {
  border-radius: 25px 25px 25px 0;
  width: 100%;
}

.about-us-section .content-btn {
  margin-top: 40px;
}

/* About Sec CSS */
.about-img {
  position: relative;
  width: 60%;
  height: 350px;
}

.about-img::after {
  width: 120%;
  height: 120%;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--secondary);
  border-radius: 50%;
}

.about-img::before {
  width: 150%;
  height: 150%;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.about-img img {
  object-fit: cover !important;
  height: 100%;
  border-radius: 50%;
}

.content-counter-box {
  position: relative;
}

.content-counter-box p {
  margin: 0;
}

.content-counter-box::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-1px);
  background-color: #2b464726;
}


.content-counter-box .counter-clone {
  width: 40%;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 20px;
}

.content-counter-box .counter-clone span {
  font-size: 16px;
  font-weight: normal;

}

.content-counter-box .title {
  width: 50%;
  padding: 20px;
  margin: 0;
}


/*====================
 
======================*/

.creative-studio-circles {
  height: auto;
  margin: auto;
  max-width: 705px;
  min-height: 470px;
  position: relative;
  width: 100%
}

.creative-studio-circle {
  bottom: 0;
  left: 50%;
  position: absolute;
  -webkit-transition: 1.5s ease-in;
  transition: 1.5s ease-in
}


.circle-3 {
  width: 450px;
  z-index: 4
}

.circle-3 img {
  background-color: var(--primary);
  clip-path: circle(49% at 50% 50%);
}

.circle-2 {
  width: 360px;
  z-index: 5
}

.circle-2 img {
  background-color: var(--third);
  clip-path: circle(49% at 50% 50%);
}

.circle-1 {
  width: 260px;
  z-index: 6
}

.circle-1 img,
.circle-4 img {
  background-color: #fff;
  clip-path: circle(49% at 50% 50%);
}

.circle-1 .circle-title {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.circle-2,
.circle-4,
.circle-6 {
  -webkit-transform: translateX(-120%);
  transform: translateX(-120%);
  opacity: 0
}

.circle-1,
.circle-3,
.circle-5 {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0
}

.circle-title {
  font-size: 18px;
  left: 50%;
  position: absolute;
  top: 50px;
  text-transform: capitalize;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center !important;
  color: #fff;
  z-index: 1;
}

.creative-studio.is-scrolled .creative-studio-circle {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 1
}

@media (max-width: 420px) {
  .circle-left {
    left: 50px !important
  }

  .circle-right {
    right: 50px !important
  }
}

@media (max-width: 1440px) {
  .creative-studio-title {
    max-width: 476px;
  }

  .creative-studio-container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .creative-studio-title-text {
    font-size: 70px;
  }

  .creative-studio-title-bg {
    bottom: 25px;
    left: -10px;
  }

  .creative-studio-circles {
    -webkit-transform: scale(.7);
    transform: scale(.7);
  }
}

@media (max-width: 1024px) {
  .creative-studio {
    padding-top: 0;
  }

  .creative-studio-title-text {
    font-size: 50px;
  }

  .hero-project-slider {
    bottom: 55px;
  }

  .hero-progress-slider {
    width: 100%;
    height: 7%;
  }

  .count-slider-item {
    display: none !important;
  }

  .hero-col-right {
    padding: 0;
  }

  .creative-studio-circles {
    min-height: 370px;
  }

  .creative-studio-sub {
    font-size: 20px;
  }
}

/* **************************************************** */

.school-routine-list-para {
  padding-left: 25px;
  text-align: left !important;
}


.about-left {
  margin-right: 20px;
}

.about-right {
  position: relative;
  display: block;
}

.chaiman-content {
  padding-bottom: 20px;
}

.about-item {
  position: relative;
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.about-item-icon {
  width: 70px;
  height: 70px;
  line-height: 58px;
  text-align: center;
  margin-bottom: 12px;
  background: var(--secondary);
  border-radius: 50px;
  font-size: 45px;
  color: var(--third);
  box-shadow: -5px 5px 0 var(--primary-light);
}

.about-item-icon img {
  width: 45px;
  filter: brightness(0) invert(1);
}

.about-item-content {
  flex: 1;
}

.about-item-content h5 {
  font-size: 22px;
  margin-bottom: 5px;
}

.about-quote {
  position: relative;
  color: var(--primary);
  padding: 20px 22px;
  background: var(--primary-light);
  border-radius: 25px;
}

.about-quote .fa-quote-left {
  position: absolute;
  font-size: 45px;
  color: var(--third);
  left: 15px;
  top: -20px;
}

.about-quote .fa-quote-right {
  position: absolute;
  font-size: 45px;
  color: var(--third);
  right: 15px;
  bottom: -15px;
}

.about-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}


.about-bottom-mailus {
  display: inline-block;
  margin-top: 30px;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-phone .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  box-shadow: -5px 5px 0 var(--primary-light);
}

.about-phone .number span {
  color: var(--primary);
  font-weight: 600;
}

.about-phone .number h6 {
  font-size: 20px;
  margin: 0;
}

.about-phone .number h6 a {
  color: var(--secondary);
}

.about-phone .number h6 a:hover {
  color: var(--primary);
}

.list-headeing {
  margin-top: 15px;
  color: var(--primary);
  font-size: 16px;
  line-height: 24px !important;
  font-weight: 600;
  letter-spacing: 1px;
}

.content-list li {
  margin-top: 15px;
  color: var(--primary);
  font-size: 16px;
  line-height: 24px !important;
  letter-spacing: 0.5px;
}


@media all and (max-width: 991px) {
  .about-right {
    margin-top: 30px;
  }
}

@media all and (max-width: 767px) {
  .about-item {
    margin-top: 30px;
  }
}

/*====================
# COUNTER SECTION 
======================*/

.counter-area {
  position: relative;
  background-color: var(--theme-bg-light);
  /* background-image: url(../image/Index-page/SRKSS-building-images/View06.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed; */
  z-index: 1;
}

/* .counter-area::before {
  content: "";
  position: absolute;
  background: var(--primary);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .7;
  z-index: -1;
} */
 .logo-box{
  /* background-color: #ffffff; */
  padding: 0px;
 }

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  padding: 25px;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 60px;
  width: 100px;
  height: 100px;
  line-height: 88px;
  color: var(--white);
  background: var(--third);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.counter-box .icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}

.counter-box .icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  transition: var(--transition);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

.counter-box:hover .icon::before {
  left: 0;
  top: 0;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--primary);
  font-size: 40px;
  font-weight: 600;
}

.counter-box .title {
  color: var(--primary);
  margin-top: 5px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}


/*===================
6. Team css 
=====================*/

.team-member-section .swiper {
  margin-bottom: 0;
  padding: 30px 0;
}

.myTeam .swiper-slide.swiper-slide-active {
  position: relative;
}


.myTeam .swiper-slide.swiper-slide-active .team-item {
  transform: scale(1.18);
  border: 2px solid #fff;
  z-index: 2;
}

.myTeam .swiper-slide.swiper-slide-active .team-content {
  bottom: 0;
}

.myTeam .swiper-slide.swiper-slide-active .team-bio h5 a {
  color: var(--secondary);
}

.myTeam .swiper-slide.swiper-slide-active .team-bio {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 9px;
}

.myTeam .swiper-slide.swiper-slide-active .team-bio-head {
  padding: 12px 0;
}

.team-bio {
  position: absolute;
  backdrop-filter: blur(20px);
  top: 87%;
  left: 0;
  right: 0;
  border-radius: 0 0 20px 0;
  transition: .4s ease-in-out;
  z-index: 1;
}

/* .myTeam .swiper-slide.swiper-slide-active .team-bio {
  position: absolute;
  bottom: 50%;
  left: 50%; 
  background: #2b464780;
  z-index: 2;
  transform: translate(-50%, 50%);
  height: 100%;
  width: 100%;
  margin: 0;
} */

.team-member-section {
  position: relative;
  overflow: hidden;
  background-color: var(--theme-bg-light);
}

/* When toggled (clicked) */
.myTeam .swiper-slide.swiper-slide-active .team-bio.bio-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  background: #2b464780;
  z-index: 2;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 15px;
}

a {
  color: var(--primary);
  transition: 300ms;
}

.team-item {
  position: relative;
  background: var(--white);
  margin: 25px 0;
  border-radius: 25px 25px 25px 0;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
  /* box-shadow: rgba(255, 255, 255, 0.19) 0px 6px 30px, rgba(255, 255, 255, 0.23) 0px 2px 12px; */
}

.team-img {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.team-img img {
  overflow: hidden;
}

.team-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2b464738;
}

.team-img img {
  transition: 400ms;
}

.team-bio-head {
  padding: 12px 14px;
  margin: 0 16px;
  border-bottom: 1px solid #ccc;
  transition: all .3s ease-in-out;
  position: relative;
}

.team-bio h5 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: capitalize;
}

.team-bio-i {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.team-bio-i a i {
  font-size: 16px;
  color: var(--secondary);
  margin: 6px 0;
  transition: var(--transition);
}

.team-bio h5 a {
  color: #fff;
  text-shadow: 1px 1px var(--primary);
}

.team-bio span {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.team-bio h5 a:hover {
  color: var(--secondary);
}

.team-bio p {
  padding: 12px 16px;
  margin: 0;
  font-size: 14px;
  line-height: 1.3rem !important;
  color: #FFF;
}

.team-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 30px;
  right: 0px;
  bottom: 0;
  opacity: 0;
  transition: var(--transition);
}


.myTeam .swiper-slide.swiper-slide-active .team-social {
  opacity: 1;
  right: 15px;
}

.team-social a {
  display: block;
  color: var(--secondary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  border-radius: 10px 10px 10px 0;
  background: var(--white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

/*====================
6. Footer css 
======================*/

.footer-area {
  background: var(--primary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  z-index: -1;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 25px;
}

.copyright {
  position: relative;
}

.copyright .copyright-wrapper {
  padding: 25px 0;
  border-top: 1px solid var(--border-white-color);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: var(--white);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--secondary);
}

.copyright .copyright-text {
  color: var(--white);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--secondary);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--white);
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 25px;
  font-size: 21px;
  z-index: 1;
}

.footer-widget-title::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--secondary);
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li a {
  color: var(--white);
  transition: var(--transition);
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--secondary);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: var(--secondary);
}

.footer-widget-box p {
  color: var(--white);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 10px 10px 10px 0;
  background: var(--white);
  color: var(--secondary);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: var(--secondary);
  color: var(--white);
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-contact li a {
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 10px 10px 10px 0;
  background: var(--secondary);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--white);
}

.theme-bg-white .theme-btn {
  width: 100%;
  padding: 14px;
}

.theme-bg-white .theme-btn:hover {
  color: var(--primary) !important;
}

.theme-bg-white .theme-btn::before {
  background: var(--white);
}

.theme-bg-white .theme-btn:hover::after {
  border-color: var(--secondary);
}

@media all and (max-width: 991px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright::before {
    width: 40%;
  }
}


/*====================
*. Scroll top css
======================*/

#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 20px;
  border: none;
  outline: none;
  border-radius: 50%;
  background-color: var(--secondary);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}


#scroll-top:hover {
  background-color: #fff;
}

#scroll-top:hover svg g path {
  transition: var(--transition);
  fill: var(--secondary);
}

#scroll-top:hover svg {
  transition: var(--transition);
  stroke: var(--secondary);
}

#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 20px;
  }
}





/*====================
# Breadcrumb css
======================*/

.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 170px;
  padding-bottom: 150px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #00000024;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 45px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '/';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--white);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--third);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--secondary);
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 230px;
  }
}

.site-breadcrumb-waves {
  overflow: hidden;
  position: relative;
}


/*====================
# LANDING SEC 
======================*/

/* .landing-sec {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}


.landing-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../image/school.png);
  background-color: var(--primary);
  background-size: 100vh;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.landing-sec-content h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin: 0;
  padding: 0 20px;
}

.ls-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #fff;
  margin-top: 20px;
}

.ls-link-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px 5px 5px 0;
  transform: rotateX(0);
}

.ls-sub-link {
  position: relative;
  border: 2px solid var(--primary);
  padding: 20px;
  margin: 10px 0;
  border-radius: 5px;
  background: #ffffff40;
  backdrop-filter: blur(5px);
}

.ls-sub-link.active::after {
  position: absolute;
  content: '';
  right: 10%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--secondary);
  -webkit-animation: beat-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s infinite alternate-reverse both;
  animation: beat-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s infinite alternate-reverse both;
}


@-webkit-keyframes beat-up-center {
  0% {
    -webkit-transform: scaleX(0.5) scaleY(0.5) translateX(0) translateY(-50%);
    transform: scaleX(0.5) scaleY(0.5) translateX(0) translateY(-50%);
  }

  100% {
    -webkit-transform: scaleX(1) scaleY(1) translateX(0) translateY(-50%);
    transform: scaleX(1) scaleY(1) translateX(0) translateY(-50%);
  }
}

@keyframes beat-up-center {
  0% {
    -webkit-transform: scaleX(0.5) scaleY(0.5) translateX(0) translateY(-50%);
    transform: scaleX(0.5) scaleY(0.5) translateX(0) translateY(-50%);
  }

  100% {
    -webkit-transform: scaleX(1) scaleY(1) translateX(0) translateY(-50%);
    transform: scaleX(1) scaleY(1) translateX(0) translateY(-50%);
  }
}

.ls-sub-link.active a {
  color: var(--secondary);
}

.ls-sub-link a {
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 2px 0 var(--primary);
  text-align: left !important;
}

.ls-links a:hover {
  color: var(--secondary);
}

.ls-links p {
  color: #fff;
  text-align: left !important;
}

.landing-sec-image {
  -webkit-animation: vibrate-1 5s linear infinite both;
  animation: vibrate-1 5s linear infinite both;
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  20% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }

  40% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }

  60% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px);
  }

  80% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
} */

/* Sticky Menu Link */

.sticky-menu-link {
  z-index: 10;
  position: fixed;
  min-width: 250px;
  top: 50%;
  right: -200px;
  display: flex;
  flex-direction: column;
  transform: translate(0, -50%);
}

.sticky-menu-link a {
  border-radius: 50px 0 0 50px;
  margin: 2px;
  background: #2b4647;
  backdrop-filter: blur(5px);
  padding: 10px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
  line-height: 30px;
  color: var(--secondary);
}

.sticky-menu-link a:hover {
  transform: translate(-190px, 0px);

}

.sticky-menu-link a:hover i {
  transform: rotate(-360deg);
}

.sticky-menu-link a i {
  float: left;
  background-color: #FFF;
  height: 30px;
  width: 30px;
  line-height: 30px;
  margin-right: 10px;
  color: #000;
  text-align: center;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.sticky-menu-link a i {
  background-color: #FFF;
  color: var(--secondary);
}

/**********************************************************/
/**********************  CONTACT PAGE CSS *****************/
/**********************************************************/

/*===================
#. Contact us css 
=====================*/

/* .contact-wrapper {
  position: relative;
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 15px 0px;
} */

.contact-img {
  position: relative;
  padding-left: 20px;
}

.contact-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: var(--third);
  clip-path: polygon(100% 0, 20% 50%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
}

.contact-img img {
  width: 100%;
  clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 50%, 10% 0);
}

.contact-form {
  padding: 25px;
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
  border-color: var(--secondary);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

/* .contact-content {
  margin-bottom: 50px;
} */

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 35px;
  min-height: 225px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 0;
  border-radius: 25px 25px 25px 0;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 15px;
  transition: var(--transition);
  cursor: pointer;
}

/* .contact-info::before{
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  background: var(--third);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  height: 20px;
  z-index: -1;
} */

.contact-info-icon {
  font-size: 28px;
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
  border-radius: 15px;
  background: var(--third);
}

.contact-info-icon::before {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  top: -15px;
  border: 20px solid var(--third);
  bottom: -15px;
  border-radius: 25px;
}

.contact-info:hover .contact-info-icon::before {
  border: 5px solid var(--third);
  transition: border ease-in-out 0.5s;
}

.contact-info:hover .contact-info-icon {
  transition: ease-in-out 300ms;
  color: var(--third);
  background: transparent;
}

.contact-info h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-info p {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  text-align: center !important;
  margin: 0;
}


/* @media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
} */



/*/////////////// event section start ///////*/
/* .event {
  background-color: var(--theme-bg-light);
} */

.event-img {
  height: 100%;
  max-height: 420px;
}

.event-img img {
  object-position: center;
  object-fit: cover;
  line-height: 1;
}

.daynight {
  margin-left: 20px;
  text-transform: uppercase;
}


.event-wrap>h5 {
  margin-bottom: 30px;
  font-weight: normal;
  text-transform: capitalize;
}

.event-wrap>h5,
.event-wrap>h4 {
  text-align: center;
  text-transform: capitalize;
}

.event-card {
  min-height: 140px;
  display: flex;
  background: var(--bs-white);
  box-shadow: 0px 20px 80px 0px rgba(30, 30, 30, 0.1);
  height: 33.3333333333%;
}

.event-date {
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 190px;
  flex-shrink: 0;
  text-align: center;
  background: var(--primary);
}

.event-date h3 {
  color: var(--bs-white);
}

.event-date p {
  color: var(--bs-white);
  text-transform: capitalize;
  text-align: center !important;
}

.event-detail {
  height: 100%;
  background: var(--bs-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 190px);
  padding: 20px 40px;
}

.event-detail span {
  /* color: var(--fived); */
  color: var(--primary);
}

.event-detail-loc i,
.event-detail-time i {
  color: var(--fived);
}

.event-card:nth-child(even) .event-detail {
  background-color: var(--white);
}

.event-card:nth-child(even) .event-date {
  background-color: #152525;
}

.event-detail>p {
  transition: 0.2s linear;
}

.event-detail>p:hover {
  color: var(--yellow);
}


.about-us-page-section .sec-f-left {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.about-us-page-section .image {
  padding-left: 60px;
}

.about-us-page-section .content-img {
  position: relative;
  z-index: 1;
}

.about-us-page-section .content-img::after {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  bottom: -30px;
  width: 100%;
  border: 7px solid var(--secondary);
  border-radius: 25px 25px 25px 0;
  z-index: -1;
}

.about-us-page-section .content-img img {
  border-radius: 25px 25px 25px 0;
  width: 100%;
}


/* pagination button */

.team-member-section .swiper {
  margin-bottom: 30px;
}

.team-member-section .swiper-button-next,
.team-member-section .swiper-button-prev {
  display: none;
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  border: 1px solid var(--primary);
  z-index: 10;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transform: translate(0, -50%);
  transition: all 300ms ease-in-out;
}

.team-member-section .swiper-button-next:hover,
.team-member-section .swiper-button-prev:hover {
  color: #fff;
  background-color: var(--primary);
}

/* .team-member-section .swiper-button-prev {
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}

.team-member-section .swiper-button-next {
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
} */

.team-member-section .swiper-button-prev {
  left: -60px;
}

.team-member-section .swiper-button-next {
  right: -60px;
}

.team-member-section .swiper-button-next:after,
.team-member-section .swiper-button-prev:after {
  display: none;
  font-family: swiper-icons;
  font-size: 28px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.team-member-section .swiper-horizontal>.swiper-pagination-bullets,
.team-member-section .swiper-pagination-bullets.swiper-pagination-horizontal,
.team-member-section .swiper-pagination-custom,
.team-member-section .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, -10px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.about-vm-section {
  position: relative;
  /* background: var(--primary); */
  background-color: var(--theme-bg-light);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

/* .about-vm-section::before {
  content: "";
  position: absolute;
  background: var(--primary);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  z-index: -1;
} 

.about-vm-section .site-title {
  color: #fff;
}*/

.about-vm-section .cta-content .site-title-tagline {
  /* color: #fff; */
  font-size: 24px;
  /* padding: 10px 12px; */
  /* border-radius: 10px 10px 10px 0; */
  /* background: var(--secondary); */
}

.vm-img {
  width: 100%;
  max-height: 270px;
}

.cta-content {
  position: relative;
  padding: 20px;
  z-index: 1;
  width: 100%;
  /* min-height: 235px; */
}

.vision-box {
  background: var(--primary);
  /* background: #FFF; */
}

.about-vm-section .vision-box .site-title-tagline {
  border-bottom: 2px solid var(--third);
}

.mission-box {
  background: var(--third);
}

.about-vm-section .mission-box .site-title-tagline {
  border-bottom: 2px solid var(--primary);
}

/* .cta-content.vision-box::before,
.cta-content.mission-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
} */


/* .cta-content.vision-box::before {
  border-radius: 25px 25px 0 25px;
}

.cta-content.mission-box::before {
  border-radius: 25px 25px 25px 0;
}

.cta-content.vision-box::after {
  border-radius: 25px 25px 0 25px;
}

.cta-content.mission-box::after {
  border-radius: 25px 25px 25px 0;
} */


/* .cta-content.vision-box::after,
.cta-content.mission-box::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  right: 8px;
  border: 8px double #ccc;
  z-index: -1;
} */

.cta-content h1 {
  color: var(--white);
  font-size: 22px;
}

/* .cta-content.vision-box .site-title-tagline,
.cta-content.vision-box p {
  color: var(--primary);
} */

.cta-content p {
  margin: 0 0 15px 0;
}

/* Mandatory Document SECTION */

.md-item {
  margin: 5px 0;
}

.downloadicon {
  width: 60px;
  float: left;
}

.downloadtext {
  width: calc(100% - 60px);
  float: right;
}

.md-item:hover a {
  color: var(--secondary);
  transition: all 0.3s ease-in-out;
}

.md-item:hover svg path {
  stroke: var(--secondary);
  transition: var(--transition);
}

.md-item a {
  line-height: 1.2;
  display: block;
  text-align: left;
}

/* PRINCIPAL'S DESK SECTION */
.principal-desk-page-section .content-img {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;

  padding: 20px 20px 20px 20px;
}

.principal-desk-page-section .content-img img {

  border-radius: 25px 25px 25px 0;

}

.principal-desk-page-section .content-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  /* background-color: var(--third); */
  background-color: #ffffff;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 25px 25px 25px 0;
  outline: 10px double var(--third);
}

.signature-box {
  position: absolute;
  right: -35%;
  bottom: 3%;
  background: #2a474780;
  backdrop-filter: blur(50px);
  padding: 20px;
  outline: 10px double #2a474780;
  border-radius: 20px 20px 0 20px;
  transition: 200ms;
}

.signature-box p {
  margin: 0;
  color: #ffffff;
}

.signature-box .principal-name {
  font-size: 20px;
}

/* OUR ACHIVEMENTS SECTION */
.our-achivements-page-section {
  background-color: var(--theme-bg-light);

}

.achivement-box {
  background-color: #fff;
  border-radius: 25px 25px 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  /* transition: 1s ease-in-out; */
  transition: all 0.6s;
  padding: 10px 20px;
  border: 1px solid #116E6340;
}

.achivement-box:hover {
  /* background-color: #dbbb5b80; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  cursor: pointer;
}

.content-text b {
  font-size: 16px;
}

.achivement-box .content-text {
  letter-spacing: normal;
  text-align: left !important;
  margin: 0;
}


.achivement-image-wrapper {
  overflow: hidden;
}

.achivement-image {
  position: relative;

}

.achivement-title {
  color: var(--primary);
}

.achivement-image {
  mask-image: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHhtbG5zOnhsaW5rPSdodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rJyB4PScwcHgnIHk9JzBweCcgdmlld0JveD0nMCAwIDEzMTQuNiAxMDk2LjYnIHN0eWxlPSdlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDEzMTQuNiAxMDk2LjY7JyB4bWw6c3BhY2U9J3ByZXNlcnZlJz48Zz48Zz48cGF0aCBkPSdNMTE5NiwzMDcuMmMtMjUuNy0yNC4zLTUxLjEtNDEuOS03Ni4yLTU0LjNjLTI1LTEyLjQtNDkuNy0xOS43LTc0LTIzLjJjLTIzLjEtMy4yLTQ1LjgtMy4yLTY4LjQtMC44IGMtNTcuMyw1LjYtMTA4LjcsMjcuNy0xNjUuOCw0My43Qzc2NiwyODYsNzE3LDI4MS4xLDY4NC4yLDI0NS41Yy0yMi4xLTIwLjctNDEuMS00Ni45LTYyLjQtNjcuMUM1NjUsMTIzLjYsNDkzLjQsODcuOCw0MTYuMyw3NyBjLTIzLjMtMy40LTQ2LjctNC42LTY5LjktMy4zYy02OS41LDMuOC0xMzYuMywyOS4zLTE4Ni4zLDgwLjNDMzkuNywyNzYuNiw0MC42LDQ2My44LDc5LjgsNjE4YzYsMjEuMiwxMy4zLDQyLjIsMjIsNjIuOCBjMTEsMjYuMiwyNC4xLDUxLDM4LjgsNzQuNWMxNC44LDIzLjUsMzEuMyw0NS41LDQ5LjMsNjYuMmM4MC42LDkwLjUsMTg3LjcsMTU3LjEsMzA2LDE4Ni43Yzc4LjEsMTkuNSwxNTkuNCwxOS43LDIzNy41LDMuNiBjMjYuMS01LjQsNTEuOC0xMi41LDc3LTIxLjNDOTU1LDk0MC4zLDEwNzguNiw4NDAuMywxMTYzLjcsNzEyYzY2LjYtOTkuNSwxMjUuMS0yMjUuOCw3Ny4yLTM0Mi45IEMxMjMwLjksMzQ3LDEyMTYuMSwzMjYuMiwxMTk2LDMwNy4yeicvPjwvZz48ZWxsaXBzZSB0cmFuc2Zvcm09J21hdHJpeCgwLjI0NjcgLTAuOTY5MSAwLjk2OTEgMC4yNDY3IDQzNy40NzE4IDg3MC42Njc4KScgY3g9Jzc3OC44JyBjeT0nMTUzLjknIHJ4PSc3My4yJyByeT0nODMuMicvPjxlbGxpcHNlIHRyYW5zZm9ybT0nbWF0cml4KDAuMjc2NCAtMC45NjEgMC45NjEgMC4yNzY0IC0xNTYuOTk1NCAxNjk3LjY5NDMpJyBjeD0nMTA0OC45JyBjeT0nOTUzLjEnIHJ4PSczOC4zJyByeT0nMzMuNycvPjwvZz48L3N2Zz4K);
  mask-repeat: no-repeat;
  mask-position: center;
}

.achivement-box:hover .achivement-image img {
  transform: scale(1.1) rotateZ(-10deg);
  transition: linear .6s;
}


.highlight-text {
  background-color: var(--primary);
  padding: 20px;
  text-align: center;
  border-left: 4px solid var(--secondary);
  border-radius: 25px 25px 25px 0;
  color: var(--white);
  font-size: 16px;
  text-transform: capitalize;
}

.staff-section .highlight-text {
  width: 50%;
  margin: 0 auto;
}

.staff-section .content-text.staff-quote {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0;
}

.staff-section .content-text {
  margin-top: 12px;
  margin-bottom: 0;
}

.team-member-section .content-text.staff-quote {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Nav Tabs CSS */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff !important;
  background-color: var(--primary);
}

.nav-item {
  margin: 10px;
}

.nav-item .site-heading {
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

.nav-pills .nav-link {
  min-width: 230px;
  border-radius: 12px 12px 12px 0;
}

.staff-members-section .nav-item .site-title-tagline,
.all-infra-section .nav-item .site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  position: relative;
  line-height: 2;
  padding-bottom: 6px;
}

.staff-members-section {
  background-color: var(--theme-bg-light);
}

.staff-members-section .nav-pills .nav-link.active .site-title-tagline,
.all-infra-section .nav-pills .nav-link.active .site-title-tagline,
.school-routine-section .nav-pills .nav-link.active .site-title-tagline {
  color: #fff;
}

.staff-members-section .team-bio span {
  font-size: 16px;
  color: var(--primary);
  text-transform: none;
  letter-spacing: normal;
  padding: 0 15px;
}

.staff-item {
  position: relative;
  background: var(--white);
  padding: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
  border-radius: 10px 15px 15px 0;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.staff-item:hover {
  cursor: pointer;
}

.staff-img {
  overflow: hidden;
  border-radius: 25px 25px 0 0;

}

.staff-img img {
  overflow: hidden;
}

.staff-img img {
  border-radius: 25px 25px 0 0;
  transition: 400ms;
}

.staff-img img:hover {
  transform: scale(1.1);
}

.staff-content {
  margin-top: 15px;
  position: relative;
}

.staff-member-name {
  cursor: pointer;
}

.staff-bio h5 {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-weight: bold;
}

.staff-bio span {
  font-size: 12px;
  font-weight: normal;
  color: var(--primary);
  letter-spacing: 1px;
}

.staff-bio h5 a:hover {
  color: var(--third);
}

.staff-social {
  position: absolute;
  margin-bottom: 10px;
  text-align: center;
  top: 50px;
  right: 0px;
  bottom: 0;
  opacity: 0;
  transition: var(--transition);
}

/* .staff-item:hover .staff-social {
  opacity: 1;
  right: 30px;
} */

.staff-social a {
  display: block;
  color: var(--secondary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  border-radius: 10px 10px 10px 0;
  background: var(--white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.staff-social a:hover {
  background: var(--secondary);
  color: var(--white);
}


/* ******************************************************        FACILITY PAGE CSS                 ******************************************************* */


/* ========================
student-life css 
=========================== */

.student-life-section {
  overflow: hidden;
}

.students-activity-blocks {
  margin-top: 50px;
}

.students-activity-blocks>div {
  margin-bottom: 30px;
}

.student-life-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.student-life-img {
  height: 100%;
}

.student-life-img img {
  height: 100%;
  border-radius: 25px 25px 25px 0;
}

.student-life-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.student-life-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  background: var(--secondary);
  border-radius: 25px 25px 25px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.student-life-content:hover::before {
  opacity: 0.8;
  visibility: visible;
  -webkit-animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.student-life-content:hover .activity-name {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.activity-name {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  text-align: center;
  justify-content: center !important;
  color: var(--primary);
  font-weight: 600;
  transition: 0.3s;
  z-index: 3;
}

/* .student-life-content:hover .student-life-link .activity-name {
  opacity: 1;
} */

/***********************
 Co-curricular Activities Section
***********************/
/* .cocurricular-section {
  background-color: var(--theme-bg-light);
} */

.cocurricular-section .content-img {
  padding-right: 30px;
  position: relative;
  z-index: 1;
}

.cocurricular-section .content-img::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  bottom: -30px;
  width: 80%;
  border: 7px solid var(--secondary);
  border-radius: 25px 25px 25px 0;
  z-index: -1;
}

.cocurricular-section .content-img img {
  border-radius: 25px 25px 25px 0;
  width: 100%;
}

.cocurricular-section .site-heading {
  margin-bottom: 20px !important;
}

.cocurricular-section .sec-f-right .heading {
  margin-top: 125px;
}

@media all and (max-width: 991px) {

  .content-img {
    margin-left: 30px !important;
  }

  .content-info {
    margin-bottom: 0px;
    padding: 0 15px;
  }

  .cocurricular-section .content-info {
    margin-bottom: 0px;
    padding: 0 15px;
  }
}


/***********************
 Game & Sport Section 
***********************/

.game-sport-section-heading {
  padding: 80px 0 15px 0;
}

.game-sport-section {
  position: relative;
  overflow: hidden;
}

.game-sport-background {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background-image: url(./assets/image/Facility-page/sports/sport-fields.jpg);
  background-size: cover;
  background-position: center;
  transition: all 0.8s;
}

.game-sport-playground {
  display: flex;
}

.game-sport-box {
  height: 600px;
  border-left: 1px solid rgb(213 223 237 / 46%);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  flex: 1;
}

.game-sport-img img {
  opacity: 0;
  visibility: hidden;
}

.game-sport-content {
  padding: 40px 20px;
  height: 200px;
  flex-shrink: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(115, 103, 86, 0.44) -39.93%, #2b4647e0 72.01%);
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -300px;
  width: 100%;
  transition: all 0.8s;
}


.game-sport-content span {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 20px 0;
}

.game-sport-box:hover .game-sport-content {
  bottom: 0;
}



/***********************
 Game & Sport Section
***********************/

.sec-f-left {
  width: 100%;
}

.sec-f-left .heading,
.sec-f-left .image,
.sec-f-left .content-text,
.sec-f-right .heading,
.sec-f-right .image,
.sec-f-right .content-text {
  width: 50%;
}

.sec-f-left .heading {
  float: left;
  margin-top: 70px;
}

.sec-f-left .image {
  float: right;
  text-align: center;
  /* padding-left: 50px; */
}

.sec-f-left .content-text {
  float: left;
}

.sec-f-right .heading {
  float: right;
  margin-top: 70px;
}

.sec-f-right .image {
  float: left;
  text-align: center;
  /* padding-right: 50px;  */
}

.sec-f-right .content-text {
  float: right;
}

.school-routine-section .sec-f-left .content-text p {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .sec-f-left {
    width: 100%;
  }

  .sec-f-left .heading,
  .sec-f-left .image,
  .sec-f-left .content-text,
  .sec-f-right .heading,
  .sec-f-right .image,
  .sec-f-right .content-text {
    width: 100%;
  }

  .heading {
    margin-top: 0;
  }
}



.literary-section,
.motivational-section {
  background-color: var(--theme-bg-light);
}

.activity-image {
  position: relative;
  z-index: 1;
}

.activity-image .activity-2,
.activity-image .activity-4 {
  padding-right: 30px;
}


.activity-image .activity-1,
.activity-image .activity-3 {
  padding-left: 60px;
}

.activity-image .activity-1::before,
.activity-image .activity-3::before {
  content: "";
  position: absolute;
  left: 25px;
  top: -30px;
  bottom: -30px;
  width: 90%;
  border: 7px solid var(--secondary);
  border-radius: 25px 25px 25px 0;
  z-index: -1;
}

.activity-image .activity-2::before,
.activity-image .activity-4::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 20px;
  /* bottom: -15px; */
  width: 95%;
  height: 100%;
  background-color: #5c9b94;
  /* border: 15px double #5c9b94; */
  border-radius: 25px 25px 0 25px;
  z-index: -1;
}

.activity-image .activity-1 img,
.activity-image .activity-3 img {
  border-radius: 25px 25px 25px 0;
}

.activity-image .activity-2 img,
.activity-image .activity-4 img {
  border-radius: 25px 25px 0 25px;
}

.assembly-section .site-heading,
.NDA-section .site-heading,
.literary-section .site-heading,
.motivational-section .site-heading {
  margin-bottom: 20px !important;
}

.assembly-section .sec-f-left .heading {
  margin-top: 90px;
}

.literary-section .sec-f-right .heading {
  margin-top: 130px;
}

.NDA-section .sec-f-left .heading {
  margin-top: 100px;
}

.motivational-section .sec-f-right .heading {
  margin-top: 185px;
}

/* .personality-development-section .sec-f-left .image {
  padding-left: 30px;
} */

.personality-development-section {


  background-color: var(--theme-bg-light);
}

.personality-development-section .site-heading {
  margin-bottom: 50px !important;
}

/* .personality-development-section .content-list {
  padding: 0 35px
} */

.personality-development-section .content-list li {
  padding-left: 25px;
}

.personality-development-section .content-list i {
  margin-left: -25px;
}

/***********************
 Clubs Section
***********************/

/* .clubs-section {
  background-color: var(--theme-bg-light);
} */

.club-box {
  border-radius: 25px 25px 0 25px;
  padding: 10px 10px 10px 0;
  display: flex;
  align-items: center;
  background: var(--white);
  margin-left: 30px;
  gap: 30px;
  border: 1px solid #2b464740;
  margin-bottom: 10px;
  min-height: 150px;
}

.club-box:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.club-icon {
  min-width: 88px;
  min-height: 88px;
  margin-left: -40px;
  background: #FFF;
  transition: all 0.6s;
  border-radius: 20px 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b464740;

}

.club-box:hover .club-icon {
  background: var(--primary);
}

.club-box:hover .club-icon svg path {
  stroke: #f59e1c;
}

.club-content h4 {
  font-weight: 600;
  color: var(--primary);
  font-size: 18px;
}

.club-box:hover h4 {
  color: var(--secondary);
  transition: 300ms;
}

.club-content p {
  letter-spacing: normal;
  margin-bottom: 0;
  padding-right: 20px;
}

.personality-development-section .sec-f-left,
.school-routine-section .sec-f-left {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}

.school-routine-section .swiper-slide {
  position: relative;
  width: 100%;
  padding: 30px;
}

.theme-table,
.school-routine-table {
  overflow: auto;
}

.theme-table tr,
.school-routine-table tr {
  vertical-align: middle;
}

.theme-table td,
.school-routine-table td {
  color: var(--primary);
  border: 1px solid #2a474740;
}

.theme-table tr,
.school-routine-table tr {
  border: 1px solid #2a474780;
  background-color: hsla(180, 26%, 22%, 0.1) !important;
}

/* 
.school-routine-table tr:nth-child(odd) td:nth-child(even){
  background-color: hsla(180, 26%, 22%, 0.1) !important;
} */
.theme-table tr:nth-child(even) td,
.girls-routine-table tr:nth-child(even) td {
  background-color: #116E631a !important;
}


.theme-table tr:hover td .girls-routine-table tr:hover td {
  transition: 300ms;
  background-color: rgba(179, 160, 101, 0.1) !important;
}

.theme-table th,
.school-routine-table th {
  background-color: var(--primary);
  color: #fff;
}

.theme-table th:nth-child(n),
.girls-routine-table th:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.school-routine-table th:nth-child(2),
.school-routine-table th:nth-child(3) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.admission-eligibility-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
  background-color: #000000a1;
}

.brochure-btn {
  text-decoration: underline !important;
}

.brochure-btn:hover {
  color: var(--secondary);
}

caption {
  color: var(--primary);
}


/* Fees Section  */

.fee-structure-section {
  background-color: var(--theme-bg-light);
}

/* Payment Section  */

.payment-card {
  background-color: var(--white);
  border: 1px solid #2b464725;
  min-height: 480px;
  border-radius: 25px 25px 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 10px;
  padding: 20px 40px;
  margin-top: 20px;
  min-height: 480px;
  box-shadow: #2b464733 0px 6px 30px 0px;
}

.payment-card:hover {
  transition: all 0.3s ease-in-out;
  /* border: 1px solid var(--secondary); */
}

.payment-card h4 {
  color: var(--primary);
}

.payment-add {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  justify-content: center;
}

/* Scholarship Section  */

.scholarship-section {
  background-color: var(--theme-bg-light);
}

.scholarship-btns {
  border-radius: 15px 15px 15px 0;
  display: flex;
  align-items: center;
  background: #fff;
  backdrop-filter: blur(5px);
  border-left: 3px solid transparent;
  color: var(--primary);
  margin-bottom: 20px;
  flex-direction: column;
  margin-top: 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
}

.scholarship-btns:hover {
  color: #fff;
  border-left: 3px solid var(--secondary);
  background-color: var(--primary);
}


/* 
.cbse-section{
  position: relative;
  background-image: url(../img/cta/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
} */

.cbse-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000080;
}

.cbse-content {
  position: relative;
  padding: 80px 40px;
  margin-top: -40px;
  z-index: 1;
}

.cbse-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  border-radius: 25px 25px 25px 0;
  z-index: -1;
}

.cbse-content::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  right: 8px;
  border: 8px double var(--white);
  border-radius: 25px 25px 25px 0;
  z-index: -1;
}

.cbse-content h1 {
  color: var(--white);
  font-size: 36px;
}

.cbse-content p {
  color: var(--white);
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 18px;
}


/* .event-section .content-img {
  overflow: hidden;
  margin-bottom: 50px;
} */

/* .event-section .content-img img {
  border-radius: 25px;
} */

/* Entrance Exam SECTION */
/* .entrance-e-section {
  background-color: var(--theme-bg-light);
} */

.entrance-exam-card {
  border-radius: 25px;
  border: 2px solid transparent;
  /* background: radial-gradient(#2b4647b0, transparent); */
  background: var(--primary);
  padding: 25px 30px;
  position: relative;
  z-index: 1;
  transition: all 0.3s linear 0s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 100%;
}

.entrance-exam-card:hover {
  /* transform: translateY(-5px); */
  border: 2px solid #b3a065;
  border: 2px solid var(--primary);
  background: #FFF;
  transition: all 0.3s linear 0s;
  backdrop-filter: blur(100px);
}

.entrance-exam-card:hover .entrance-exam-card-content h4,
.entrance-exam-card:hover .entrance-exam-card-content p {
  color: var(--primary);
}

.entrance-exam-card:hover .entrance-exam-card-icon svg {

  transform: scale(1.1);
  transform: scale(1.1) translateY(-5px);
  transition: all 0.3s ease-in-out 0s;

}

.entrance-exam-card:hover .entrance-exam-card-icon svg g path {
  fill: var(--primary);
  transition: all 0.3s linear 0s;
}

.entrance-exam-card:hover .entrance-exam-card-icon p {
  color: var(--primary);
  transition: all 0.3s linear 0s;
}

/* .entrance-exam-card:hover .entrance-exam-card-icon img {
} */

/* .entrance-exam-card-icon {
  width: 60px;
  margin-bottom: 15px;
  height: 60px;
} */

.entrance-exam-card-icon img {
  width: 100%;
}

.entrance-exam-card-content h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.entrance-exam-card .theme-btn {
  padding: 13px;
  font-size: 14px;
  border-radius: 12px 12px 12px 0;
  text-transform: none;
  width: 100%;
}

.entrance-exam-card-icon p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* Transfer Certificates Section */

.transfer-certificates-section {
  overflow: hidden;
}

.tc-item {
  position: relative;
  /* height: 220px; */
  border: 1px solid var(--primary);
  border-radius: 25px;
  /* background-image: url(../image/Admission-page/defence-ministry-scholarship.png); */
  background-color: var(--primary);
  padding: 50px;
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

/* .tc-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 25px;
  height: 100%;
  background-color: #00000080;
  z-index: -1;
} */

.tc-item .custom-shape-bg {
  position: absolute;
  top: -1.5px;
  right: -1.3px;

}

.tc-head {
  display: flex;
  flex-direction: column;
}


.tc-head h1 {
  color: #fff;
}

.tc-head p {
  color: #fff;
  font-size: 22px;
  margin: 0;
}

.tc-download-btn {
  position: absolute;
  top: 0;
  right: 0;
}

.tc-download-btn .theme-btn {
  border-radius: 12px;
  text-transform: none;
}

/* .theme-btn:hover #SVGRepo_iconCarrier path {
  fill: var(--primary);
  transition: all 0.3s ease-in-out; 
} */


/* ******************************************************        INFRASTRUCTURE PAGE CSS                 ******************************************************* */



/* Tabbed Infrastructure Site */

.tabbed-infrastructure-site {
  background-color: var(--theme-bg-light);
  position: relative;
  overflow: hidden;
}

.list-group-flush>.list-group-item {
  background-color: transparent;
  border: none;
}

.tabbed-infrastructure-img {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border-radius: 25px 25px 25px 0;
}

.tabbed-infrastructure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Sports Infrastructure Section */

.container-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .sports-infrastructure-site .section-quote {
  padding: 10px 0;
  margin: 0;
  text-align: center !important;
  font-size: 16px;
  max-width: 800px;
  border-top: 2px solid var(--third);
  border-bottom: 2px solid var(--third);
  font-weight: 500;
} */

.vertical-tabs-container-wrapper {
  position: relative !important;
  height: 100% !important;
}

.vertical-tabs-container {
  position: sticky;
  top: 80px;
  z-index: 10;
  background: #fff;
  border-radius: 10px;
  height: fit-content;
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 50px;
}

.vertical-tabs {
  gap: 10px;
}


.sports-tab-content {
  background: #fff;
  min-height: max-content;
  /* margin-top: 50px; */
}

.facility-type {
  font-size: 24px;
  color: var(--secondary);
  text-align: center;
  margin: 0 30px 0;
  padding-bottom: 7px;
  position: relative;
}

.facility-type:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.tab-intro-text {
  font-size: 16px;
  color: var(--primary);
  margin: 30px 0;
  text-align: center;
  font-weight: 700;
}

.tab-outro-text {
  border-top: 2px solid #eee;
}

/* Sport Facility Cards - Redesigned to match provided image UI */
/* .sport-facility_box {
  display: grid;
  grid-template-columns: auto auto;
  margin: 0;
} */

/* .sport-facility_item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  padding: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
} */

.card-img-top-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.66%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.card-img-top-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sport-facility_item:hover .card-img-top-wrapper img {
  transform: scale(1.1);
}

.image-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, #2b4647cc 50%, rgba(0, 0, 0, 0));
  color: #fff;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sport-facility_item:hover .sport-card-icon {
  transform: scale(1.05);
}

.sport-card-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sport-card-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Campus View Section */
.values-list {
  height: 100%;
}

.campus-tagline {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.values-list ul {
  padding-left: 0;
}

.values-list ul li {
  list-style: none;
  padding: 15px 0;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.values-list ul li:last-child {
  border-bottom: none;
}

.values-list ul li i {
  color: var(--third);
  font-size: 20px;
  min-width: 30px;
  margin-top: 5px;
}

.values-list ul li span {
  padding-left: 10px;
}

.values-list ul li span strong {
  color: var(--primary);
}

/* Map Placeholder Styling */
.map-placeholder {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  background-color: transparent;
  border: 1px solid #ccc;
  position: relative;
  height: 400px;
  margin-top: 40px;
}

.map-wrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* General Section Styling */
.site-title .tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
  color: #F8B34E;
  position: relative;
  line-height: 2;
  padding-bottom: 6px;
  border-bottom: 2px solid #F8B34E;
  display: inline-block;
}

.site-title h2 {
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 15px;
}

.site-title h2 span {
  color: var(--third);
}

/* Critical fix for horizontal overflow */
body {
  overflow-x: hidden;
}

/* Fix for tab content overflow */
.tab-content {
  overflow: hidden;
}

/* Ensure images never exceed container */
.tabbed-infrastructure-img img,
.infrastructure-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Campus View Paragraph Styling */

#v-pills-campus .conclusion-para,
.outdoor-para {
  font-size: 16px;
  /* padding: 10px 0; */
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto;
}



/* ******************************************************        Registration PAGE CSS                 ******************************************************* */



.application {
  position: relative;
}

.application-form {
  padding: 40px;
  border-radius: 10px;
  box-shadow: #2b464733 0px 6px 30px 0px;
}

.application form h5 {
  color: var(--primary);
}

.application-form .form-group {
  margin-bottom: 18px;
}

.application-form .form-group label {
  color: var(--primary);
  margin-bottom: 5px;
}

.application-form .form-control,
.application-form .form-select {
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: none;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
  border-color: var(--secondary);
}

.application-form .form-check-input {
  margin-top: 6.5px;
  box-shadow: none;
}

.application-form .form-check-input:focus {
  border-color: var(--secondary);
}

.application-form .form-check a {
  color: var(--secondary);
}

.application-form .form-check label {
  color: var(--fived);
  font-weight: 500;
}

.application-form .theme-btn {
  margin-top: 30px;
}


.a1 {
  position: relative;
}

.a1 .container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 2);
  padding-left: calc(var(--bs-gutter-x) * 2);
  margin-right: auto;
  margin-left: auto;
}

.a1 .site-heading-before-effect {
  margin-bottom: 20px !important;
}



.a1 .highlight-text {
  background-color: transparent;
  padding: 10px 0;
  text-align: left !important;
  border-bottom: 4px solid var(--third);
  border-left: none;
  border-radius: 0;
  color: #2b4647;
  font-size: 16px;
  text-transform: capitalize;
}

.a1 .image .content-img {
  height: 650px;
  position: relative;
}

.a1 .image .content-img img {
  height: 100%;
  clip-path: polygon(0 0, 100% -20%, 90% 100%, 0% 100%);
}

.a1 .image .ltr-gsap-img-overlay {
  position: absolute;
  content: '';
  top: -5px;
  left: 0;
  background-color: #fff;
  width: 900%;
  height: 110%;
}

.a1 .contentt {
  position: relative;
}

.a1 .content-text.content-info {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  padding: 50px;
  z-index: 1;
  box-shadow: #2b464740 0px 50px 100px -20px, #2b46474d 0px 30px 60px -30px;
  border-right: 22px double var(--primary);
  background: #ffffff99;
  backdrop-filter: blur(4px);
}


/* ******************************************************        GALLERY PAGE CSS                 ******************************************************* */


.gallery-section {
  overflow: hidden;
}

/* .gallery-blocks {
  margin-top: 50px;
} */

.gallery-blocks>div {
  margin-bottom: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px 25px 25px 0;
  width: 100%;
  height: 100%;
}

.gallery-img {
  height: 100%;
}

.gallery-img img {
  height: 100%;
  border-radius: 25px 25px 25px 0;
}

.gallery-content {
  display: none;
  position: absolute;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #2b4647c2;
  backdrop-filter: blur(5px);
  padding: 20px;
  -webkit-animation: scale-up-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) alternate both;
  animation: scale-up-bottom 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) alternate both;
}

.gallery-item:hover .gallery-content {
  display: flex;
}

.search-icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

.search-icon i {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

@-webkit-keyframes scale-up-bottom {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}

@keyframes scale-up-bottom {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}

.gallery-content p a {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.gallery-content p {
  color: #fff;
}

.fullscreen-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2a4747de;
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fullscreen-popup img {
  object-fit: scale-down;
  border-radius: 25px 25px 25px 0;
}

#close-popup {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 30, 30, 0.65);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.popup-nav i {
  font-size: 30px;
}

#prev-img {
  left: 32px;
}

#next-img {
  right: 32px;
}

.popup-nav:hover {
  opacity: 1;
}


/* ******************************************************        RTI PAGE CSS                 ******************************************************* */

.rti-ul {
  list-style: '⇒  ';
  color: var(--primary);
}

.rti-ul li a:hover {
  text-decoration: underline !important;
  transition: text-decoration 0.3s ease-in-out;
}

.rti-member {
  border-radius: 25px 25px 25px 0;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid var(--primary);
}

.rti-member:hover {
  transition: var(--transition);
  background-color: var(--primary);
}

.rti-img {
  overflow: hidden;
  position: relative;
}

.rti-img::after {
  position: absolute;
  width: 200%;
  height: 0;
  left: 50%;
  top: 50%;
  background-color: #ffffff80;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}

.rti-member:hover .rti-img img {
  transition: var(--transition);
  /* transform:  rotate(-15deg); */
}

.rti-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin: 20px 0;
  justify-content: space-around;
  color: var(--primary);
}

.member-desig,
.member-name {
  padding: 0 20px;
}

.rti-member:hover .rti-content {
  transition: var(--transition);
  color: #fff;
}

.rti-member:hover .rti-img::after {
  height: 250%;
  transition: all .5s linear;
  background-color: transparent
}

/* ******************************************************        Mandatory Public Disclosure PAGE CSS                 ******************************************************* */


.info-table {
  border: 1px solid #2b46476e;
  text-transform: capitalize;
}

.info-table a {
  text-transform: lowercase;
}

.info-table a:hover {
  text-decoration: underline !important;
  transition: all 0.3s ease-in-out;
}

.info-table-head,
.info-table-item {
  padding: 20px 0;
  border-bottom: 1px solid #2b464780;
}

.info-table-head {
  background-color: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.info-table-head>div,
.info-table-item>div {
  padding: 0 10px;
  color: var(--primary);
}

.info-table-item:hover {
  box-shadow: 0 4px 8px #2b46471f;
  transition: all 0.3s ease-in-out;
}

.mpd-document-section {
  position: relative;
  background-color: var(--theme-bg-light);
}

.mpd-box {
  margin: 10px 0;
  border: 1px solid #2b46476e;
  text-align: center;
  min-height: 100px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.mpd-box:hover {
  box-shadow: 5px 5px 10px var(--primary);
  box-shadow: rgba(14, 30, 37, 0.1) 0px 2px 4px 0px, rgba(14, 30, 37, 0.1) 0px 2px 16px 0px;
}

.mpd-link {
  padding: 20px;
  display: block;
}


/* ******************************************************        Academic curriculum PAGE CSS                 ******************************************************* */

/* .academic-table-cont {
  margin: 20px 0;
  border: 2px solid var(--primary);
  border-radius: 35px;
} */

.table-item {
  border-radius: 100px;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.table-item a {
  display: block;
  padding: 15px 20px;
  align-items: center;
}

.table-item a img {
  width: 15px;
  height: 15px;
}

.table-item:hover {
  color: #fff;
  background-color: var(--secondary);
  border: 1px solid transparent;
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}

.table-item:hover a {
  color: #fff !important;
}

.table-item:hover a img {
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

/* 
.table-item-head {
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 20px;
  background-color: var(--primary);
  color: #fff;
}

.table-item-head a {
  color: #fff;
}

.table-item a {
  padding: 10px ;
  margin-right: 30px ;
} */


/* ******* */
.daily-routine-head {
  color: var(--primary);
  font-weight: 600;
}

.daily-routine-head span {
  border-bottom: 2px solid var(--secondary);
}

#content {
  margin-top: 15px;
  text-align: center;
  padding-left: 200px;
}

/* Timeline */
.timeline {
  border-left: 4px solid var(--primary);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  /* margin: 50px auto; */
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding-left: 30px;
  list-style: none;
  text-align: left;
  font-weight: 1;
}

.timeline h3 {
  letter-spacing: 1.5px;
  font-weight: 100;
  font-size: 16px;
  margin-bottom: 0;
}

.timeline .event {
  border-bottom: 1px dashed var(--primary);
  color: var(--primary);
  padding: 10px 10px;
  position: relative;
}

.timeline .event:hover {
  background-color: var(--primary);
  border-bottom: 1px dashed transparent;
  transition: all 0.3s ease-in-out;
}

.timeline .event:hover h3 {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.timeline .event:hover .event:before {
  position: static !important;
}

.timeline .event:last-of-type {
  border: none;
}

.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .event:before {
  left: -215px;
  content: attr(data-date);
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  min-width: 120px;
  top: 50%;
  transform: translate(0, -50%);
}

.timeline .event:after {
  box-shadow: 0 0 0 4px var(--primary);
  left: -55px;
  background: var(--secondary);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
}


/* ******************************************************        Admission PAGE CSS                 ******************************************************* */

/* .admission-table-section {} */

.fa-solid,
.fas {
  margin-right: 5px;
}

.small-text {
  font-size: 80%;
}

.card-ui {
  padding: 15px;
  border: 1px solid #e2e2e2;
  border-radius: 0px 20px;
  border-left: 4px solid var(--secondary);
  min-height: 130px;
  margin-bottom: 20px;
}

.label {

  font-size: 110%;
  font-weight: bold;
}

.values {

  font-size: 90%;
}

ul.val li {
  line-height: 24px;

  font-size: 90%;
}

.ab-highlight {
  background-color: #ffffff;
  color: #224445;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px #e2e2e2;
  border-radius: 12px 12px 12px 0;
  font-size: 16px;
  font-weight: bold;
}



        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 999999;
            margin: 0 auto;
        }

        /* Modal Content/Box */
        .modal-content {
            background-color: #fefefe;
            padding: 20px;
            border: 1px solid #888;
            max-width: 80%;
            margin: 0 auto;
            height: 90vh;
            margin-top: 5vh;
            overflow: auto;
        }

        /* The Close Button */


        .close:hover,
        .close:focus {
            color: var(--primary);
            text-decoration: none;
            cursor: pointer;
        }
            header {
    position: fixed;
    z-index: 100;
    top: 48px;
    transition: all 0.5s 
linear;
    /* display: none; */
}
.top-header{
  background: #2b4647; padding: 10px 20px; color: #f59e1c; text-align: right;
  font-size: 14px; letter-spacing: 1.5px ;
}
.site-breadcrumb .breadcrumb-title{
  color: #ffffff;
}
.site-breadcrumb .breadcrumb-menu li a{
  color: #ffffff;
}

.site-breadcrumb .breadcrumb-menu li.active{
  color: #f2f2f2;
}
