/* =========================================================
   INDUSTRIES WE SERVE
========================================================= */

.adp-industries {
    position: relative;
    overflow: hidden;
    padding: 20px 20px;
    background:
        radial-gradient(
            circle at 15% 45%,
            rgba(255, 193, 7, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(255, 193, 7, 0.06),
            transparent 30%
        ),
        #050505;
}

.adp-industries-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}


/* HEADER */

.adp-industries-header {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.adp-industries-label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #f4c400;
    border-radius: 50px;

    color: #f4c400;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 22px;
}

.adp-industries-header h2 {
    margin: 0;
    color: #fff;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
}

.adp-industries-header h2 span {
    display: block;
    color: #f4c400;
}

.adp-industries-header p {
    max-width: 680px;
    margin: 25px auto 0;

    color: #a9a9a9;
    font-size: 17px;
    line-height: 1.8;
}


/* GRID */

.adp-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* CARD */

.adp-industry-card {
    position: relative;
    min-height: 245px;

    padding: 28px 25px;

    border: 1px solid rgba(244, 196, 0, 0.55);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,193,7,0.025)
        );

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.adp-industry-card::before {
    content: "";
    position: absolute;

    width: 150px;
    height: 150px;

    top: -70px;
    right: -70px;

    background: rgba(244, 196, 0, 0.12);
    filter: blur(35px);

    border-radius: 50%;

    transition: 0.4s ease;
}

.adp-industry-card:hover {
    transform: translateY(-8px);

    border-color: #f4c400;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.45),
        0 0 30px rgba(244,196,0,0.10);
}

.adp-industry-card:hover::before {
    transform: scale(1.5);
}


/* ICON */

.adp-industry-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #f4c400;
    border-radius: 16px;

    color: #f4c400;
    font-size: 25px;
    font-weight: 700;

    transition: 0.35s ease;
}

.adp-industry-card:hover .adp-industry-icon {
    background: #f4c400;
    color: #050505;

    transform: rotate(8deg) scale(1.08);
}


/* CONTENT */

.adp-industry-card h3 {
    position: relative;
    z-index: 2;

    margin: 28px 0 10px;

    color: #fff;

    font-size: 21px;
    line-height: 1.2;
    font-weight: 750;
}

.adp-industry-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #999;

    font-size: 14px;
    line-height: 1.65;
}


/* ARROW */

.adp-industry-arrow {
    position: absolute;

    right: 22px;
    bottom: 20px;

    color: #f4c400;

    font-size: 22px;

    transition: 0.35s ease;
}

.adp-industry-card:hover .adp-industry-arrow {
    transform: translate(5px, -5px);
}


/* BOTTOM */

.adp-industries-bottom {
    margin-top: 55px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    color: #999;
    font-size: 15px;
}

.adp-industries-bottom strong {
    color: #f4c400;
    transition: 0.3s ease;
}

.adp-industries-bottom strong:hover {
    color: #fff;
}


/* BACKGROUND GLOW */

.adp-industries-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(244,196,0,0.06);
    filter: blur(80px);

    animation: adpIndustryGlow 7s ease-in-out infinite alternate;
}

.adp-industries-glow-1 {
    left: -120px;
    top: 35%;
}

.adp-industries-glow-2 {
    right: -120px;
    bottom: 10%;

    animation-delay: 2s;
}

@keyframes adpIndustryGlow {
    from {
        transform: translateY(-20px) scale(0.9);
    }

    to {
        transform: translateY(25px) scale(1.15);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .adp-industries {
        padding: 80px 18px;
    }

    .adp-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .adp-industry-card {
        min-height: 230px;
        padding: 22px 20px;
    }

    .adp-industry-card h3 {
        font-size: 19px;
    }

    .adp-industry-card p {
        font-size: 13px;
    }

}


@media (max-width: 560px) {

    .adp-industries {
        padding: 70px 15px;
    }

    .adp-industries-header {
        margin-bottom: 42px;
    }

    .adp-industries-header h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .adp-industries-header p {
        font-size: 15px;
        line-height: 1.7;
    }

    .adp-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .adp-industry-card {
        min-height: 220px;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .adp-industry-icon {
        width: 46px;
        height: 46px;
        border-radius: 13px;
        font-size: 21px;
    }

    .adp-industry-card h3 {
        margin-top: 20px;
        font-size: 17px;
    }

    .adp-industry-card p {
        font-size: 12px;
        line-height: 1.55;
    }

    .adp-industry-arrow {
        right: 14px;
        bottom: 13px;
        font-size: 18px;
    }

    .adp-industries-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-top: 40px;
    }

}
/* =========================================
   INDUSTRY SVG ICONS
========================================= */

.adp-industry-icon svg {
    width: 27px;
    height: 27px;
    display: block;
    fill: none;
    stroke: #FFC400;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}


/* ICON HOVER */

.adp-industry-card:hover .adp-industry-icon svg {
    transform: scale(1.15) rotate(-4deg);
    filter:
        drop-shadow(0 0 6px rgba(255, 196, 0, 0.75));
}


/* ICON BOX */

.adp-industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* CARD HOVER */

.adp-industry-card:hover .adp-industry-icon {
    border-color: #FFC400;
    box-shadow:
        0 0 18px rgba(255, 196, 0, 0.12);
}


/* MOBILE */

@media (max-width: 767px) {

    .adp-industry-icon svg {
        width: 24px;
        height: 24px;
    }

}
/* =========================================
   INDUSTRIES HEADER SPACING
========================================= */

.adp-industries-header h2 {
    margin-bottom: 35px;
}

.adp-industries-header p {
    margin-top: 0;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (max-width: 768px) {

    .adp-industries-header h2 {
        margin-bottom: 20px;
    }

    .adp-industries-header p {
        line-height: 1.7;
    }

}