/* Featured Clients Section */
.custom-col {
    /* margin: 0 auto; */
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}
.custom-col .col-lg-3 {
    margin: 4px 0;
    padding: 0 4px;
    max-width: 285px;
}
.featured-clients-section {
    background-color: #ffffff;
    padding: 0 0;
    position: relative;
}
.gray-bg {
    margin: 0 auto;
    padding: 80px 0;
    border-radius: 44px;
    background: #F5F5F5;
    max-width: 1636px;
}
/* Section Header */
.clients-label {
    /* font-size: 0.9rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px; */
    font-family: "Poltawski Nowy";
    font-size: 21px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px; /* 133.333% */
    background: linear-gradient(90deg, #C5962F 3.99%, #E7C562 59.69%, #F7DD7B 73.62%, #EFD271 101.47%, #E3C05D 115.4%, #DEB853 143.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.clients-title {
  color: #000;
font-family: "Poltawski Nowy";
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: 58px; /* 116% */
}

.clients-subtitle {
    color: #3C3C3C;
text-align: center;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 29px; /* 181.25% */
}

/* Client Logo Box */
.client-logo-box {
    background: #ffffff;
    border-radius: 12px;
    padding:70px 25px;
    /* height: 286px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    /* border-color: #d4af37; */
}

.client-logo-content {
      display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    flex-wrap: nowrap;
}

.client-logo-content svg {
    max-width: 175px;
    height: auto;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 991px) {


    .clients-title {
        font-size: 2rem;
    }

    .client-logo-box {
        height: 160px;
        padding: 1.5rem 1rem;
    }

    .client-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {




    .client-logo-box {
        height: 140px;
    }

    /* .client-logo-content svg {
        max-width: 45px;
    } */

    .client-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 580px) {

    .gray-bg {
        border-radius: 0;
            padding: 50px 0 50px;
    }
    
    .clients-label {
        margin-bottom: 0;
    }
    .clients-title {
        font-size: 36px;
    }

    
    .client-logo-box {
        height: 130px;
        padding: 1rem 0.5rem;
    }

    .client-logo-content {
        gap: 0.75rem;
    }

    

    .client-name {
        font-size: 0.85rem;
    }
}
