:root {
    --tmp-blue: #0094DA;
    --tmp-bg-section: #FFFFFF;
    --tmp-bg-card: #F6F6F6;
    --tmp-text: #44546A;
    --tmp-quote: #E8F5E9;
}

.tmp-testimonials-wrapper {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px;
    background-color: var(--tmp-bg-section) !important;
    font-family: 'Poppins', sans-serif !important;
}

.tmp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tmp-card {
    background: var(--tmp-bg-card) !important;
    padding: 25px 30px;
    /* Reduced vertical padding */
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    transition: transform 0.3s ease;
    border: none !important;
    box-shadow: none !important;
}

.tmp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
    /* Significantly reduced space below rating/stars */
}

.tmp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tmp-rating-score {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.tmp-stars {
    display: flex;
    gap: 2px;
}

.tmp-quote-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #55AF58;
    opacity: 1;
    /* Increased opacity for visibility on light background */
    width: 109px;
    height: 109px;
    display: block;
    z-index: 0;
}

.tmp-content {
    flex-grow: 1;
    margin-bottom: 30px;
}

.tmp-content p {
    font-size: 14px;
    /* Requested size */
    line-height: 1.7;
    color: #5C6065;
    /* Requested color */
    margin: 0;
    font-weight: 500;
    /* Premium light feel */
}

.tmp-author {
    margin-top: auto;
}

.tmp-designation {
    color: #0094DA !important;
    font-size: 14px !important;
    font-weight: 600;
    margin: 0;
}

/* Pagination Arrows */
.tmp-pagination-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tmp-arrow-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.tmp-arrow-btn:hover:not(.disabled) {
    background: var(--tmp-blue);
    color: #fff;
    border-color: var(--tmp-blue);
}

.tmp-arrow-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .tmp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tmp-testimonials-wrapper {
        padding: 10px;
    }

    .tmp-grid {
        grid-template-columns: 1fr;
    }

    .tmp-card {
        padding: 30px;
    }
}