﻿.testimonial-box {
        background-color: #f9f9f9;
        border: 1px solid #e1e1e1;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        height: 100%; /* Ensure boxes are the same height */
    }

    .testimonial-content {
        margin-bottom: 15px;
    }

    .testimonial-author {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .author-info h5 {
        margin: 0;
        font-size: 1.1em;
        font-weight: bold;
    }

    .rating {
        color: #f39c12; /* Star color */
        font-size: 18px;
    }

    .star {
        font-size: 20px;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .testimonial-box {
            margin-bottom: 20px;
        }
    }
