.disc{
  list-style-type: disc;
  padding-left: 20px;
}

.list-circle{
  list-style-type: circle;
  padding-left: 20px;
}

.roman{
  list-style-type: upper-roman;
  padding-left: 20px;
}

.edu-content-2 .disc{
  margin-bottom: 20px;
}

.news-content ul.disc{
  margin-bottom: 20px;
}


.edu-content-2 h2 {
  margin-top: 20px;
}


.services-img img {
  filter: brightness(0.5);
}

.blog-top-content .disc {
  margin-bottom: 20px;
}

.empty-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  padding: 20px;
  background-color: #111;
}

.services-content ol li{
  margin-bottom: 20px;
}

.blog-top-content a{
  text-decoration: none;
}


.heading{
  font-size: 1.3em;
}

#edu-outer{
  width: 25%;
  height: auto;
}

#edu-outer h3 a{
  font-size: 1.125rem;
}

.outer h3{
  padding-left: 20px;
  padding-right: 20px;
}

.educlient-carousel {
  overflow: hidden;
  background: #ffffff;
  position: relative;
  margin: 0 0 100px 0;
}

.educarousel-track {
  display: flex;
  width: calc(100vw * 2);
  animation: scrollCarousel2 10s ease-in-out infinite;
}

.educarousel-track img {
  height: 30vh;
  object-fit: contain;
  width: 100%;
}

.education-head{
  display: flex;
  justify-content: center;
}
/* Animation for scrolling */
@keyframes scrollCarousel2 {
  0% {
    transform: translateX(0);
  }

  45% {
    transform: translateX(0);
    /* Stay at first image */
  }

  50% {
    transform: translateX(-100vw);
    /* Slide to second image */
  }

  95% {
    transform: translateX(-100vw);
    /* Stay at second image */
  }

  100% {
    transform: translateX(0);
    /* Slide back to first image */
  }
}

/* Responsive for Tablets */
@media (max-width: 992px) {
  .educarousel-track img {
    height: 20vh;
  }
}

/* Responsive for Mobiles */
@media (max-width: 576px) {
  .educarousel-track img {
    height: 18vh;
  }
}


.education-head h2 a :hover{
  text-decoration: none;
}

/* Gallery Section */

/* Video Styles (Non-Disruptive) */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-item1 {
      flex: 1 1 150px;
  }
}

@media (max-width: 480px) {
  .gallery-item1 {
      flex: 1 1 120px;
  }

  .video-wrapper {
      padding-top: 75%; /* More height for mobile view */
  }
}
.single-team video {
    width: 80%;
    height: 550px;
    object-fit: cover;
    
}

/* ---------- Responsive Design for Education Page ---------- */

/* Tablets and below */
@media (max-width: 991px) {
  #edu-outer {
    width: 50%;
    margin: 0 auto;
  }

  .outer h3 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1.1rem;
  }

  .educarousel-track img {
    height: 25vh;
  }

  .heading {
    font-size: 1.1em;
  }

  .education-head {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  #edu-outer {
    width: 90%;
  }

  .outer h3 {
    font-size: 1rem;
    padding: 0 5px;
  }

  .educarousel-track {
    flex-direction: column;
    width: 100%;
    animation: none;
  }

  .educarousel-track img {
    height: 20vh;
    margin-bottom: 10px;
  }

  .heading {
    font-size: 1em;
  }

  .disc,
  .list-circle,
  .roman {
    padding-left: 15px;
  }

  .education-head {
    padding: 0 10px;
  }
}
