/* General Clients Page Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Clients Hero Section */
.clients-hero {
    background: url('images/clients-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.clients-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.clients-hero h1, 
.clients-hero p {
    position: relative;
    z-index: 2;
}

.clients-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.clients-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: auto;
}

/* Clients Logos Section */
.clients-logos {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
}

.clients-logos h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

.logo-grid img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-grid img:hover {
    transform: scale(1.1);
}

/* Testimonials Section */
.clients-testimonials {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.clients-testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial p {
    font-style: italic;
    color: #666;
}

.testimonial h4 {
    margin-top: 10px;
    color: #007bff;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
