/**
 * Testimonial Slider Custom Styles
 */

/* Card Styling */
.testimonial-card {
    background-color: #F8F9FA;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-text * {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #4D5765;
}

/* Testimonial Author */
.testimonial-author {
    color: #292929;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.testimonial-author-image {
    margin-right: 1rem;
}

.testimonial-author-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-author-position {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #2A6EBB;
}

/* Slider Navigation */
.testimonial-slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background-color: transparent;
    border: 2px solid #2A6EBB;
    color: #2A6EBB;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #2A6EBB;
    color: white;
}

.testimonial-prev svg,
.testimonial-next svg {
    width: 20px;
    height: 20px;
}

/* Slick Slider Customization */
.testimonial-slider-container .slick-track {
    display: flex !important;
}

.testimonial-slider-container .slick-slide {
    height: inherit !important;
    padding: 15px;
}

.testimonial-slider-container .testimonial-item {
    height: 100%;
}

/* Section Titles */
.testimonial-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-slider-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .testimonial-slider-title {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
}

/* Admin preview specific styles */
.testimonial-slider-container.admin-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial-slider-container.admin-preview .testimonial-item {
    width: calc(50% - 20px);
    flex: 0 0 auto;
}

/* Hide overflow items in admin */
.testimonial-slider-container.admin-preview .testimonial-item:nth-child(n+3) {
    display: none;
}

/* Responsive for mobile preview in admin */
@media (max-width: 767px) {
    .testimonial-slider-container.admin-preview .testimonial-item {
        width: 100%;
    }
    
    /* In mobile, only show one at a time */
    .testimonial-slider-container.admin-preview .testimonial-item:nth-child(n+2) {
        display: none;
    }
}

/* Admin preview notice */
.admin-preview-notice {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 5px;
    margin-top: 10px;
    font-style: italic;
}