/* Frontend Styles for Kielo Testimonials */


.owl-carousel .owl-stage {
    display: flex;
    align-items: center;
  }

  .kielo-testimonials-carousel .owl-item.active  {
    opacity: 1;
}

/* fade out not active items */
.kielo-testimonials-carousel .owl-item:not(.active)  {
    /* transform: translateY(0); */
    opacity: 0.5;
}
/* add transition to  items */
.kielo-testimonials-carousel .owl-item{
    transition: all 0.3s ease !important;
}

.kielo-testimonials-carousel {
    max-width: 100%;
    margin: 20px 0;
}

.kielo-testimonials-carousel .owl-stage-outer {
    padding: 20px 0;
}

.testimonial-slide {
    padding: 0 15px;
}

.testimonial-content {
    padding: 30px;
    border-radius: 10px;
    background: #E0F4FF;
    transition: box-shadow 0.3s ease;
}

/* .testimonial-content:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
} */

.testimonial-page {
    color: var(--Dark-grey-text, #848B8F);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--black, #000);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; 
    margin-bottom: 22px;
}

.testimonial-line {
    width: 100px;
    height: 2px;
    flex-shrink: 0;
    background: var(--Kielo-Blue, #06274F);
    margin-bottom: 19px;
}


.testimonial-author {
    margin-bottom: 0;
}

.author-name, .author-position, .author-company {
    color: var(--black, #000);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    margin-bottom: 5px;
}

.author-position, .author-company{
    font-size: 16px;
    line-height: 20px;
}


.testimonial-date {
    display: none;
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Owl Carousel Customizations */
.kielo-testimonials-carousel .owl-nav {
    text-align: center;
    margin-top: 20px;
}

.kielo-testimonials-carousel .owl-nav button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.kielo-testimonials-carousel .owl-nav button:hover {
    background: #005a87;
}

.kielo-testimonials-carousel .owl-nav button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.kielo-testimonials-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.kielo-testimonials-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.kielo-testimonials-carousel .owl-dots .owl-dot span {
    display: block;
    width: 20px;
    height: 20px;
    background: #D9D9D9;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.kielo-testimonials-carousel .owl-dots .owl-dot.active span,
.kielo-testimonials-carousel .owl-dots .owl-dot:hover span {
    background: #06274F;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 20px;
        margin: 0 5px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-position {
        font-size: 14px;
    }
    
    .author-company {
        font-size: 13px;
    }
    
    .testimonial-quote {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .testimonial-content {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .kielo-testimonials-carousel .owl-nav button {
        padding: 8px 12px;
        font-size: 14px;
    }
}
