/* Our Clients Page Styles */

.clients-main {
    background: #fff;
    min-height: 100vh;
    padding-bottom: 40px;
}

.clients-hero {
    background: linear-gradient(90deg, #f8fafc 0%, #e0e7ef 100%);
    padding: 60px 0 40px 0;
    text-align: center;
}

.clients-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a237e;
}

.clients-hero-content p {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.clients-list-section {
    padding: 40px 0 20px 0;
    text-align: center;
}

.clients-list-section h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 32px;
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    justify-items: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.clients-logos-grid img {
    max-width: 120px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.2s;
    background: #f4f6fa;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.clients-logos-grid img:hover {
    filter: grayscale(0) drop-shadow(0 2px 8px #b3c6e0);
}

.clients-testimonials-section {
    padding: 40px 0 0 0;
    text-align: center;
}

.clients-testimonials-section h2 {
    font-size: 2rem;
    color: #1a237e;
    margin-bottom: 32px;
}

.clients-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.06);
    padding: 28px 32px;
    max-width: 320px;
    min-width: 240px;
    text-align: left;
    font-size: 1.08rem;
    color: #222;
    position: relative;
}

.testimonial-card span {
    display: block;
    margin-top: 18px;
    font-weight: 600;
    color: #1a237e;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .clients-hero-content h1 {
        font-size: 2rem;
    }
    .clients-list-section h2,
    .clients-testimonials-section h2 {
        font-size: 1.3rem;
    }
    .testimonial-card {
        padding: 18px 10px;
        font-size: 0.98rem;
    }
    .clients-logos-grid {
        gap: 16px;
    }
}
