/* ============================================================
   HELIOS TESTIMONIAL SECTION — PREMIUM SLIDER
   ============================================================ */

.testimonials-section {
    padding: 100px 0;
    background: var(--light, #f5f7fa);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 83, 243, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonial-slider {
    padding: 40px 10px 80px;
}

.testimonial-card {
    background: var(--white, #ffffff);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 83, 243, 0.08);
    border-color: rgba(16, 83, 243, 0.1);
}

.ts-quote-icon {
    font-size: 40px;
    color: var(--primary, #1053f3);
    opacity: 0.15;
    margin-bottom: 25px;
}

.ts-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text, #4a5568);
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
}

.ts-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ts-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ts-info h4 {
    font-family: var(--title-font, 'Manrope', sans-serif);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark, #0f1117);
}

.ts-info span {
    font-size: 14px;
    color: var(--primary, #1053f3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ts-rating {
    margin-top: 15px;
    color: #ffc107;
    font-size: 13px;
    display: flex;
    gap: 4px;
}

/* Swiper Pagination styling */
.testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary, #1053f3);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}
