/* Clients Page Styles */

/* Clients Section */
.clients-section {
    padding: 80px 0 60px;
    margin-top: 100px; /* Add margin to prevent overlap with fixed navbar */
}

.section-intro h2 {
    color: #008000; /* Brand color green */
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-intro p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* Featured Clients */
.featured-clients h3 {
    color: #008000; /* Brand color green */
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.client-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.client-card h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.client-card p {
    color: #666;
    margin-bottom: 10px;
}

.client-description {
    font-size: 14px;
    line-height: 1.5;
}

/* Client Logos Grid */
.client-logos h3 {
    color: #008000; /* Brand color green */
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.client-logo-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 60px;
}

.testimonials h3 {
    color: #008000; /* Brand color green */
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    position: relative;
    margin-top: 30px;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 60px;
    color: #008000;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .client-card {
        padding: 20px;
    }
    
    .client-logo {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0 40px;
    }
    
    .client-logo-item {
        height: 100px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .client-logo-item {
        height: 80px;
    }
    
    .client-logo-item img {
        max-height: 60px;
    }
}
