.about-banner-image {
    /* background-image: url(./assets/img/banner/banner-img-2.png);
      height: 80vh;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat; */
    background-color: #232122;
    margin-top: -20px;
    height: auto;
    padding: 50px;
}

/* .contact-banner-image-overlay{
      background-color: rgba(0, 0, 0, 0.534);
      height: 80vh;
  } */


.about-heading {
    text-align: center;
    text-shadow: 0 0 5px #fd8623, 0 0 15px #fd8623, 0 0 20px #fd8623, 0 0 40px #fd8623, 0 0 60px #232122, 0 0 10px #ff8d00, 0 0 98px #232122;
    color: #232122;
    font-size: 60px;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 15px;
}

.testimonial-slide {
    display: flex !important;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    object-fit: cover;
    /* border-radius: 100%; */
}

.testimonial-content {
    flex: 1;
}

.testimonial-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.testimonial-content p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-slide {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .testimonial-image img {
        max-width: 200px;
        margin: 0 auto;
    }

    .testimonial-content h3 {
        font-size: 20px;
    }

    .testimonial-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        margin: 20px auto;
    }

    .testimonial-image img {
        max-width: 150px;
    }

    .testimonial-content h3 {
        font-size: 18px;
    }

    .testimonial-content p {
        font-size: 13px;
    }
}