.testimonial-section {
    background-color: #fff;
    /* Dotted background pattern */
    background-image: radial-gradient(#ffe0cc 1.5px, transparent 1.5px);
    background-size: 25px 25px;
}
.testimonial-card {
    position: relative;
    background: #fff;
    border: 2px solid #111;
    border-radius: 24px 0px 24px 0px;
    padding: 3rem 2.5rem 2rem 2.5rem;
    box-shadow: 8px 8px 0px #111;
    height: 100%;
}
.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 6rem;
    color: #ffeadd;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    user-select: none;
}
.testimonial-content {
    position: relative;
    z-index: 1;
}
.testi-stars {
    color: #ffb703;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testi-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.testi-avatar {
    width: 45px;
    height: 45px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}
.testi-name {
    font-weight: 800;
    color: #111;
    margin: 0;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}
.testi-verified {
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.review-btn {
    background: #111;
    color: #fff;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.review-btn:hover {
    transform: scale(1.05);
    color: #fff;
}