/* Testimonials Section */
.testimonials {
    padding: 5rem 0 3rem 0;
    background: #10182a;
    position: relative;
    z-index: 1;
}
.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.testimonial-card {
    background: #1e293b;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(22,33,62,0.13);
    padding: 2.2rem 2rem 1.5rem 2rem;
    max-width: 370px;
    min-width: 320px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1.5px solid rgba(59,130,246,0.13);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(59,130,246,0.18);
    transform: translateY(-6px) scale(1.03);
}
.testimonial-text {
    color: #e2e8f0;
    font-size: 1.13rem;
    font-weight: 500;
    margin-bottom: 1.3rem;
    line-height: 1.8;
    min-height: 70px;
    letter-spacing: 0.01em;
}
.testimonial-meta {
    color: #60a5fa;
    font-size: 1rem;
    font-weight: 600;
    margin-top: auto;
    letter-spacing: 0.01em;
}
.testimonial-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
}
.testimonial-location {
    color: #94a3b8;
    font-weight: 500;
    font-size: 1.01rem;
}
.testimonial-buttons {
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}
.testimonial-buttons .btn {
    margin: 0 0.5rem;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(59,130,246,0.08);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.testimonial-buttons .btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #fff;
}
@media (max-width: 900px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        width: 95%;
        min-width: unset;
        max-width: 98vw;
    }
}
