/* General Card Styling */
.testimonial-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0ecff;
    /*f8f9fa//e0ecff*/
    transition: transform 0.3s ease;
    
}

.testimonial-card:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.testimonial-card hr {
    height: 3px;
    background-color: #065b91;
    border: none;
    margin: 1rem 0;
    opacity: 0.5;
}

/* Client Image */
.testimonial-image img {
    width: 150px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.testimonial-image img:hover {
    transform: scale(1.1);
}

/* Text Styling */
.name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #065b91;
    /* Theme color */
}

.post {
    font-size: 0.9rem;
}

.review {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2e2e2e; /*#6c757d*/
    text-align: justify;
}

.review p {
    font-size: 1rem;
    font-style: italic !important;
    font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.card-body {
    padding: 20px;
}
