/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
}

.testimonial-slider {
    position: relative;
    padding: 0 15px;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(37, 99, 235, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.rating {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #64748b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e2e8f0;
}

.client-info h5 {
    margin-bottom: 5px;
    color: #1e293b;
    font-size: 18px;
}

.client-info span {
    font-size: 14px;
    color: #64748b;
}

/* Slick Slider Styles */
.slick-slide {
    outline: none;
}

.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background-color: #cbd5e1;
    text-indent: -9999px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #2563eb;
    transform: scale(1.2);
}

/* Slider Navigation Arrows */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #2563eb;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-arrow:hover {
    background-color: #2563eb;
    color: white;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 70px 0;
    }
    
    .testimonial-content {
        padding: 25px;
    }
    
    .slick-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slick-prev {
        left: -10px;
    }
    
    .slick-next {
        right: -10px;
    }
}