.client-testimonials-heading {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin: 40px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #64bd6a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-cont {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    height: 250px; /* Adjust the height as needed */
    display: flex;
    flex-direction: column;
}

.testimonial-cont:hover {
    transform: translateY(-5px);
}

.testimonial-cont img {
    width: 100%;
    height: 100px; /* Adjust height to keep it small */
    object-fit: cover; /* Ensures the image fits within the given height */
    border-bottom: 2px solid #eee;
}

.testimonial-content {
    padding: 10px;
    flex: 1; /* Allows the content to fill the remaining space */
    overflow: hidden;
}

.testimonial-content h3 {
    margin: 0 0 5px;
    font-size: 1.1em;
    color: #333;
}

.testimonial-content h3 a {
    color: #065d2b;
    text-decoration: none;
}

.testimonial-content h3 a:hover {
    text-decoration: underline;
}

.testimonial-content p {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.testimonial-rating {
    margin-top: 5px;
}

.testimonial-rating .icon-star {
    color: #ffcc00;
    margin-right: 2px;
}
