/** @format */
* {
  margin: 0;
  padding: 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
::-webkit-scrollbar {
    display: none;
}

body {
    /*font-family: "Josefin Sans", serif;*/
    font-family: "Nunito Sans", serif;
    font-optical-sizing: auto;
    color: #020f2f;
}
.bg-theme-dark{
    background-color: #020f2f;
}
.text-theme-dark{
    color: #020f2f;
}
a {
  text-decoration: none;
}
.car_image {
  max-height: 250px;
}

.footer-bg{
    background-color: #020f2f;
}
.ui-widget-header {
  background: #198754;
  border: none;
}

.registration-now-btn {
    font-size: 18px;
    padding: 15px 40px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(90deg, rgb(189, 25, 25), rgb(71, 71, 204), rgb(18, 230, 18));
    background-size: 300%;
    animation: rgb-effect 3s linear infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.registration-now-btn:hover {
    transform: scale(1.15);
    color:  #fff;
    font-weight: bold;
    transition: ease-in-out 0.5s;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.registration-now-btn:focus {
    outline: none;
    border: 2px solid #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

@keyframes rgb-effect {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.carousel-indicators {
  /* display: none; */
  margin-bottom: 96px;
}

.carousel-indicators button.thumbnail {
  width: 100px;
}
.carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}
.carousel-indicators {
  position: static;
}
.main-slider-img{
    height: 600px;
}
.testimonial-card {
  padding: 1rem 0;
}
.gallery-slider{
    height: 400px;
}
.testimonial-container {
  /* margin: 120px auto; */
  background-color: #f0f0f0;
  padding: 32px;
  /* padding-left: 86px; */
  /* padding-right: 48px; */
  /* padding: 32px 48px 32px 86px; */

  border-radius: 8px;
  position: relative;

  display: flex;
  align-items: center;
  gap: 86px;
}

.testimonial_img {
  height: 120px;
  width: 160px;
  border-radius: 4px;
  transform: scale(1.5);
  margin-left: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.main-content{
    min-height: 85vh;
}

.testimonial-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
}

.testimonial-author {
  font-size: 14px;
  margin-bottom: 4px;
}

.testimonial-job {
  font-size: 12px;
}

#datepicker {
  display: flex;
  justify-content: center;
  align-items: center;
}

.teachers_profile_container {
  display: grid;
  column-gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (min-width: 992px) {
  .carousel-gallery {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 544px) {
  .car_image {
    height: 350px;
  }
  .gallery-slider {
      transform: scale(1.5);
      height: 200px;
  }

  .testimonial_img {
    height: 180px;
    width: 200px;
    border-radius: 4px;
    transform: scale(1.5);
    margin-top: 32px;
  }

  .testimonial-container {
    display: flex;
    align-items: center;
    row-gap: 86px;
    flex-direction: column;
  }
  .teachers_profile_container {
    display: grid;
    column-gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }
    .main-slider-img{
        transform: scale(1.2);
        height: 200px;
    }
}
