

/* WRAPPER (LIKE OLD hero-about-image-wrapper) */
.nxh-aihero-v7__imageWrapper {
    position: relative;

    width: 568px;
    height: 341px;

    max-width: 100%;
}

/* BACKGROUND SHAPE (OLD STYLE) */
.nxh-aihero-v7__bgShape {
    position: absolute;

    width: 100%;
    height: 297px;

    top: 60px;
    left: -60px;

    background: linear-gradient(180deg, #0381E6 0%, rgba(5, 72, 151, 0) 100%);
    border-radius: 65px;

    z-index: 1;
}

/* SLIDER CONTAINER */
.nxh-aihero-v7__slider {
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    width: 100%;
    height: 100%;

    border-radius: 65px;
    overflow: hidden;

    z-index: 2;
}

/* SLIDES */
.nxh-aihero-v7__slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 65px;

    opacity: 0;

    transform: translateX(100px) scale(1.03);

    transition:
        transform 1.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.7s ease;

    z-index: 1;
}

/* ACTIVE */
.nxh-aihero-v7__slide.nxh-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

/* EXIT */
.nxh-aihero-v7__slide.nxh-exit {
    opacity: 0;
    transform: translateX(-100px) scale(0.98);
    z-index: 2;
}



:root {
    --nxh-blue: #002878;
}

/* =========================
   HERO SECTION
========================= */
.nxh-aihero-v7 {
    background-color: var(--nxh-blue);
    padding: clamp(60px, 6vw, 80px) 0;
    min-height: 607px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */
.nxh-aihero-v7__wrap {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: clamp(30px, 5vw, 80px);
}

/* =========================
   LEFT SIDE
========================= */
.nxh-aihero-v7__left {
    flex: 1;
    min-width: 300px;
    padding-right: clamp(0px, 3vw, 40px);
}

/* BADGES */
.nxh-aihero-v7__badgeRow {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nxh-aihero-v7__badge {
    height: 30px;
    padding: 2px 10px;
    border-radius: 25px;

    font-size: 12px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.3);
}

.nxh-aihero-v7__badge--primary {
    background: #FFFFFF14;
    color: #4CA8FF;
}

.nxh-aihero-v7__badge--secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* TITLE */
.nxh-aihero-v7__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

    font-size: clamp(30px, 4vw, 53px);
    line-height: 1.2;

    color: #fff;

    margin: 25px 0;
}

/* GRADIENT TEXT */
.nxh-aihero-v7__gradientText {
    background: linear-gradient(90deg, #0978FD 0%, #00E2EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.nxh-aihero-v7__desc {
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

/* =========================
   BUTTONS
========================= */
.nxh-aihero-v7__btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.nxh-aihero-v7__btn--primary {
    background: linear-gradient(90deg, #0978FD, #054897);
    color: #fff;

    padding: 15px 30px;
    border-radius: 50px;

    font-weight: 600;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
}

/* 🔥 RESTORED PREMIUM HOVER */
.nxh-aihero-v7__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(0, 94, 217, 0.4);
}

/* SECONDARY BUTTON */
.nxh-aihero-v7__btn--secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);

    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;

    text-decoration: none;

    transition: all 0.3s ease;
}

/* CLEAN PREMIUM HOVER */
.nxh-aihero-v7__btn--secondary:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}

/* =========================
   RIGHT SIDE
========================= */
.nxh-aihero-v7__right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* =========================
   SLIDER WRAPPER
========================= */
.nxh-aihero-v7__slider {
    position: relative;
    width: 568px;
    height: 341px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 65px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

/* SLIDES */
.nxh-aihero-v7__slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 65px;

    opacity: 0;

    transform: translateX(100px) scale(1.04);

    transition:
        transform 1.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.7s ease;

    z-index: 1;
}

/* ACTIVE */
.nxh-aihero-v7__slide.nxh-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

/* EXIT */
.nxh-aihero-v7__slide.nxh-exit {
    opacity: 0;
    transform: translateX(-100px) scale(0.98);
    z-index: 1;
}

/* SLIDER HOVER DEPTH */
.nxh-aihero-v7__slider {
    transition: box-shadow 0.5s ease;
}

.nxh-aihero-v7__slider:hover {
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .nxh-aihero-v7__wrap {
        width: 90%;
        gap: 40px;
    }

    .nxh-aihero-v7__slider {
        width: 500px;
    }
}

@media (max-width: 992px) {
    .nxh-aihero-v7__wrap {
        flex-direction: column;
        text-align: center;
    }

    .nxh-aihero-v7__left {
        padding-right: 0;
    }

    .nxh-aihero-v7__btns {
        justify-content: center;
    }

    .nxh-aihero-v7__slider {
        width: 100%;
        max-width: 500px;
        aspect-ratio: 568 / 341;
    }
}

@media (max-width: 600px) {
    .nxh-aihero-v7 {
        padding: 60px 15px;
    }

    .nxh-aihero-v7__title {
        font-size: 28px;
    }

    .nxh-aihero-v7__desc {
        font-size: 14px;
    }

    .nxh-aihero-v7__btns {
        flex-direction: column;
        align-items: center;
    }

    .nxh-aihero-v7__btn--primary,
    .nxh-aihero-v7__btn--secondary {
        width: 100%;
        max-width: 280px;
    }
}


