.client-section {
    padding: 60px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* GRID */
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
}

/* CARD */
.client-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.client-card img {
    width: 140px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* optional zoom effect */
.client-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-card img {
        width: 120px;
    }
}

@media (max-width: 600px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-card img {
        width: 100px;
    }

    .section-title {
        font-size: 24px;
    }
}

.client-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;

    /* 🔥 FIX SAME SIZE BOX */
    height: 140px;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.client-card img {
    max-width: 100%;
    max-height: 80px;

    /* 🔥 keep proportion clean */
    object-fit: contain;

    transition: 0.3s ease;
}

.client-card {
    aspect-ratio: 1 / 1;
}

.client-section {
    padding: 60px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* 🔥 PERFECT RESPONSIVE GRID */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

/* 🔥 EQUAL HEIGHT CARDS */
.client-card {
    background: #f9f9f9;
    border-radius: 12px;

    height: 150px;              /* equal height */
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* LOGO CONTROL */
.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* HOVER EFFECT */
.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* MOBILE ADJUSTMENT */
@media (max-width: 600px) {
    .client-card {
        height: 120px;
    }

    .section-title {
        font-size: 24px;
    }
}

.client-card img {
    max-width: 100%;
    max-height: 110px;   /* 🔥 lebih besar dari 80px */
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-card {
    height: 170px;   /* naikkan box supaya logo tak sempit */
    padding: 25px;
}

.client-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-desc {
    margin-bottom: 40px;
    color: #666;
}

/* GRID */
.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
    justify-items: center; /* IMPORTANT */
}

/* CARD */
.client-card {
    width: 100%;
    max-width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* TABLET */
@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-card {
        max-width: 120px;
        height: 90px;
    }
}

.client-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-card {
    width: 100%;
    max-width: 180px; /* BESARKAN CARD */
    height: 120px;     /* BAGI TINGGI SIKIT */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card img {
    max-width: 100%;
    max-height: 100px; /* BESARKAN LOGO */
    object-fit: contain;
}

@media (max-width: 600px) {
    .client-card {
        max-width: 150px;
        height: 110px;
    }

    .client-card img {
        max-height: 90px;
    }
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* HERO SECTION */
.client-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.client-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.client-hero p {
    font-size: 16px;
    opacity: 0.8;
}

@media (max-width: 576px) {

    .client-hero {
        padding: 60px 20px;
    }

    .client-hero h1 {
        font-size: 26px;
    }

    .client-hero p {
        font-size: 14px;
    }
}

.client-card img {
    transition: 0.3s ease;
    filter: grayscale(20%);
}

.client-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}