/* ====== Testimonial Section: START  ====== */
.testimonial {
    background-color: var(--bg-color);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background-color: var(--bg-color);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial::before,
.testimonial::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background-color: var(--main-color);
    transition: var(--transition);
}

.testimonial::before {
    height: 0;
    width: 3px;
}

.testimonial::after {
    height: 3px;
    width: 0;
}

.testimonial:hover {
    transform: scale(1.03);
}

.testimonial:hover::before {
    height: 50%;
}

.testimonial:hover::after {
    width: 50%;
}

.testimonial img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: -11px;
    left: -11px;
}

.testimonial h3 {
    color: var(--main-color);
    font-size: 1.5rem
}

.testimonial .stars i {
    font-size: 1.2rem;
    margin: 0.8rem 0;

}

.testimonial .stars i.fa-solid {
    color: #fbbf24;
}

.testimonial .stars i.fa-regular {
    color: #d1d5db;
}

.testimonials blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #374151;
    position: relative;
}

.testimonials cite {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--main-color);
    text-align: right;
    display: block;
    margin: 0.6rem 0;
}

/* ====== Testimonial Section: END  ====== */