/* testimonial-block.css */

.testimonial-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.testimonial-card {
    background-color: #EDE8F5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(61, 82, 160, 0.4); /*glow effect blue*/ 
    padding: 20px;
    width: 300px;
    margin: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(61, 82, 160, 0.6);
}

.testimonial-image img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
    
}

.company-name {
    color: #3D52A0;
    font-weight: bold;
    margin-bottom: 10px;
}

.testimonial-desc {
    color: #000000;
    font-size: 14px ;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: #8697C4;
    margin-top: 10px;
    animation: pulse 2s infinite;
}
/* Add this in your admin CSS or directly into testimonial-block.css */
#testimonial-client-preview {
    display: block;
    margin-top: 10px;
    max-width: 150px;
    border-radius: 5px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}