/* Modern Testimonial Card Styles */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    margin: 15px;
    border: 1.5px solid #E0E0E0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(70, 166, 185, 0.15);
    border-color: #46A6B9;
}

.testimonial-card .rating-stars {
    margin-bottom: 25px;
    display: flex;
    gap: 5px;
}

.testimonial-card .rating-stars i {
    color: #FFB800;
    font-size: 18px;
}

.testimonial-card .testimonial-text {
    font-size: 16px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    flex: 1;
    font-style: italic;
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1.5px solid #F0F0F0;
}

.testimonial-card .author-initial {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9F2890 0%, #3B82F6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(159, 40, 144, 0.2);
}

.testimonial-card .author-details {
    flex: 1;
}

.testimonial-card .author-name {
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #212529;
    margin-bottom: 5px;
    line-height: 1.2;
}

.testimonial-card .author-location {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media only screen and (max-width: 1200px) {
    .testimonial-card {
        padding: 35px 28px;
        min-height: 360px;
    }

    .testimonial-card .testimonial-text {
        font-size: 15px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .testimonial-card {
        padding: 30px 25px;
        min-height: auto;
        margin: 10px;
    }

    .testimonial-card .author-initial {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .testimonial-card .author-name {
        font-size: 16px;
    }

    .testimonial-card .author-location {
        font-size: 13px;
    }
}