/*--------------------------------------------------------------
# Client Say Section
--------------------------------------------------------------*/

#client-say .section-title {
    margin-bottom: 40px;
}

.client-quote-card {
    position: relative;
    background: #fff;
    padding: 30px 40px 30px 80px;
    /* Make space for icon */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.client-quote-card .quote-icon {
    position: absolute;
    left: 25px;
    top: 30px;
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.8;
}

.client-quote-card .quote-number {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
}

.client-quote-card .quote-text {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-quote-card .quote-author {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.client-quote-card .quote-author-title {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}