

/* Custom styles for testimonial slider */
.testimonial-active-two {
    position: relative;
    overflow: hidden;
}

.testimonial-item-two {
    padding: 0px;
    height: 100%;
}

.testimonial-content-two {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.testimonial-content-two .rating {
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 18px;
}

.testimonial-content-two p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #4a6cf7;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.avatar-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4a6cf7;
    padding: 2px;
}

.avatar-info h2.title {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.avatar-info span {
    color: #666;
    font-size: 14px;
}

/* Slick slider customizations */
.testimonial-nav-two {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 40px;
    gap: 20px;
} */

.testimonial-nav-two .slick-arrow {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #4a6cf7;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav-two .slick-arrow:hover {
    background: #4a6cf7;
    color: white;
    /* transform: scale(1.1); */
}

.testimonial-nav-two .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 20px;
    gap: 10px;
}

.testimonial-nav-two .slick-dots li {
    display: inline-block;
}

.testimonial-nav-two .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-nav-two .slick-dots li.slick-active button {
    background: white;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-content-two {
        padding: 25px;
    }

    .testimonial-nav-two {
        flex-wrap: wrap;
    }

    .testimonial-nav-two .slick-arrow {
        width: 45px;
        height: 45px;
    }
}
}