:root {
    --primary-color: #4f46e5;
    --bg-color: #f9fafb;
    --card-bg: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --accent: #fbbf24;
}

.container {
    max-width: 1200px;
    width: 100%;
}

/* .head    er h2 {
    font-size: 2.25rem;
    color: var(--text-main);
    margin-bottom: 10px;
} */

/* .header p {
    color: var(--text-muted);
    font-size: 1.1rem;
} */

/* Grid Layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Card Styling */
.testimonial-card {
    max-width: 510px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Quote Icon Decor */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(79, 70, 229, 0.1);
    line-height: 1;
    font-family: serif;
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.content {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .header h2 {
        font-size: 1.75rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}