/* Testimonials Carousel Fix - Ensure visibility when JS fails */

/* Make sure all testimonial boxes are initially hidden except first */
.testimonial-slider-area.slider1 .testimonial-box {
    display: none;
}

.testimonial-slider-area.slider1 .testimonial-box:first-child {
    display: block;
}

/* Same for images */
.images-area2.slider2 .img1 {
    display: none;
}

.images-area2.slider2 .img1:first-child {
    display: block;
}

/* When Slick is initialized, let it handle visibility */
.slick-initialized .testimonial-box,
.slick-initialized .img1 {
    display: block !important;
}

/* Ensure slick slides are properly styled */
.slick-slide {
    display: none;
    float: left;
    height: auto;
    min-height: 1px;
}

.slick-slide.slick-active {
    display: block;
}

/* Arrow buttons styling */
.testimonial-arrows {
    margin-top: 30px;
}

.testimonial-arrows .prev-arrow,
.testimonial-arrows .next-arrow {
    display: inline-block;
    margin: 0 10px;
}

.testimonial-arrows button {
    background: #CBCD30;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #073B3A;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrows button:hover {
    background: #073B3A;
    color: #CBCD30;
}

/* Debug helper - remove when working */
.testimonial-debug {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 9999;
}