.testimonial-modern-section {
    padding: 80px 0;
    background-color: #fdfdfd; /* Very subtle off-white background */
}

.tracking-wide {
    letter-spacing: 1.5px;
}

/* --- Card Container --- */
.modern-testi-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.modern-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* --- Stars --- */
.testi-stars {
    color: #f5cc26; /* Classic star yellow */
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

/* --- Review Text --- */
.testi-body {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testi-body p {
    margin-bottom: 0;
    font-size: 18px;
}

/* --- Footer (Avatar & Info) --- */
.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f5f5f5;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 2px;
}

.client-name:hover {
    color: #c29958;
}

.client-designation {
    font-size: 13px;
    color: #999999;
}

/* --- Quote Watermark --- */
.quote-watermark {
    font-size: 40px;
    color: #f2f2f2;
    line-height: 1;
    transform: translateY(5px);
}