.top-header{
  background: url('../images/banner-our-customers.webp') no-repeat center center;
}
.logo-box {
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    height: 280px; /* Equal height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers logo vertically */
    align-items: center;     /* Centers logo horizontally */
    padding: 15px;
    text-align: center;
    position: relative;
    margin-bottom: 25px;

}

.logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.logo-caption {
    position: absolute;
    bottom: 25px;   /* <--- exact distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--gray-color);
    width: 100%;
    text-align: center;
}
.testimonials{
    background: var(--gray-light-color);
    padding:100px 0;
}
.testimonial-box{
    background:#fff;
    border-radius: 10px;
    max-width:900px;
    margin:0 auto;
    margin-top:50px;
    padding:75px;
    box-shadow: var(--shadow-soft);
    height:375px;
    align-content: center;
}
.testimonial-box img{
    width:40px;
}
.testimonial-box p{
    margin:30px 0;
}
.testimonial-box h3{
    font-size:18px;
}
.testimonial-box h4{
    font-size:18px;
    font-weight: 400;
}
.testimonials .thumbnails{
    display:flex;
    justify-content: center;
    margin-top:50px;
}
.testimonials .thumbnails div{
    border:3px solid var(--gray-color);
    margin:0 10px;
    border-radius: 100px;
    align-items: center;
    display: flex;
   justify-content: center;
}
.testimonials .thumbnails div img{
    width:80px;
    height:80PX;
    border-radius: 100px;
}
.testimonials .thumbnails .thumb {
    border:3px solid var(--gray-color);
    margin:0 10px;
    border-radius:100px;
    cursor:pointer;
    transition:0.3s;
}

.testimonials .thumbnails .thumb.active {
    border-color: var(--bs-red); /* OR your brand color */
    transform: scale(1.08);
}

/* Fade ONLY the content inside */
.testimonial-content {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.testimonial-content.fade {
    opacity: 0;
}


/* Thumbnail highlight */
.testimonials .thumbnails .thumb.active {
    border-color: #ED1C24;  /* highlight color */
    transform: scale(1.08);
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .testimonials .thumbnails {
        flex-wrap: wrap;
        gap: 10px;
    }

    .testimonials .thumbnails .thumb img {
        width: 60px;
        height: 60px;
    }

    .testimonial-box {
        padding: 40px 25px;
    }
 
}
@media (max-width: 1200px) {
   .logo-box{
        height:215px;
    }
}
