:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Yantramanav', sans-serif;
  --theme-color: #116E63;
  --theme-color2: #0B3D2E;
  --theme-color-3: #438974;
  --theme-color-light: rgb(17, 110, 99, 0.09);
  --theme-bg-light: #F2F3F5;
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #19232B;
  --hero-overlay-color: #000000;
  --slider-arrow-bg: rgba(255, 255, 255, 0.2);
  --box-shadow: 0px 14px 22px -9px #bbcbd8;
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #012758;
  --footer-bg2: #116E63;
  --footer-text-color: #F5FAFF;
}


.nav-sec {
  background: linear-gradient(to right, #A0E7A0, #116E63);
  overflow: visible;
  top: 0;
}


h1 {
  margin: 0px;
  padding: 0px;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.header-sticky {
  position: sticky;
  top: -100px;
  transition: top 0.5s ease;
  z-index: 1000;
}

.header-sticky.sticky-visible {
  top: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #A0E7A0, #116E63);
  color: white;
  font-family: Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.containerNav{
  display: flex;
  border: 1px solid red;
  width: 300px;

}
.dropdown-menu.custom-dropdown-menu {
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.nav-item {
  display: flex;
  flex-direction: column;
  /* This stacks icon above text */
  /* align-items: center; */
  cursor: pointer;
  /* padding-top: 10px; */
  /* padding-bottom: 10px; */
    padding-right: 5px;
    padding-left: 5px;
}

.navbar-brand img {
  height: 85px;
  width: auto;
}

.offcanvas-menu .navbar-brand img {
  /* height: 65px; */
  width: 200px;
}

.navbar__logo a {
  text-decoration: none !important;
}


.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}

.collapse .navbar-nav .nav-item a:hover {
  color: var(--theme-color2) !important;


}
/* 
.dropdown:hover .dropdown-menu {
  display: block;
} */



.hamburger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1051;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile off-canvas menu */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  width: 250px;
  background-color: #0B3D2E;
  padding-top: 10px;
  transition: left 0.3s ease;
  z-index: 1050;
}

.offcanvas-menu.show {
  left: 0;
}

.offcanvas-menu .ulshow a {
  display: block;
  /* color: white; */
  /* padding: 10px 20px; */
  text-decoration: none;
}

.offcanvas-menu a:hover {
  background-color: #064f39;
}

/* Show hamburger only on small screens */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .navbar-nav {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .offcanvas-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu{
  display: block;
  }
}

@media (max-width:480px) {
  .navbar-brand img {
    height: 60px;
  }
}

@media (max-width: 450px) {
  .navbar-brand img {
    /* height: 65px !important; */
    height: auto;
    width: 150px;
  }

}


/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 700px;
  overflow: hidden;
  position: relative;
}

#slideshow {
  transition: opacity 1s ease-in-out;
}

/* Navigation buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .slideshow-container {
    height: 300px;
  }

  .nav-button {
    font-size: 18px;
    padding: 10px;
  }

  .site-title {
    font-size: 30px !important;
  }
}



.philosophy {
  width: 100%;
  display: flex;
  justify-content: center;
  background: url(../assets/images/bg_philosophy.jpg);
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: cover;
  padding: 40px 0px 40px;
  background-attachment: fixed;
  text-align: center;
  color: white;
}

.philosophyIcon {
  vertical-align: middle;
}

.philosophyHead {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.philosophyHead h2 {
  margin-bottom: 50px;
}

.philosophyRow {
  margin-bottom: 50px;
}


.philosophy_list {
  margin-top: 30px;
}

.philosophy_list li {
  margin: 0px;
  padding: 0px;
  display: inline-block;
}

.bg_philosophy ul li img {
  transition: all 0.3s ease-in-out;

}

.bg_philosophy ul li img:hover {
  transform: scale(1.1);
  transition: all .5s ease-in-out;
}


.philosophy_list p {
  margin: 5px 0px 0px;
  padding: 0px;
  font-size: 18px;
  color: white;
}

.block-shape1-1 {
  position: absolute;
  top: -20px;
  left: -80px;
  z-index: -1;
  animation: itupdown 0.8s infinite alternate;
  filter: brightness(2) invert(0);
}

.block-shape1-6 {
  position: absolute;
  top: 40px;
  right: -400px;
  animation: rotate2 4s linear infinite;
  display: block;
}

.block-shape1-4 {
  position: absolute;
  top: 140px;
  right: 120px;
  animation: rotate2 4s linear infinite;
  display: block;
}

.block-shape1-7 {
  position: absolute;
  bottom: -90px;
  right: 650px;
  animation: itswing 1s forwards infinite alternate;
  transform-origin: bottom left;
}


@keyframes itswing {
  0% {
    transform: rotate(6deg);
  }

  100% {
    transform: rotate(-6deg);
  }
}

@keyframes itupdown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.arrowImg {
  position: absolute;
  left: 600px;
  width: 200px;
  height: 80px;
  bottom: 115px;
}


@media(max-width:1300px) {
  .block-shape1-6 {
    display: none;
  }
}


@media (max-width:1200px) {
  .arrowImg {
    display: none;
  }

  .block-shape1-4 {
    display: none !important;
  }

  .block-shape1-7 {
    display: none !important;
  }



}

.about-area {
  margin-top: 0px;
  position: relative;

}

.about-left {
  margin-right: 20px;
}

.about-img {
  display: flex;
  gap: 30px;
  position: relative;
}

.about-img .img-1 {
  border-radius: 80px 80px 0 80px;
}

.about-img .img-2 {
  border-radius: 50%;
  border: 2px dashed var(--theme-color2);
  padding: 8px;
}

.about-img .img-3 {
  border-radius: 0 80px 80px 80px;
}

.about-experience {
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--theme-color2);
  padding: 15px 20px 15px 15px;
  color: var(--color-white);
  border-radius: 50px 50px 50px 0;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

.about-experience-icon {
  color: var(--theme-color);
  font-size: 65px;
  width: 90px;
  height: 90px;
  line-height: 70px;
  text-align: center;
  margin: auto;
  background: var(--color-white);
  border-radius: 50px;
  margin-bottom: 5px;
}

.about-experience-icon img {
  width: 50px;
}

.about-right {
  position: relative;
  display: block;
}

.about-content {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}

.about-item {
  position: relative;
  display: flex;
  gap: 12px;
}

.about-item-icon {
  width: 50px;
  height: 50px;
  line-height: 58px;
  text-align: center;
  margin-bottom: 12px;
  background: var(--theme-color2);
  border-radius: 50px;
  font-size: 45px;
  color: var(--theme-color);
  box-shadow: -5px 5px 0 var(--theme-color-light);
}

.about-item-icon img {
  margin-top: -22px;
  width: 30px;
  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(--color-dark);
  padding: 20px 22px;
  background: var(--theme-color-light);
  border-radius: 20px;
}

.about-quote i {
  position: absolute;
  font-size: 45px;
  color: var(--theme-color);
  right: 15px;
  bottom: -15px;
}

.about-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-phone .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: -5px 5px 0 var(--theme-color-light);
}

.about-phone .number {
  line-height: 1;
}

.about-phone .number span {
  color: var(--theme-color2);
  font-weight: 500;
}

.about-phone .number h6 {
  font-size: 20px;
  margin-top: 8px;
}

.about-phone .number h6 a {
  color: var(--theme-color);
}

.events {
  position: relative;
}

.block-shape2-5 {
  position: absolute;
  top: 60px;
  left: -140px;
  animation: rotate2 4s linear infinite;
}

.block-shape2-4 {
  position: absolute;
  bottom: -500px;
  right: -350px;
  animation: rotate2 4s linear infinite;
}

@media(max-width:999px) {
  .block-shape2-5 {
    display: none;
  }
}

@media(max-width: 1300px) {
  .block-shape2-4 {
    display: none;
  }
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: 2px solid var(--theme-color2);
}

.site-title {
  font-weight: 800;
  text-transform: capitalize;
  font-size: 35px;
  color: var(--color-dark);
  margin-top: 10px;
  margin-bottom: 0px;
  position: relative;
}

.site-title span {
  color: var(--theme-color-3);
}

.theme-btn {
  text-decoration: none;
  font-size: 14px;
  color: var(--color-white);
  padding: 14px 20px;
  transition: var(--transition);
  text-transform: uppercase;
  position: relative;
  border-radius: 50px 50px 50px 0;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--theme-color2);
  box-shadow: var(--box-shadow);
  z-index: 1;

}


.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2 {
  background: var(--color-white);
  color: var(--color-dark);
}

.theme-btn2::before {
  background: var(--theme-color);
}

.theme-btn2:hover {
  color: var(--color-white);
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 30px;
  }
}

@media all and (max-width: 767px) {
  .about-item {
    margin-top: 30px;
  }
}


.-area {
  position: relative;
  z-index: 1;
}

.fa-negative {
  margin-top: 80px;
  margin-bottom: 100px;
}

.feature-item {
  position: relative;
  padding: 15px 15px;
  background: var(--color-white);
  border-radius: 50px 50px 50px 0px;
  /* box-shadow:5px 5px 0 var(--theme-color-3); */
  border: 2px solid green;

  z-index: 1;
}

@media(max-width: 1200px) {
  .feature-item {
    border: none;
    box-shadow: 5px 5px 0 var(--theme-color-3);
  }
}

.feature-ifeaturetem .count {
  position: absolute;
  right: 30px;
  top: 0px;
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.feature-icon {
  width: 90px;
  height: 80px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 60px;
  background: var(--theme-color);
  margin-bottom: 25px;
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: var(--transition);
  margin-top: -60px;
  margin-left: -40px;
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon img {
  border-radius: 80%;
  width: 60px;
}

.feature-content {
  flex: 1;
  max-height: 305px;
}

.feature-content h4 {
  color: var(--color-dark);
  font-size: 22px;
  font-weight: 600;
}

.feature-list {
  height: 250px;
  margin: 12px;
  overflow: vertical auto;
}

.feature-content ul {
  color: var(--color-dark);
}

.feature-content li {
  font-size: 15px;
}

.feature-area .img {
  position: absolute;
  top: 180px;
  left: 100px;
  animation: itupdown 0.8s infinite alternate;
}

@media (max-width: 1199px) and (min-width: 990px) {
  .feature-item {
    padding: 10px 5px;
    border-radius: 30px;
  }

  .feature-content ul {
    padding-left: 10px;
    font-size: 10px;
  }

  .feature-title {
    font-size: 15px;
  }

  .feature-icon {
    margin-top: -40px;
    margin-left: 0;
  }
}




@media all and (max-width: 1200px) {
  .fa-negative {
    margin-top: 150px;
    margin-left: 20px;
  }

  .feature-item.active::before {
    transform: scale(1);
  }
}




.discoverbtn {

  border-radius: 3px;
  position: absolute;
  top: 88%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 10px 25px;
  background-color: #346633;
  color: white;
  display: inline-block;
  text-align: center;

  font-size: 15px;

  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.discoverbtn:hover {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;

  background-color: rgb(1, 12, 58);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.course-area {
  /* padding-top: 80px; */
  background-color: #a7d2d9;
  position: relative;
  z-index: 1;
}



.course-area-1 {
  /* padding-top: 80px; */
  background-color: #a7d2d9;
  position: relative;
  z-index: 1;
}

.course-item {
  position: relative;
  background: var(--color-white);
  padding: 20px;
  border-radius: 50px 50px 50px 0;
  margin-bottom: 25px;
  box-shadow: 2px 2px 5px #ccc;
}

.flip-card {
  background-color: transparent;
  /* width: 200px; */
  height: 200px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Flip the card on hover */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  border-radius: 50%;
  width: 100%;
  /* height: 100%; */
  height: 180px;
  backface-visibility: hidden;
  /* hide back face when facing front */
  border-radius: 10px;
  overflow: hidden;
}


.flip-card-back {
  background-color: #129679;
  color: white;
  transform: rotateY(180deg);
  /* back side is flipped */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  padding: 20px;
}

.course-tag {
  position: absolute;
  right: -15px;
  top: 15px;
  background: var(--theme-color2);
  color: var(--color-white);
  border-radius: 40px 40px 40px 0;
  padding: 2px 10px;
  margin-bottom: 10px;
  display: inline-block;
  box-shadow: var(--box-shadow2);
  z-index: 1;
}

.course-img1 {
  position: relative;
}

.course-img1 img {
  height: 300px;
  width: 100%;
  border-radius: 40px 40px 40px 0;
  margin-bottom: 30px;
}

.course-img1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 40px 40px 40px 0;

  transition: var(--transition);
}

.course-item:hover .course-img1::before {
  opacity: 0.5;
  visibility: visible;
}

.course-img1 a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  line-height: 50px;
  padding: 0;
  margin: -25px 0 0 -25px;
  color: var(--color-white);
  background: var(--theme-color2);
  transform: scale(3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}

.course-item:hover .course-img1 a {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.course-item:hover .course-img1 a:hover {
  background: var(--color-white);
  color: var(--theme-color2);
}

.course-img {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  height: 180px;
}

.course-color-1 {
  background-color: rgb(138, 172, 19);

}

.course-color-2 {
  background-color: rgb(230, 154, 14);
}

.course-color-3 {
  background-color: rgb(255, 102, 0);
}

.course-color-4 {
  background-color: rgb(14, 115, 230);
}



.course-img img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 30px;
}


.course-title1 {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: var(--theme-color2);
}

.course-title {
  font-size: 25px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: var(--theme-color2);
  padding: 0 25px;
}



.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 80px 80px 80px 0;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(3, 2, 7, .2);
  border-radius: 80px 80px 80px 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.video-img {
  position: relative;
  /* box-shadow: 0px 14px 22px -9px #000000;; */
}

.video-img img {
  width: 100%;
  border-radius: 40px 40px 40px 0;
  /* margin-bottom: 30px; */
}

.video-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 40px 40px 40px 0;
  transition: var(--transition);
}

.course-item:hover .video-img::before {
  opacity: 0.5;
  visibility: visible;
}

.video-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  line-height: 50px;
  padding: 0;
  margin: -25px 0 0 -25px;
  color: var(--color-white);
  background: var(--theme-color2);
  transform: scale(3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1;
}

.course-item:hover .video-img a {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.course-item:hover .video-img a:hover {
  background: var(--color-white);
  color: var(--theme-color2);
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 350px;
  z-index: 100;
}

.video-wrapper img {
  border-radius: 12px;
}

@media only screen and (max-width:767px) {
  .Apply .container {
    flex-direction: column-reverse !important;
  }
  .applyImg img{
    display: none !important;
  }
}




.nav-tabs .nav-link {
  border: 1px solid #ecd429 !important;
  border-radius: 0px 0px 0 0 !important;
  background-color: #ffe73c !important;
  color: black;
  border: 1px solid #ccc;
  margin-right: 5px;
  padding: 16px 32px;
  font-size: 1.4rem;

}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:focus,
.nav-tabs .nav-link.active:hover {
  background-color: #77ae0a !important;
  border: 1px solid #5e9500 !important;
  color: white !important;
}




body {
  background-color: #f1f6ff;
}

#news-slider {
  margin-top: 80px;
}

.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
  padding: 10px;
}

.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: 10px;
  background-image: url(../assets/images/6.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.post-slide .post-img img {
  width: 100%;
  /* height: auto; */
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: var(--theme-color2);
  transition: all 0.3s ease 0s;
  position: absolute;
}

.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}

.post-p {
  overflow-y: auto;
  margin: 10px;
  height: 110px;

}

.post-slide .img2 {
  background-image: url(../assets/images/cover.jpg);
}

.post-slide .img3 {
  background-image: url(../assets/images/5.jpg);
}

.post-slide .img4 {
  background-image: url(../assets/images/2\ \(1\).jpg);
}

.post-slide .img5 {
  background-image: url(../assets/images/11.jpg);
}


.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}

.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 20px;
  border-radius: 15px;
}

.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
  text-decoration: none;
  color: var(--theme-color2);
}

.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}

.post-slide .read-more {
  padding: 7px 20px;
  /* float: right; */
  margin-left: 80px;
  font-size: 12px;
  background: var(--theme-color2);
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px var(--theme-color2);
  border-radius: 25px;
  text-transform: uppercase;
}

.post-slide .read-more:hover {
  background: var(--theme-color2);
  text-decoration: none;
  color: #fff;
}

.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
  background: var(--theme-color2);
  position: absolute;
  top: -10%;
  right: 60px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
  background: var(--theme-color2);
  position: absolute;
  top: -10%;
  right: 10px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #fff;
  font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}



.holiday_table {

	/* background-color:#e7e7e7; */

}

.holiday_table ul li {

  width: 50%;
  float: left;

}

.holiday_table td {

  padding: 7px 7px 7px 12px;
  border: 1px solid #116E63;
}

.holiday_table .blue {

  background-color: #116E63;

  color: #ffffff;

  font-weight: 700;

}

.holiday_table .gray {

  background-color: #e7e7e7;

}

.holiday_table td {
    padding: 7px 7px 7px 12px;
}




.highlight {
  width: 100%;
  background: url(../assets/images/bg_philosophy.jpg);
  background-repeat: no-repeat !important;
  background-position: center;
  background-size: cover;
  padding: 40px 0px 40px;
  background-attachment: fixed;
  text-align: center;
  color: white;
}


.wpsm_count-icon {
  display: block;
  margin-top: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin: 0 auto;
}



.wpsm_count-icon i {
  font-size: 44px;
  color: #fce63d;
}



.wpsm_number {
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Arial';
  letter-spacing: 2px;
  margin-top: 20px;
  line-height: 1.3em;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.wpsm_count-title {
  font-size: 22px;
  font-weight: bolder;
  font-family: 'Arial';
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  line-height: 1.3em;
}




.image-zoom-effect {
  display: flex;
  flex-wrap: wrap;
}

.image-zoom-effect .image-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
  transform: scale(0.95);
}

.image-zoom-effect img {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-zoom-effect:hover img {
  transform: scale(1.1);
}

.cards-section {
  position: relative;
}

.capImg {
  position: absolute;
  top: -150px;
  left: 70px;
  width: 180px;
  height: 180px;
}


@media only screen and (max-width:1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}






@media all and (max-width: 768px) {
  .video-wrapper {
    height: 250px;
  }

  .capImg {
    display: none;
  }

  .about-bottom {
    gap: 10px
  }
}

.V-course-item {
  position: relative;
  background: var(--color-white);
  padding: 15px;
  border-radius: 50px 50px 50px 0;
  margin-bottom: 25px;
  box-shadow: 2px 2px 5px #ccc;
}

.V-card {
  background-color: transparent;
  /* width: 200px; */
  height: 200px;
  perspective: 1000px;
}

.V-card-inner {
  position: relative;
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Flip the card on hover */
.V-card:hover .V-card-inner {
  transform: rotateY(180deg);
}

.V-course-title {
  font-size: 23px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: var(--theme-color2);
  text-align: center;
}

/* 
.course-i {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  height: 180px;
} */


/* 
V-course-icon{
  color:orange;
  font-size: 100px;
  padding-top: 50px;
} */


.testimonial-one {
  position: relative;
  padding: 50px 0px 50px;
}

.testimonial-one_title-column {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-one_title-outer {
  position: relative;
}


.testimonial-one_carousel-column {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-one_carousel-outer {
  position: relative;
}

.testimonial-block_one {
  position: relative;
  z-index: 1;
}

.testimonial-block_one-outer {
  position: relative;
  padding: 40px 40px 0px;
  background-color: rgb(250, 248, 244);
  border-left: 3px solid green;
}

.testimonial-block_one-outer::before {
  position: absolute;
  content: '';
  left: -3px;
  bottom: 0px;
  right: 0px;
  height: 20px;
  background-color: white;
}

.testimonial-block_one-text {
  position: relative;
  line-height: 30px;
  color: rgb(102, 102, 102);
  font-size: 18px;
  overflow-y: auto;
  margin: 10px;
  height: 110px;
}

.testimonial-block_one-author {
  position: relative;
  margin-top: 40px;
}

.testimonial-block_one-title {
  position: relative;
  font-weight: 600;
  color: green;
  font-size: 16px;
  text-transform: uppercase;
}

.testimonial-block_one-author-inner {
  position: relative;
  min-height: 153px;
  padding-top: 10px;
  padding-right: 120px;
}

.testimonial-block_one-author-image {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 120px;
  height: 153px;
}

.testimonial-block_one-author-image::before {
  position: absolute;
  left: -20px;
  bottom: 0px;
  content: '';
  border-top: 20px solid green;
  border-left: 20px solid transparent;
}

.testimonial-block_one-heading {
  font-weight: 700;
  color: rgb(1, 12, 58);
  margin-top: 5px;
}

.testimonial-block_one-author-quote {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50px;
  display: inline-block;
  color: green;
  font-size: 24px;
  font-family: "flaticon_monic-flat";
  background-color: white;
  box-shadow: 0px 0px 15px rgba(rgb(0, 0, 0), 0.07);
}

.swiper-button{
  text-align: center;
    margin-top: 20px;
}


/* Base style for both buttons */
/* .custom-swiper-button {
  width: 40px;
  height: 40px;
  background-color: #28a745; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
} */

/* Positioning */
/* .swiper-button-prev.custom-swiper-button {
  left: 10px;
}

.swiper-button-next.custom-swiper-button {
  right: 10px;
} */

/* .slider-wrapper .swiper-pagination-bullet {
  background: #2c0202;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}
.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.slider-wrapper .swiper-slide-button {
  color: #fff;
  margin-top: -55px;
  transition: 0.2s ease;
}
.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}
@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }
  .slider-wrapper .swiper-slide-button {
    display: none;
  }
} */

/* .swiper-button-prev, .swiper-button-next{
  color: green !important;
} */
 /* .swiper-container .swiper-pagination-bullet{
  color: green !important;
} */

.swiper-container{
  height: 390px;
}

.swiper-pagination span{
  width: 10px ;
  height: 10px;
  background-color: green;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 20px;
}


@media(max-width:767px) {
  .testimonial-one_carousel-column {
    width: 300px;
    height: 400px;
  }

  .swiper-container {
    width: 300px;
    height: 400px;
  }

  .testimonial-block_one-text {
    font-size: 10px !important;
  }
}

.flaticon-quote:before {
  content: "\f153";
}

.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
}

.sec-title_title {
  position: relative;
  font-weight: 600;
  display: inline-block;
  color: green;
  font-size: 16px;
  text-transform: uppercase;
}

.sec-title_heading {
  font-weight: 700;
  color: rgb(16, 26, 77);
  margin-top: 2px;
  text-align: center;
}

.sec-title_text {
  line-height: 28px;
  font-size: 17px;
  color: rgb(102, 102, 102);
  margin-top: 15px;
}


.sec-title.light .sec-title_text {
  opacity: 0.90;
  color: white;
}

.sec-title.light .sec-title_heading {
  color: white;
}

.sec-title.centered {
  text-align: center !important;
}


.btn-style-two {
  position: relative;
  font-weight: 700;
  overflow: hidden;
  text-align: center;
  border-radius: 3px;
  padding: 12px 18px;
  display: inline-block;
  letter-spacing: 1px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  background-color: var(--theme-color2);
}

.btn-style-two::before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  left: -50px;
  top: 100%;
  content: "";
  right: -50px;
  bottom: -50px;

  border-radius: 50%;
  background-color: rgb(1, 12, 58);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.btn-style-two:hover::before {
  top: -20px;
}

.btn-style-two .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-two .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}








.footer-area {
  width: 100%;
  padding-top: 80px;
  background: var(--footer-bg);
  position: relative;
  z-index: 1;
}

@media(max-width:767px) {
  .footer-area {
    padding-top: 20px !important;
  }

  .footer-logo img {
    width: 70% !important;
  }
}

.footer-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .05;
  z-index: -1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  /* height: 80px; */
  width: 100%;
  margin-bottom: 25px;
}

.copyright {
  /* justify-content: center;
  align-content: center; */
  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(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: rgb(212, 212, 54);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: rgb(212, 212, 54);
  font-weight: 500;
}

.footer-widget-title {
  color: var(--color-white);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  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: rgb(212, 212, 54);
  bottom: 0;
  left: 18px;
  z-index: -1;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding-left: 0px;
}

.footer-list li a {
  color: var(--color-white);
  transition: var(--transition);
  text-decoration: none;
}

.footer-list li a i {
  margin-right: 5px;
  color: var(--color-white);
}

.footer-list li a:hover {
  padding-left: 10px;
  color: rgb(212, 212, 54);
}

.footer-widget-box p {
  color: var(--color-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(--color-white);
  color: var(--theme-color2);
  transition: var(--transition);
}

.footer-social li a i:hover {
  background: rgb(212, 212, 54);
  color: var(--color-white);
}

.footer-contact li {
  padding-left: 0px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--footer-text-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: var(--footer-text-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.footer-contact li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 10px 10px 10px 0;
  background: rgb(201, 201, 2);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-white);
}



@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }

  .owl-item {
    width: 350px;
  }
}

@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: 1000px) {
  .course-title {
    font-size: 18px;
  }
}

@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%;
  }

  /* .about-right{
    margin-top: 180px;
  } */
  .course-img1 img {
    height: 200px;
  }

  .course-img {
    height: 180px;
    width: 100%;
  }

  .course-title {
    font-size: 22px;
    text-align: center;
  }

  .course-title1 {
    font-size: 18px;
  }

  .feature-content li {
    font-size: 18px;
  }

  .text-start {
    margin-left: 10px;
  }

  .about-experience-icon {
    width: 70px;
    height: 70px;
  }

  .about-experience-icon img {
    margin-top: -31px;
  }
}

#scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}


#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  /* border-radius: 50px; */
  transform: rotate(45deg);
  color: white;
  background-color: var(--theme-color2);
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--box-shadow2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.fa-arrow-up-from-arc:before {
  content: "\e4b4";
}

@media (min-width: 767px) and (max-width:1199px) {
  .scroll-top.active {
    bottom: 100px;
  }
}



.students-life-block {
  margin-top: 50px;
  margin-bottom: 50px;
}


.students-life-block .content-wrapper .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 300;
  color: #0B3D2E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
}

/* .students-life-block .content-wrapper .section-tag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 1px;
  background: #0B3D2E;
} */

.students-life-block .content-wrapper h2 {
  font-size: 2.75rem;

  line-height: 1.3;
  margin-bottom: 2rem;
  color: #212121;
}

@media (max-width: 768px) {
  .students-life-block .content-wrapper h2 {
    font-size: 2.25rem;
  }
}

.students-life-block .content-wrapper .description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, #212529, transparent 25%);
  margin-bottom: 3rem;
}

.students-life-block .stats-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.students-life-block .stats-row .stat-item {
  display: flex;
  flex-direction: column;
}

.students-life-block .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: #0B3D2E;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.students-life-block .stats-row .stat-item .stat-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, #212529, transparent 40%);
  font-weight: 300;
}

@media (max-width: 576px) {
  .students-life-block .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.students-life-block .action-links .primary-link {
  color: #2e0a13;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.students-life-block .action-links .primary-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #0B3D2E;
  transition: width 0.3s ease;
}

.students-life-block .action-links .primary-link:hover {
  color: #0B3D2E;
}

.students-life-block .action-links .primary-link:hover::after {
  width: 100%;
}

.students-life-block .visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  height: 100%;
}

.students-life-block .visual-grid .main-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .main-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.students-life-block .visual-grid .main-visual:hover img {
  transform: scale(1.05);
}



.students-life-block .visual-grid .secondary-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.students-life-block .visual-grid .secondary-visuals .small-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .secondary-visuals .small-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover img {
  transform: scale(1.1);
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover .visual-caption {
  opacity: 1;
  transform: translateY(0);
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.students-life-block .highlights-section {
  margin-top: 6rem;
}

.students-life-block .highlights-section .highlight-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.students-life-block .highlights-section .highlight-card .highlight-image {
  overflow: hidden;
}

.students-life-block .highlights-section .highlight-card .highlight-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover .highlight-image img {
  transform: scale(1.1);
}

.students-life-block .highlights-section .highlight-card .highlight-content {
  padding: 2rem;
}

.students-life-block .highlights-section .highlight-card .highlight-content h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #2e0a13;
}

.students-life-block .highlights-section .highlight-card .highlight-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, #212529, transparent 30%);
  margin: 0;
}

@media (max-width: 991.98px) {
  .students-life-block .content-wrapper {
    margin-bottom: 2rem;
  }

  .students-life-block .visual-grid .main-visual img {
    height: 300px;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 140px;
  }

  .students-life-block .highlights-section {
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .students-life-block .stats-row {
    justify-content: center;
    text-align: center;
  }

  .students-life-block .visual-grid .main-visual .overlay-badge {
    top: 20px;
    right: 20px;
    padding: 0.75rem 1.25rem;
  }

  .students-life-block .visual-grid .secondary-visuals {
    grid-template-columns: 1fr;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 200px;
  }

  .students-life-block .highlights-section {
    margin-top: 3rem;
  }

  .students-life-block .highlights-section .highlight-card .highlight-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .students-life-block .visual-grid .main-visual .overlay-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    display: inline-flex;
  }
}






.calendar {
  width: 320px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.calendar-header {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;

}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.weekdays div {
  font-weight: bold;
  padding: 10px 0;
  color: #333;
}

.days div {
  padding: 10px 0;
  margin: 2px;
  border-radius: 50%;
  transition: 0.3s;
}

.days div:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

.today {
  background-color: #4caf50;
  color: white;
}





/* Our Campus */



.page-title-heading {
  font-size: 45px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.12;
  order: 1;
  color: #62ffe8;
  margin-bottom: 10px;
}

.rr-section-title-1 {
  font-size: clamp(2.75rem, 2.75rem + 1.1458vw, 4.125rem);
  /* font-family: "Gabriela", times, serif; */
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 1.12;
  order: 1;
  color: var(--theme-color2);
}


.rr-section-title-2 {
  font-family: "Roboto", sans-serif;
  background: rgb(255, 255, 255, 0.5);
  padding: 6px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0px;
  letter-spacing: 0px;
  line-height: 1;
  color: black;
  margin-top: 5px;
  max-width: max-content;
}

.rr-section-title-2 h4 {
  margin-bottom: 0px !important;
}

.rr-section-title {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  margin-bottom: 0;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--theme-color2);
}

.AboutCampus {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  padding: 30px;

}

.AboutCampus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/11.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  /* Adjust the blur level as needed */
  z-index: 0;
}

.AboutCampus .about-area {
  position: relative;
  z-index: 1;
}




.pictureSegment {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.pictureSegment::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/image18.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  /* Adjust the blur level as needed */
  z-index: 0;
}

.pictureSegment .about-area {
  position: relative;
  z-index: 1;
}


.jigyasa-img {
  position: relative;
}

.jigyasa-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 40px 40px 40px 0;
  transition: var(--transition);
}

.jigyasa-img img {
  height: 300px;
  width: 100%;
  border-radius: 40px 40px 40px 0;
  margin-bottom: 30px;
}




@media (max-width:767px) {
  .page-title-heading {
    font-size: 30px !important;
  }

  .rr-section-title-2 h4 {
    font-size: 15px !important;
  }

  .rr-section-title {
    font-size: 20px !important;
  }

  .lakshyaContent {
    padding: 0px !important;
  }

  .lakshya-img {
    width: 200px !important;

  }

  .lakshya-text {
    padding-top: 30px !important;
  }

  .rr-about-title-box h3 {
    font-size: 17px;
  }

  .rr-about-title-box h4 {
    font-size: 12px;
  }

  .rr-about-title-box p {
    padding: 10px;
  }

  .reach-1 {
    margin-top: 20px;
  }

  .reach-2 {
    margin-top: 20px;
  }

  .reach-3 {
    margin-top: 20px;
  }


}







/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Raleway-Black;
  src: url('../fonts/raleway/Raleway-Black.ttf');
}

@font-face {
  font-family: Raleway-SemiBold;
  src: url('../fonts/raleway/Raleway-SemiBold.ttf');
}

@font-face {
  font-family: Raleway-Bold;
  src: url('../fonts/raleway/Raleway-Bold.ttf');
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}



/*---------------------------------------------*/


/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus,
input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: #adadad;
}

input:-moz-placeholder {
  color: #adadad;
}

input::-moz-placeholder {
  color: #adadad;
}

input:-ms-input-placeholder {
  color: #adadad;
}

textarea::-webkit-input-placeholder {
  color: #adadad;
}

textarea:-moz-placeholder {
  color: #adadad;
}

textarea::-moz-placeholder {
  color: #adadad;
}

textarea:-ms-input-placeholder {
  color: #adadad;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}



/*//////////////////////////////////////////////////////////////////
[ Contact ]*/

.container-contact100 {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.wrap-contact100 {
  max-width: 960px;
  background: #fff;
  border-radius: 2px;
  padding: 66px 115px 59px 115px;
  position: relative;
}


/*==================================================================
[ Form ]*/

.contact100-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact100-form-title {
  display: block;
  width: 100%;
  font-family: Raleway-Black;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 32px;
}



/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: transparent;
  margin-bottom: 35px;
}

.rs1-wrap-input100 {
  width: calc((100% - 30px) / 2);
}

.label-input100 {
  font-family: Raleway-SemiBold;
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

.input100 {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border-radius: 2px;

  font-family: Raleway-SemiBold;
  font-size: 20px;
  color: #686868;
  line-height: 1.2;
  padding: 0 28px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  margin-top: 10px;
}


/*---------------------------------------------*/
input.input100 {
  height: 62px;
}


textarea.input100 {
  min-height: 162px;
  padding-top: 19px;
  padding-bottom: 13px;
}

.input100:focus {
  background: #e6e6e6;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5px;
}

.wrap-contact100-form-btn {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
}

.contact100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #df2351;
  background: linear-gradient(to right, #A0E7A0, #116E63);
  top: 0;
  left: -100%;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 150px;
  height: 62px;

  font-family: Raleway-Bold;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.wrap-contact100-form-btn:hover .contact100-form-bgbtn {
  left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 992px) {
  .wrap-contact100 {
    padding: 66px 80px 59px 80px;
  }
}

@media (max-width: 768px) {
  .rs1-wrap-input100 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap-contact100 {
    padding: 66px 15px 59px 15px;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 34px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 10px;
  pointer-events: none;

  font-family: Raleway-SemiBold;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 34px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}


/*==================================================================
[ Contact more ]*/

.contact100-more {
  display: block;
  max-width: 960px;
  font-family: Raleway-SemiBold;
  font-size: 20px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  padding: 40px 0 10px 0;
}



.contact-one {
  position: relative;
  padding: 110px 0px 80px;
}

.contact-one_info-column {
  position: relative;
  margin-bottom: 30px;
}

.contact-one_info-outer {
  position: relative;
}

.contact-one_info-list {
  position: relative;
}

.contact-one_info-list li {
  position: relative;
  min-height: 80px;
  color: black;
  font-size: 16px;
  padding-top: 10px;
  margin-bottom: 20px;
  padding-left: 100px;
}

.contact-one_info-list li .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 40px;
  color: white;
  background-color: var(--theme-color2);
  font-family: "flaticon_monic-flat";
}

.contact-one_info-list li strong {
  position: relative;
  display: block;
  font-weight: 700;
  color: grey;
  font-size: 18px;
  margin-top: 10px;
}




.gallery {
  display: flex;
  gap: 15px;
}

.card {
  width: 100%;
  cursor: pointer;
  text-align: center;
  border: 1px solid black;
}

.card img {
  border-radius: 6px;
  width: 100%;
}

.card-img {
  height: 200px;
}


.sectionClass{
  margin-top: 30px;
  margin-bottom: 30px;
}





:root{
  --color-text: #616161;
  --color-text-btn: #ffffff;
  --card1-gradient-color2: #A0E7A0;
  --card1-gradient-color1: #116E63;
  --card2-gradient-color1: #ffae00;
  --card2-gradient-color2: #f9e866;
}


.card-wrap{
  
  width: 200px;
  background: #fff;
  border-radius: 20px;
  border: 5px solid #fff;
  overflow: hidden;
  color: var(--color-text);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
              rgba(0, 0, 0, 0.23) 0px 6px 6px;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.card-wrap:hover{
  transform: scale(1.1);
}
.cardheader{
  height: 150px;
  width: 100%;
  background: red;
  border-radius:100% 0% 100% 0% / 0% 50% 50% 100%;
  display: grid;
  place-items: center;

}

.cardheader i{
  color: #fff;
  font-size: 72px;
}
/* .card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  margin: 0 auto;
} */
.card-title{
  font-size: 23px;
  font-weight: 700;
  color: var(--theme-color2);
  position: relative;
  border-bottom: var(--theme-color2);
  text-align: center;
  padding-top: 20px;
  
}
.card-text{
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
}
.card-btn{
  border: none;
  border-radius: 100px;
  padding: 5px 30px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.cardheader.one{
  background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}
.cardheader.two{
  background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}
.cardheader.three{
  background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}
.cardheader.four{
  background: linear-gradient(to bottom left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}
.cardheader.five{
  background: linear-gradient(to bottom left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}

/* .card-btn.one{
  background: linear-gradient(to left, var(--card1-gradient-color1), var(--card1-gradient-color2));
}
.card-btn.two{
  background: linear-gradient(to left, var(--card2-gradient-color1), var(--card2-gradient-color2));
}
.card-btn.three{
  background: linear-gradient(to left, var(--card3-gradient-color1), var(--card3-gradient-color2));
}
.card-btn.four{
  background: linear-gradient(to left, var(--card4-gradient-color1), var(--card4-gradient-color2));
} */

@media (max-width:767px) {
  .card-wrap{
    margin-left: 100px !important;
  }
}