/* =========================================================
   AARAV DIGITAL PRO
   OUR CLIENTS
========================================================= */

.adp-clients {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 193, 7, 0.09),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 193, 7, 0.06),
            transparent 30%
        ),
        #050505;
    color: #ffffff;
}


/* =========================================================
   GLOW
========================================================= */

.adp-clients-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.18;
}

.adp-clients-glow-1 {
    width: 280px;
    height: 280px;
    background: #f5b900;
    top: 10%;
    left: -120px;
}

.adp-clients-glow-2 {
    width: 240px;
    height: 240px;
    background: #ffcf33;
    bottom: 5%;
    right: -100px;
}


/* =========================================================
   CONTAINER
========================================================= */

.adp-clients-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.adp-clients-header {
    max-width: 780px;
    margin: 0 auto 65px;
    text-align: center;
}

.adp-clients-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border: 1px solid rgba(255, 193, 7, 0.8);
    border-radius: 999px;
    color: #ffc107;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.adp-clients-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -2px;
}

.adp-clients-header h2 span {
    display: block;
    color: #ffc107;
}

.adp-clients-header p {
    max-width: 680px;
    margin: 24px auto 0;
    color: #a8a8a8;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.adp-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================================================
   CARD
========================================================= */

.adp-client-card {
    position: relative;
    min-height: 330px;
    padding: 24px;
    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255, 193, 7, 0.07),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(255, 193, 7, 0.7);
    border-radius: 24px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.adp-client-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -80px;
    right: -80px;

    background: rgba(255, 193, 7, 0.14);
    border-radius: 50%;
    filter: blur(25px);

    transition: 0.4s ease;
}

.adp-client-card:hover {
    transform: translateY(-8px);
    border-color: #ffc107;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(255, 193, 7, 0.08);
}

.adp-client-card:hover::before {
    transform: scale(1.5);
}


/* =========================================================
   TOP
========================================================= */

.adp-client-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 24px;
}

.adp-client-number {
    color: #ffc107;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.adp-client-country {
    padding: 6px 10px;
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 999px;

    color: #ffc107;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =========================================================
   LOGO AREA
========================================================= */

.adp-client-logo {
    position: relative;
    z-index: 2;

    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 16px;

    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: 0.35s ease;
}

.adp-client-card:hover .adp-client-logo {
    border-color: rgba(255, 193, 7, 0.25);
    background: rgba(0, 0, 0, 0.42);
}

.adp-client-logo img {
    display: block;

    width: auto;
    max-width: 78%;
    height: 78px;

    object-fit: contain;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.adp-client-card:hover .adp-client-logo img {
    transform: scale(1.05);
}


/* =========================================================
   MASALA ZONE TEXT LOGO
========================================================= */

.adp-client-text-logo {
    flex-direction: column;
    line-height: 1;
}

.adp-mz-small {
    color: #d8d8d8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
}

.adp-client-text-logo strong {
    margin-top: 7px;
    color: #ffc107;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 2px;
}

.adp-mz-sub {
    margin-top: 8px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
}


/* =========================================================
   INFO
========================================================= */

.adp-client-info {
    position: relative;
    z-index: 2;
}

.adp-client-info h3 {
    margin: 0 0 7px;

    color: #ffffff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.adp-client-info p {
    margin: 0;

    color: #999999;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   WEBSITE LINK
========================================================= */

.adp-client-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: auto;
    padding-top: 22px;

    color: #ffc107;
    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition: 0.3s ease;
}

.adp-client-link span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.adp-client-link:hover {
    color: #ffffff;
}

.adp-client-link:hover span {
    transform: translate(4px, -4px);
}

.adp-client-link-disabled {
    color: #777777;
    cursor: default;
}

.adp-client-link-disabled:hover {
    color: #777777;
}

.adp-client-link-disabled:hover span {
    transform: none;
}


/* =========================================================
   BOTTOM
========================================================= */

.adp-clients-bottom {
    margin-top: 45px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    color: #888888;
    font-size: 14px;
}

.adp-clients-bottom strong {
    color: #ffc107;
    font-size: 15px;
}

.adp-clients-bottom strong span {
    display: inline-block;
    margin-left: 7px;
    transition: transform 0.3s ease;
}

.adp-clients-bottom strong:hover span {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .adp-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .adp-clients {
        padding: 75px 0;
    }

    .adp-clients-container {
        width: min(100% - 28px, 520px);
    }

    .adp-clients-header {
        margin-bottom: 40px;
    }

    .adp-clients-label {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 8px 14px;
    }

    .adp-clients-header h2 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .adp-clients-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .adp-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .adp-client-card {
        min-height: 300px;
        padding: 15px;
        border-radius: 18px;
    }

    .adp-client-top {
        margin-bottom: 16px;
    }

    .adp-client-number {
        font-size: 11px;
    }

    .adp-client-country {
        font-size: 7px;
        padding: 5px 7px;
    }

    .adp-client-logo {
        height: 90px;
        margin-bottom: 18px;
    }

    .adp-client-logo img {
        max-width: 86%;
        height: 65px;
    }

    .adp-client-info h3 {
        font-size: 14px;
    }

    .adp-client-info p {
        font-size: 11px;
    }

    .adp-client-link {
        font-size: 10px;
        padding-top: 15px;
        gap: 5px;
    }

    .adp-client-link span {
        font-size: 15px;
    }

    .adp-mz-small {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .adp-client-text-logo strong {
        font-size: 25px;
    }

    .adp-mz-sub {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .adp-clients-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-top: 30px;
    }

}
/* =========================================
   AEO / GEO CLIENT CTA
========================================= */

.adp-clients-bottom a {
    color: inherit;
    text-decoration: none;
}

.adp-clients-bottom a:hover {
    text-decoration: none;
}
/* =========================================
   CLIENT LOGO SIZE FIX
========================================= */

.adp-client-logo-image {
    width: 100%;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.adp-client-logo-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    max-width: 100%;
    max-height: 100%;
}


/* =========================================
   CLIENT CARD CONTENT SPACING
========================================= */

.adp-client-info {
    position: relative;
    z-index: 2;

    margin-top: 18px;
}

.adp-client-link {
    position: relative;
    z-index: 3;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .adp-client-logo-image {
        height: 125px;
    }

    .adp-client-info {
        margin-top: 15px;
    }

}