:root {
    --primary: #3498db;
    --text-dark: #2c3e50;
    --text-muted: #555;
    --bg-light: #f5f6fa;
    --card-bg: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
}

/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* ================= GRID ================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* ================= CARD ================= */
.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.testimonial-card img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
}

.testimonial-card h4 {
    font-size: 1.125rem;
    margin: 10px 0 8px;
    color: var(--text-dark);
}

.testimonial-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 15px;
    }

    .testimonial-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-card img {
        width: 80px;
        height: 80px;
    }

    .testimonial-card h4 {
        font-size: 1rem;
    }

    .testimonial-card p {
        font-size: 0.875rem;
    }
}
