.testimonial-slider {
    width: 100%;
    position: relative;
}

.testimonial-slider .slick-list {
    padding: 20px 0;
}

.testimonial-slide {
    outline: none;
}

.testimonial-content {
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.testimonial-content:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    flex: 0 0 100px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 165%;
    text-align: left;
    padding-left: 24px;
}

.testimonial-rating {
    margin-bottom: 15px;
    display: none;
}

.testimonial-rating .star {
    color: #ddd;
    font-size: 20px;
}

.testimonial-rating .star.filled {
    color: #ffb400;
}

.client-name {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: normal !important;
    text-align: left !important;
    margin: 0;
}

.client-designation {
    font-size: 12px;
    color: #ffffff !important;
    display: block;
    text-align: left !important;
}

.testimonial-meta {
    flex: 0 0 auto;
}

.slick-arrow {
    display: none !important;
}

/* Arrows */
.testimonial-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    color: #333;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0;
}

.testimonial-slider .slick-arrow:hover {
    background: #f8f8f8;
}

.testimonial-slider .slick-arrow:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    line-height: 40px;
}

.testimonial-slider .slick-prev {
    left: -20px;
}

.testimonial-slider .slick-prev:before {
    content: '\f104';
}

.testimonial-slider .slick-next {
    right: -20px;
}

.testimonial-slider .slick-next:before {
    content: '\f105';
}

/* Dots */
.testimonial-slider .slick-dots {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: right;
    padding: 0;
    margin: 0;
    list-style: none;
}

.testimonial-slider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.testimonial-slider .slick-dots li button {
    font-size: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8F00E6;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 5px solid #8F00E6;
}

.testimonial-slider .slick-dots li.slick-active button {
    background: #333;
}

@media (max-width: 767px) {
    .testimonial-slider .slick-arrow {
        display: none !important;
    }
    
    .testimonial-slide {
        padding: 0 10px;
    }
}