/* Testimonials Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.testimonial-card {
    background: linear-gradient(180deg, #fff, #fbf8f6);
    padding: 26px;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    color: #6b625a;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.55;
}

.testimonial-card .by {
    font-weight: 700;
    color: #111012;
}

/* Fade-Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
    opacity: 1;
    transform: translateY(0px);
    }
}

/* Responsive */
@media(max-width:960px) {
    .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .testimonial-grid {
    grid-template-columns: 1fr;
    }
}
