﻿:root {
    --primary: #264EFF;
    --primary-light: #4A6EFF;
    --dark: #111827;
    --gray: #6B7280;
    --border: #E5E7EB;
    --bg: #F6F8FC;
    --white: #fff;
}
/* PAGE BACKGROUND */
body {
    background: linear-gradient(180deg,#F8FAFF 0%, #F3F6FC 100%);
}
/* ================= HERO ================= */
.clients-hero {
    padding: 50px 0 25px;
    position: relative;
}
    .clients-hero::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(38,78,255,.06);
        border-radius: 50%;
        top: -200px;
        right: -150px;
    }
    .clients-hero::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(245,158,11,.08);
        border-radius: 50%;
        bottom: -120px;
        left: -120px;
    }
.hero-box {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border: 1px solid #EEF2FF;
    border-radius: 28px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,.06);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(38,78,255,.08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(2rem,4vw,3.5rem);
    font-weight: 900;
    margin-bottom: 14px;
    text-align: center;
    color: #111827;
}
.hero-description {
    max-width: 700px;
    margin: auto;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.9;
}
/* ================= GRID ================= */
.clients-wrapper {
    padding: 40px 0 80px;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 26px;
}
/* ================= CARD ================= */
.client-card {
    background: #fff;
    border: 1px solid #EEF2FF;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .35s ease;
    position: relative;
}
    .client-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(38,78,255,.18);
        border-color: rgba(38,78,255,.25);
    }
/* IMAGE */
.client-image-wrap {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#F8FAFF,#EEF3FF);
    position: relative;
    overflow: hidden;
}
    .client-image-wrap img {
        max-width: 70%;
        max-height: 90px;
        object-fit: contain;
        transition: .5s ease;
        filter: grayscale(10%);
    }
.client-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}
/* BADGE */
.client-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(38,78,255,.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
}
/* OVERLAY */
.client-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,24,39,.7), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    transition: .3s;
}
.client-card:hover .client-overlay {
    opacity: 1;
}
.overlay-btn {
    background: #fff;
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    transform: translateY(10px);
    transition: .3s;
}
.client-card:hover .overlay-btn {
    transform: translateY(0);
}
/* CONTENT */
.client-content {
    padding: 18px;
}
.client-name {
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
    min-height: 45px;
}
/* META */
.client-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}
.meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #F8FAFF;
    border: 1px solid #EEF2FF;
    border-radius: 14px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}
    .meta-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,transparent,rgba(38,78,255,.06),transparent);
        transform: translateX(-100%);
    }
.client-card:hover .meta-item::before {
    animation: shine .8s ease;
}
@@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}
.meta-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
    .meta-label i {
        color: var(--primary);
    }
.meta-value {
    font-size: 13px;
    font-weight: 900;
}
/* BUTTON */
.client-footer {
    margin-top: 10px;
}
.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg,var(--primary),var(--primary-light));
    color: #fff !important;
    padding: 12px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(38,78,255,.2);
    transition: .35s;
}
    .view-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(38,78,255,.3);
    }
    .view-btn i {
        transition: .3s;
    }
.client-card:hover .view-btn i {
    transform: translateX(5px);
}
/* EMPTY */
.empty-box {
    background: #fff;
    padding: 60px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #EEF2FF;
}
    .empty-box i {
        width: 80px;
        height: 80px;
        background: rgba(38,78,255,.08);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin: auto;
        margin-bottom: 18px;
    }
    