/* Testimonial Section */
.testimonial-section{
    background: linear-gradient(rgba(36, 39, 38, 0), rgba(36, 39, 38, 0)),
      rgba(36, 39, 38, 0) url(../images/light-gold-background.jpg) no-repeat center;
      padding-top: 50px;
      padding-bottom: 50px;
      background-attachment: fixed;
    background-size: cover;
    text-align: center;
  }

.testimonial-section .head-box h2 {
    font-family: 'Poppins';
    font-size: 2rem;
    color: rgb(223, 223, 223);
}

/* Testimonial Carousel */
.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
}

.testimonial-content i {
    color: #f39c12;
    font-size: 2rem;
}

.testimonial-content p {
    /*font-family: 'Abril Fatface', cursive;*/
    font-size: 1rem;
    color: rgb(150, 150, 150);
    margin-top: 10px;
}

.testimonial-footer h4 {
    color: #aaff00;
    margin-top: 10px;
}

/* Navigation Arrows */
.testimonial-nav {
    margin-top: 20px;
}

.testimonial-nav button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    margin: 0 10px;
    transition: color 0.5s ease;
}

.testimonial-nav button:hover {
    color: #f2ff00;
}
