/*<style>*/
    /* Container for the entire testimonial card */
.testimonial-card {
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    overflow: hidden; /* Ensures rounded corners apply to children */
}

/* Image section */
.testimonial-image-container {
    flex: 1;
    min-height: 250px; /* Minimum height for image on mobile */
    background-color: #f0f0f0; /* Placeholder background */
    position: relative;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Covers the area, crops if necessary */
    display: block;
}

/* Content section */
.testimonial-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Quote icon */
.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3em;
    color: #ff6b6b; /* A reddish color for the quote */
    line-height: 0.5;
    font-weight: 700;
}

/* Testimonial text */
.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    padding-top: 30px; /* Space for the quote icon */
}

/* Read more link */
.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* Company/Name */
.company-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.customer-name {
    font-size: 0.95em;
    color: #666;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .testimonial-card {
        flex-direction: row; /* Row layout for larger screens */
    }

    .testimonial-image-container {
        border-top-right-radius: 0;
        border-bottom-left-radius: 15px;
        min-height: auto; /* Allow height to be determined by content or flex */
    }

    .testimonial-content {
        padding: 40px;
    }

    .quote-icon {
        top: 40px;
        left: 40px;
    }

    .testimonial-text {
        padding-top: 40px;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        max-width: 1000px;
    }
}
/*</style>*/
