.section-heading {
  /*font-family: Georgia, "Times New Roman", Times, serif;*/
  font-family: "Baloo 2", sans-serif;
  font-weight: 600;
}

.title {
    color: #2c4073 !important;
}

.breadcrumb-section {
  width: 100%;
  height: 200px;
  background-image: url("/assets/breadcrumb.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
}

.breadcrumb-section::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 1;
}

#stats-section {
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  position: relative;
}

#stats-section::after {
    content: " ";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.5;
    background-color: #fab319;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

#stats-section::before {
    content: " ";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.5;
    background-color: #fab319;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

#stats-section .container {
  z-index: 2;
}

.stat-card {
  /* background-color: rgba(0, 0, 0, 0.5); */
  padding: 2rem;
  border-radius: 15px;
  /*border: 1px solid #2c4073;*/
  transition: transform 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.stat-card p {
  color: black;
}

.stat-card:hover {
  transform: translateY(-10px);
  /*background-color: rgba(0, 0, 0, 0.7);*/
}

.stat-card:hover p {
  color: white;
}

.stat-card .counter {
  display: inline-block;
  color: white;
}

.stat-card span {
  margin-left: -10px;
}

/* Teacher Section */
.teacher-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.teacher-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid brown;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.teacher-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: brown;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-out;
}

.social-icon:hover {
  transform: translateY(-4px);
  cursor: pointer;
}

/* Mission Section */
#mission-section {
  background-image: url("/assets/scholl-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Intro Section */
.intro-card {
  padding: 15px;
  background-color: whitesmoke;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: all 0.4s ease;
}

.intro-card:hover h5 {
  color: brown;
}

.intro-card img {
  margin-bottom: 5px;
}

/* Class Carousel */
#class-heading {
  position: relative;
}

.class-teacher {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.class-teacher img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.owl-stage-outer {
  padding: 10px 12px !important;
  background-color: transparent !important;
}
