/* ===== CLIENT HERO SECTION ===== */
.client-hero {
    position: relative;
    height: 260px;
    background: url("images/portfolio-hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-content p {
    font-size: 15px;
    opacity: 0.9;
}

/* Responsive */
@media(max-width:768px) {
    .client-hero {
        height: 200px;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}


/* ===== CLIENT SECTION ===== */
.client-section {
    background: #f7f8fb;
    padding: 70px 0;
}

.client-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.client-card {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    margin-bottom: 35px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.client-text {
    flex: 1;
}

.client-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.client-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.client-logo {
    min-width: 220px;
    text-align: center;
}

.client-logo img {
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
}

.client-logo.multi {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* BUTTONS */
.btn-outline {
    display: inline-block;
    padding: 7px 14px;
    border: 1px solid #0d6efd;
    color: #0d6efd;
    font-size: 13px;
    border-radius: 4px;
    margin-right: 8px;
    text-decoration: none;
}

.btn-dark {
    display: inline-block;
    padding: 7px 14px;
    background: #000;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .client-card {
        flex-direction: column;
        text-align: center;
    }

    .client-logo {
        margin-top: 20px;
    }
}