/* Clients Page Specific Styles */

.clients-grid-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    background-image: url('../images/shape/feature-shape.png');
    background-repeat: no-repeat;
    background-position: center;
    /* background-size: cover; */
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-item {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.client-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(52, 140, 72, 0.1); /* Using brand green for shadow */
    border-color: #348c48;
}

.client-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.client-item:hover img {
    filter: grayscale(50%);
    opacity: 1;
    transform: scale(1.05);
}

/* Page Title Section for Clients */
.page-title.clients-banner {
    background-image: url('../images/banner/clients.jpg'); /* Default pattern */
    background-color: #102930; /* Dark teal brand color */
    padding: 120px 0 80px;
}

.page-title.clients-banner h1 {
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 64px;
}

.sec-title .title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.sec-title .sub-title {
    font-family: 'DM Sans', sans-serif;
    color: #348c48;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-title.clients-banner .page-breadcrumb li {
    color: rgba(255, 255, 255, 0.7);
}

.page-title.clients-banner .page-breadcrumb li a {
    color: #348c48; /* Brand green */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    .client-item {
        height: 110px;
        padding: 15px;
    }
}
