*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section{
    width: 100%;
    height: fit-content;
}

/* hearo start */

.home {
  width: 100%;
  height: 110vh;
  overflow: hidden;
  position: relative;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 1s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}


/* Navigation dots */
.slider-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nav-dot {
  height: 14px;
  width: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-dot.active {
  background-color: #40D3DC;
}

/* Responsive */
@media (max-width: 768px) {
  .home {
    height: 60vh;
  }

  .slide img {
    height: 60vh;
  }

  .nav-dot {
    height: 10px;
    width: 10px;
  }
}

        
/* hearo end */

/* about_us start */
.about_us{
height: fit-content;
}
.about_us_heading{
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}
/* about_us end */
/* about_us start */
.video_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  iframe{
    border-radius: 10px;
  }
}
.video_gallery_heading{
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}
/* about_us end */
/* inquiry start */
.inquiry{
height: 15vh !important;
box-shadow: inset 0px -1px 18px -11px rgba(0,0,0,0.75);
}

/* inquiry end */
/* about_teachers start */
.about_teachers_heading{
    text-align: center;
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: bold;
}
/* about_teachers end */
/* features_heading start */
.features{
  height: fit-content;
}
.features_heading{
    text-align: center;
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: bold;
}
/* features_heading end */
/* contact_us start */
.contact_us{
  height: fit-content;
}
/* contact_us end */