/* Elementor Premium Testimonial Carousel Styles */

.epf-testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
}

.epf-testimonial-carousel {
    width: 100%;
    padding-bottom: 45px !important; /* Space for pagination bullets */
    overflow: hidden;
}

/* Card Styling */
.epf-testimonial-card {
    background-color: #f8fafc; /* Very light slate-gray background */
    border: 1px solid #f1f5f9;  /* Subtle light border */
    border-radius: 16px;       /* Rounded corners from reference image */
    padding: 35px 35px 30px 35px;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 220px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-sizing: border-box;
}

.epf-testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.03);
}

/* Quote Icon Overlay */
.epf-testimonial-quote-wrapper {
    margin-bottom: 12px;
    color: #cbd5e1; /* Default soft light blue/gray color */
}

.epf-testimonial-quote-icon {
    font-size: 38px;
    line-height: 1;
    font-family: inherit;
    font-weight: bold;
    display: inline-block;
}

/* Testimonial Text */
.epf-testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #334155; /* Soft charcoal text */
    margin: 0 0 25px 0;
    flex-grow: 1;
    font-style: normal;
}

/* Author Profile Section */
.epf-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

/* Avatar Image & Initials Badge */
.epf-testimonial-avatar,
.epf-testimonial-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.epf-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.epf-testimonial-initials {
    background-color: #2563eb; /* Vibrant blue badge background from image */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

/* Author Details (Name & Role) */
.epf-testimonial-info {
    display: flex;
    flex-direction: column;
}

.epf-testimonial-name {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a; /* Slate 900 */
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.epf-testimonial-role {
    font-size: 12px;
    color: #64748b; /* Slate 500 */
    margin: 0;
    line-height: 1.2;
}

/* Custom Swiper Pagination overriding (bullets pill shape) */
.epf-testimonial-carousel-wrapper .swiper-pagination {
    bottom: 5px !important;
}

.epf-testimonial-carousel-wrapper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1; /* Soft gray bullet */
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.epf-testimonial-carousel-wrapper .swiper-pagination-bullet:hover {
    background-color: #94a3b8;
}

/* Active Indicator - Stretches bullet into a horizontal pill shape */
.epf-testimonial-carousel-wrapper .swiper-pagination-bullet-active {
    width: 22px; /* Active bullet is wide pill shape */
    border-radius: 4px;
    background-color: #2563eb; /* Matches active color */
}
