.modern-testimonials-page {
    padding: 80px 0;
    background-color: #ffffff;
}


/* --- Card Styling --- */
.modern-testi-card {
    background-color: #f7f7f7;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Hover effect for the button/card */
button:hover .modern-testi-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Stars */
.testi-stars {
    color: var(--color-1);
    font-size: 18px;
    margin-bottom: 25px;
    display: flex;
    gap: 6px;
}

/* Review Text */
.testi-text {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the bottom row down */
    font-family: var(--font-02);
}

/* Bottom Row Wrapper */
.testi-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 10px; /* Slight rounded square like the image */
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-2);
    margin: 0 0 5px 0;
    font-family: var(--font-01);
}

.client-details span {
    font-size: 16px;
    color: #666666;
    font-family: var(--font-02);
}

/* Giant Background Quote Icon */
.quote-icon-large {
    font-size: 60px;
    color: #e0e0e0; /* Very light gray */
    line-height: 1;
    transform: translateY(10px); /* Adjusts vertical alignment to match image */
}

/* Responsive */
@media (max-width: 768px) {
    .modern-testi-card {
        padding: 30px 20px;
    }
    .section-title {
        font-size: 30px;
    }
    .quote-icon-large {
        font-size: 45px;
    }
}