.home-testimonials {
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px; /* Bo góc mềm mại hơn */
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.testi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.testi-content {
    margin-bottom: 25px;
}

.testi-content i {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testi-content p {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

.testi-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testi-author h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.testi-author span {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Tighten Spacing for Testimonials Section */
.home-testimonials {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
    margin-bottom: 0 !important;
}

@media (max-width: 992px) {
    .home-testimonials {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
        margin-bottom: 0 !important;
    }
}