/**
 * Testimonial Slider CSS
 */

.rot-testimonial-slider-container {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
}

.rot-testimonial-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rot-testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.rot-testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #f0f0f0;
}

.rot-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rot-testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1;
    position: relative;
}

.rot-testimonial-content:before {
    content: "\201C";
    font-size: 60px;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.rot-testimonial-rating {
    margin-bottom: 15px;
    font-size: 18px;
    color: #FFB800;
}

.rot-testimonial-meta {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.rot-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #333;
}

.rot-testimonial-position {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 5px;
    color: #666;
}

.rot-testimonial-project {
    font-size: 12px;
    font-style: italic;
    color: #888;
}

/* Pagination & Navigation */
.rot-testimonial-pagination {
    position: static;
    margin-top: 20px;
}

.rot-testimonial-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.rot-testimonial-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: #4a90e2;
}

.rot-testimonial-button-prev, 
.rot-testimonial-button-next {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
}

.rot-testimonial-button-prev:after, 
.rot-testimonial-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.rot-testimonial-button-prev:hover, 
.rot-testimonial-button-next:hover {
    background-color: #4a90e2;
    color: white;
}

/* Responsive */
@media (max-width: 767px) {
    .rot-testimonial-item {
        padding: 15px;
    }
    
    .rot-testimonial-content {
        font-size: 14px;
    }
    
    .rot-testimonial-image {
        width: 60px;
        height: 60px;
    }
}

/* C.R.I.S.E Branded Version */
.rot-testimonial-item.crise-theme {
    border-top: 3px solid #4a90e2;
}

.rot-testimonial-item.crise-theme .rot-testimonial-image {
    border-color: #4a90e2;
}

.rot-testimonial-branding {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.rot-testimonial-branding span {
    color: #4a90e2;
}

/* Read More Button */
.rot-testimonial-read-more {
    display: inline-block;
    color: #4a90e2;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
    position: relative;
}

.rot-testimonial-read-more:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #4a90e2;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.rot-testimonial-read-more:hover {
    color: #2a70c2;
}

.rot-testimonial-read-more:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}