/* Testimonial Section */
.testimonial {
    padding: 150px 0 150px;
    position: relative;
    overflow: hidden;
}

.testimonial .section-subtitle{
    margin-bottom: 24px;
    text-align: left !important;
}

.testimonial-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-box {
    width: 48%;
    border-left: 2px solid var(--primary-color);
    padding: 32px;
    background: #bbd5f0; /* Light primary color */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-header{
    margin-bottom: 12px;
}

.testimonial :is(.section-title, .section-subtitle) {
    text-align: center;
}

.testimonial .section-subtitle {
    margin-bottom: 56px;
}

.testimonial-text {
    margin-bottom: 24px;
    line-height: 27px;
    color: #1c1c1c;
}

.testimonial-box .author {
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.testimonial-box .role {
    color: #585858;
    font-size: 14px;
    font-weight: 400;
}

/* Stars Styling */
.testimonial-stars {
    margin-bottom: 12px;
}

.testimonial-stars i {
    background: linear-gradient(135deg, #f8d967, #d1a103);
    -webkit-background-clip: text;  
    background-clip: text;          
    color: transparent;             
    font-size: 20px;
}


/* Testimonial Number Styling */
.testimonial-box .count {
    font-size: 56px;
    font-weight: bold;
    position: absolute;
    bottom: -3px;
    right: -2px;
    color: #fff;
    line-height: 44px;
}

@media (max-width: 768px) {
    .testimonial-box {
        width: 100%;
    }
}
