
/* scroll */
/* Logo Carousel Styles */

.logo-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 40px 0;
    /* optional spacing */
}

.logo-carousel {
    display: flex;
    width: calc(200px * 10);
    /* number of logos times width, adjust if needed */
    animation: scroll 20s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 150px;
    /* same as image width */
    height: 100px;
    /* Added: Set a fixed height for the logo item box */
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    /* Optional: Add a border to visualize the box */
}

.logo-item img {
    width: 100%;
    height: 100%;
    /* Changed: Allow image to take up 100% of the parent height */
    display: block;
    object-fit: contain;
}


/* Infinite scrolling animation */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.myimg {
    width: 1000px;
    height: 450px;
}

@media screen and (min-width: 600px) {
    .myimg {
        padding-left: 650px;
        width: 1000px;
        height: 420px;
    }
}

.testimonial-container {
  background-color: #de0f0bd6;
  color: #fff;
  border-radius: 15px;
  margin: 20px auto;
  padding: 50px 80px;
  max-width: 768px;
  position: relative;
}

.fa-quote {
  color: rgba(255, 255, 255, 0.3);
  font-size: 28px;
  position: absolute;
  top: 70px;
}

.fa-quote-left {
  left: 40px;
}

.fa-quote-right {
  right: 40px;
}

.testimonial {
  line-height: 28px;
  text-align: justify;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .user-image {
  border-radius: 50%;
  height: 75px;
  width: 75px;
  object-fit: cover;
}

.user .user-details {
  margin-left: 10px;
}

.user .username {
  margin: 0;
}

.user .role {
  font-weight: normal;
  margin: 10px 0;
}

.progress-bar {
  background-color: #fff;
  height: 4px;
  width: 100%;
  transform-origin: left;
  animation: grow 10s linear infinite;
}

@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 20px 30px;
  }

  .fa-quote {
    display: none;
  }
}
.test {
  background-color: #f4f4f4;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 10px;
 
}