/* ======== TESTIMONIALS SECTION ======== */

.testimonials-section {
    background-color: #111827; /* Dark background */
    padding: 100px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.testimonial-header p {
    font-size: 16px;
    color: #9CA3AF; /* Muted Grey */
    font-weight: 300;
}

/* --- THE GRID --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Equal Columns */
    gap: 30px; /* Space between cards */
}

/* --- CARD STYLING --- */
.testimonial-card {
    background-color: #161B22; /* Slightly lighter card bg */
    border: 1px solid #30363D; /* Subtle border */
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: #58A6FF; /* Blue border on hover */
    transform: translateY(-5px);
}

/* --- CARD HEADER (Avatar + Info) --- */
.testi-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Circle */
    object-fit: cover;
    filter: grayscale(100%); /* Optional: makes them B&W like screenshot */
    border: 2px solid rgba(255,255,255,0.1);
}

.testi-info {
    display: flex;
    flex-direction: column;
}

.testi-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
}

.testi-info span {
    font-size: 13px;
    color: #9CA3AF; /* Muted text */
    font-weight: 400;
}

/* --- TESTIMONIAL TEXT --- */
.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: #D1D5DB; /* Light Grey */
    font-style: italic; /* Italics as per screenshot */
    margin: 0;
}

/* --- RESPONSIVE --- */
@media only screen and (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: 1fr; /* 1 Column on tablet/mobile */
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }
}
