.testimonial-section-background {
    height: 10px;
    background: var(--background-color);
}

.testimonial-section-background-small {
    height: 1px;
    margin: 20px 20px 0 20px;
    background: var(--background-color);
}

/* #testimonials-section {
  min-width: 100px;
  background: var(--background-color-dark);
}

#testimonials-section div {
  min-width: 600px;
} */

/* Carousel container */
#carousel-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    background-color: var(--background-color-dark); /* Black background for slides */
}

/* Styling for each slide */
.carousel-slide .testimonial {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: var(--background-color-dark); /* Black background for slides */
    color: #fff; /* White text */
}



/* Common button styling */
.nav-btn {
    position: absolute;
    bottom: 90px;
    z-index: 10;
    transform: translateY(-50%);
    background-color: var(--background-color-dark);
    color: #fff; /* White text on buttons */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px; /* Slightly rounded corners for a modern look */
}

.nav-btn:hover {
    background-color: #666; /* Lighten button background on hover */
}

/* Positioning buttons */
.nav-btn.prev { left: 10px; }
.nav-btn.next { right: 10px; }

/* Button icons or text might be large, adjust font size if necessary */
.nav-btn {
    font-size: 1.8rem; /* Larger text/icons */
}

/* Additional styles for text and heading */
.testimonial-person, .testimonial-person-position, .testimonial-person-contact {
    margin: 10px 0; /* Add some spacing */
}

.testimonial-text {
    max-width: 850px; 
    margin: 50px auto;
    padding: 20px 10px; /* Add padding to the border */
}

.testimonial-person-position {
  font-size: 0.8rem;  
  font-style: italic;
}

.testimonial-person {
    font-weight: bold; /* Make the author name stand out */
}

.highlight-text {
    background-color: var(--background-color-off); /* Highlight text with accent color */
    border-radius: 10px;;
    padding: 2px 10px; /* Add padding to the border */
}

.dash-border {
    border: 1px dashed var(--background-color-off); /* Dashed border with accent color */
    border-radius: 12px; /* Slightly rounded corners */
}

.container {
    margin-left: auto;
    margin-right: auto;
}

/* .te-testimonials div {
    max-width: 700px;
} */

/* SOUND WAVE ANIMATION */
.sound-wave {
    display: flex;
    justify-content: center;
}
  
.sound-bar {
    width: 1px;
    height: 4px;
    background-color: var(--background-color);
    border-radius: 1px;;
    margin-right: 6px;
    margin-top: -2px;
    transform: scaleY(1);
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 1;
}

@keyframes bar-scale-sm {
    0%, 50% {
      transform: scaleY(1);
    }
    25% {
      transform: scaleY(6);
    }
    75% {
      transform: scaleY(4);
    }
}

@keyframes bar-scale-md {
    0%, 50% {
      transform: scaleY(2);
    }
    25% {
      transform: scaleY(6);
    }
    75% {
      transform: scaleY(5);
    }
}

@keyframes bar-scale-lg {
    0%, 50% {
      transform: scaleY(8);
    }
    25% {
      transform: scaleY(4);
    }
    75% {
      transform: scaleY(6);
    }
}

@keyframes bar-scale-xl {
    0%, 50% {
      transform: scaleY(1);
    }
    25% {
      transform: scaleY(7);
    }
    75% {
      transform: scaleY(11);
    }
}

.wrapper {
    margin: auto;
}

.extra-btn {
  margin-top: -20px;
  margin-left: -20px;
}

@media (max-width: 768px) {
  
  .carousel-slide .testimonial {
    width: 100%;
  }



}