 .testimonial-card {
        background: #f9fbfe;
        border-radius: 20px;
        padding: 24px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .thumb-icon {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #e6f2ff;
        box-shadow: inset 0 0 0 2px #c0e0ff;
        overflow: hidden;
    }

    .thumb-icon img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .quote-icon {
        font-size: 24px;
        color: #666;
    }

    .testimonial-card p {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }

    .testimonial-footer {
        font-size: 13px;
        color: #555;
        border-top: 1px solid #d0e7f7;
        padding-top: 10px;
    }

   @media(max-width: 768px) {
        .testimonial-card {
            margin-bottom: 20px;
        }
    }


