/* =========================================================
   NUMBERS & VERIFICATIONS
========================================================= */

.nv-section {
    position: relative;
    overflow: hidden;
    padding: 65px 0;
    background: #f7f9fc;
}

/* Background Glow */

.nv-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    left: -180px;
    border-radius: 50%;
    background: rgba(88, 86, 214, 0.08);
    filter: blur(10px);
    animation: nvBackgroundFloat 8s ease-in-out infinite;
}

.nv-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -150px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(0, 180, 255, 0.07);
    filter: blur(10px);
    animation: nvBackgroundFloat 10s ease-in-out infinite reverse;
}

.nv-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   BADGE
========================================================= */

.nv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 18px;

    border-radius: 50px;
    background: rgb(98 72 216 / 8%);
    color: #1f1343;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);

    animation: nvFadeDown 0.8s ease forwards;
}

.nv-badge i {
    animation: nvShieldPulse 2s infinite;
}


/* =========================================================
   TITLE
========================================================= */

.nv-title {
    margin-bottom: 18px;
    color: #1f1343;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;

    animation: nvFadeUp 0.8s ease forwards;
}

/* .nv-title span {
    color: #5757d1;
} */

.nv-subtitle {
    max-width: 700px;
    margin: auto;

    color: #6c7180;
    font-size: 17px;
    line-height: 1.7;

    animation: nvFadeUp 1s ease forwards;
}


/* =========================================================
   CONTENT
========================================================= */

.nv-content {
    padding-right: 30px;
    animation: nvSlideLeft 0.9s ease forwards;
}

.nv-content-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #c72d49,
        #c72d49
    );

    color: #fff;
    font-size: 25px;

    box-shadow: 0 15px 35px rgba(87, 87, 209, 0.25);

    animation: nvIconFloat 3s ease-in-out infinite;
}

.nv-content h3 {
    margin-bottom: 15px;
    color: #1f1343;
    font-size: 30px;
    font-weight: 700;
}

.nv-content > p {
    margin-bottom: 28px;
    color: #6c7180;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   CHECK LIST
========================================================= */

.nv-check-list {
    margin-bottom: 30px;
}

.nv-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.nv-check-item > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(87, 87, 209, 0.1);
    color: #c72d49;

    animation: nvCheckPulse 2s infinite;
}

.nv-check-item:nth-child(2) > span {
    animation-delay: .3s;
}

.nv-check-item:nth-child(3) > span {
    animation-delay: .6s;
}

.nv-check-item strong {
    display: block;
    color: #1f1343;
    font-size: 15px;
}

.nv-check-item small {
    display: block;
    margin-top: 2px;
    color: #858996;
}


/* =========================================================
   BUTTON
========================================================= */

.nv-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;

    border-radius: 10px;

    background: #1f1343;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    box-shadow: 0 12px 30px rgba(87, 87, 209, 0.25);

    transition: all .35s ease;
}

.nv-btn i {
    transition: transform .3s ease;
}

.nv-btn:hover {
    color: #fff !important;
    background:#c72d49;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(87, 87, 209, 0.35);
}

.nv-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   DASHBOARD
========================================================= */

.nv-dashboard {
    position: relative;

    padding: 32px;

    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 28px;

    background: rgba(255, 255, 255, .85);

    box-shadow:
        0 30px 80px rgba(32, 35, 70, .12),
        inset 0 1px 0 rgba(255, 255, 255, .9);

    backdrop-filter: blur(20px);

    animation:
        nvSlideRight 1s ease forwards,
        nvDashboardFloat 5s ease-in-out 1s infinite;
}

.nv-dashboard-glow {
    position: absolute;
    width: 180px;
    height: 180px;

    top: -80px;
    right: -50px;

    border-radius: 50%;

    background: rgba(87, 87, 209, .12);
    filter: blur(20px);

    animation: nvGlowMove 5s ease-in-out infinite;
}


/* =========================================================
   DASHBOARD HEADER
========================================================= */

.nv-dashboard-header {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.nv-small-label {
    display: block;
    margin-bottom: 5px;

    color: #999dad;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.nv-dashboard-header h5 {
    margin: 0;
    color: #1f1343;
    font-size: 21px;
    font-weight: 700;
}

.nv-secure-badge {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 7px 12px;

    border-radius: 30px;

    background: rgba(34, 197, 94, .1);
    color: #16a34a;

    font-size: 12px;
    font-weight: 600;
}

.nv-secure-badge i {
    animation: nvLockPulse 2s infinite;
    color:#c72d49 ;
}


/* =========================================================
   PHONE NUMBER BOX
========================================================= */

.nv-phone-box {
    position: relative;

    display: flex;
    align-items: center;

    padding: 17px;

    margin-bottom: 18px;

    border: 1px solid #e9eaf0;
    border-radius: 14px;

    background: #fff;

    transition: all .35s ease;
}

.nv-phone-box:hover {
    transform: translateY(-3px);
    border-color: rgba(87, 87, 209, .35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
}

.nv-country {
    display: flex;
    align-items: center;
    gap: 7px;

    padding-right: 15px;
    margin-right: 15px;

    border-right: 1px solid #e6e7ec;

    color: #55596a;
    font-size: 14px;
    font-weight: 600;
}

.nv-phone-number {
    color: #1f1343;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
}

.nv-verified {
    margin-left: auto;

    color: #22c55e;
    font-size: 22px;

    animation: nvVerifiedPulse 2s infinite;
}


/* =========================================================
   STATUS CARD
========================================================= */

.nv-status-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    margin-bottom: 20px;

    border-radius: 17px;

    background: linear-gradient(
        135deg,
        rgba(87, 87, 209, .08),
        rgba(87, 87, 209, .02)
    );

    border: 1px solid rgba(87, 87, 209, .12);

    animation: nvStatusAppear 1.2s ease forwards;
}

.nv-status-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: #c72d49;
    color: #fff;

    font-size: 20px;

    box-shadow: 0 10px 25px rgba(87, 87, 209, .25);

    animation: nvShieldPulse 2.5s infinite;
}

.nv-status-text {
    flex: 1;
}

.nv-status-text strong {
    display: block;
    color: #1f1343;
    font-size: 15px;
}

.nv-status-text span {
    display: block;
    margin-top: 3px;
    color: #858896;
    font-size: 12px;
}

.nv-status-check {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #22c55e;
    color: #fff;

    font-size: 12px;

    animation: nvCheckScale 1.5s infinite;
}


/* =========================================================
   MINI STATS
========================================================= */

.nv-mini-card {
    padding: 17px 10px;

    text-align: center;

    border-radius: 15px;

    background: #fff;
    border: 1px solid #ececf2;

    transition: all .35s ease;
}

.nv-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.nv-mini-card strong {
    display: block;

    color: #1f1343;
    font-size: 20px;
    font-weight: 700;
}

.nv-mini-card span {
    display: block;
    margin-top: 3px;

    color: #9295a2;
    font-size: 11px;
}


/* =========================================================
   FLOATING ICONS
========================================================= */

.nv-floating {
    position: absolute;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #fff;
    color: #5757d1;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

    z-index: 5;
}

.nv-floating-one {
    top: 70px;
    right: -22px;

    animation: nvFloatingOne 4s ease-in-out infinite;
}

.nv-floating-two {
    bottom: 90px;
    left: -22px;

    color: #22c55e;

    animation: nvFloatingTwo 4.5s ease-in-out infinite;
}

.nv-floating-three {
    top: 45%;
    right: -25px;

    color: #f59e0b;

    animation: nvFloatingThree 5s ease-in-out infinite;
}


/* =========================================================
   FEATURE CARDS
========================================================= */

.nv-feature-card {
    position: relative;

    height: 100%;

    padding: 28px 25px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #ececf2;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

    animation: nvCardReveal .8s ease forwards;
}

.nv-feature-card::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background: rgba(87, 87, 209, .08);

    transition: transform .5s ease;
}

.nv-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(87, 87, 209, .25);

    box-shadow:
        0 25px 55px rgba(30, 35, 80, .1);
}

.nv-feature-card:hover::before {
    transform: scale(2.5);
}

.nv-feature-card:nth-child(1) {
    animation-delay: .1s;
}

.nv-feature-card:nth-child(2) {
    animation-delay: .2s;
}

.nv-feature-card:nth-child(3) {
    animation-delay: .3s;
}

.nv-feature-card:nth-child(4) {
    animation-delay: .4s;
}

.nv-feature-icon {
    position: relative;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: rgba(87, 87, 209, .1);
    color: #c72d49;

    font-size: 20px;

    transition: all .4s ease;
}

.nv-feature-card:hover .nv-feature-icon {
    transform: rotateY(180deg) scale(1.1);
    background: #c72d49;
    color: #fff;
}

.nv-feature-card h5 {
    position: relative;

    margin-bottom: 10px;

    color: #25253a;
    font-size: 18px;
    font-weight: 700;
}

.nv-feature-card p {
    position: relative;

    margin-bottom: 20px;

    color: #7d808d;
    font-size: 14px;
    line-height: 1.7;
}

.nv-card-arrow {
    position: relative;

    color: #1f1343;

    font-size: 14px;

    transition: transform .3s ease;
}

.nv-feature-card:hover .nv-card-arrow {
    display: inline-block;
    transform: translateX(6px);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes nvFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nvFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nvSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nvSlideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nvCardReveal {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nvIconFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes nvDashboardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes nvBackgroundFloat {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25px, 20px);
    }
}

@keyframes nvGlowMove {
    0%, 100% {
        transform: translate(0, 0);
        opacity: .6;
    }

    50% {
        transform: translate(-50px, 40px);
        opacity: 1;
    }
}

@keyframes nvShieldPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes nvCheckPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(87, 87, 209, .2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(87, 87, 209, 0);
    }
}

@keyframes nvLockPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes nvVerifiedPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes nvCheckScale {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

@keyframes nvStatusAppear {
    from {
        opacity: 0;
        transform: scale(.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes nvFloatingOne {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

@keyframes nvFloatingTwo {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(15px) rotate(-8deg);
    }
}

@keyframes nvFloatingThree {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-12px, -15px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .nv-section {
        padding: 80px 0;
    }

    .nv-title {
        font-size: 40px;
    }

    .nv-content {
        padding-right: 0;
    }

    .nv-dashboard {
        margin-top: 20px;
    }

    .nv-floating-one,
    .nv-floating-three {
        right: -10px;
    }

    .nv-floating-two {
        left: -10px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .nv-section {
        padding: 65px 0;
    }

    .nv-title {
        font-size: 32px;
    }

    .nv-subtitle {
        font-size: 15px;
    }

    .nv-content h3 {
        font-size: 26px;
    }

    .nv-dashboard {
        padding: 22px;
        border-radius: 22px;
    }

    .nv-dashboard-header h5 {
        font-size: 18px;
    }

    .nv-phone-box {
        padding: 13px;
    }

    .nv-phone-number {
        font-size: 14px;
    }

    .nv-floating {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .nv-floating-one {
        right: -5px;
    }

    .nv-floating-two {
        left: -5px;
    }

    .nv-floating-three {
        right: -5px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .nv-section {
        padding: 55px 0;
    }

    .nv-title {
        font-size: 28px;
    }

    .nv-content-icon {
        width: 55px;
        height: 55px;
        font-size: 21px;
    }

    .nv-dashboard {
        padding: 18px;
    }

    .nv-secure-badge {
        padding: 6px 9px;
        font-size: 10px;
    }

    .nv-phone-box {
        flex-wrap: wrap;
        gap: 8px;
    }

    .nv-country {
        padding-right: 10px;
        margin-right: 5px;
    }

    .nv-phone-number {
        font-size: 13px;
    }

    .nv-verified {
        font-size: 18px;
    }

    .nv-status-card {
        padding: 14px;
        gap: 10px;
    }

    .nv-status-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .nv-status-text strong {
        font-size: 13px;
    }

    .nv-status-text span {
        font-size: 10px;
    }

    .nv-status-check {
        width: 25px;
        height: 25px;
    }

    .nv-mini-card {
        padding: 13px 5px;
    }

    .nv-mini-card strong {
        font-size: 16px;
    }

    .nv-mini-card span {
        font-size: 9px;
    }

    .nv-floating-one,
    .nv-floating-two,
    .nv-floating-three {
        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nv-section *,
    .nv-section::before,
    .nv-section::after {
        animation: none !important;
        transition: none !important;
    }
}


/* =========================================================
   NUMBERS & VERIFICATIONS HERO
========================================================= */

.nv-hero-section {
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 60px 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(87, 87, 209, .14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8f9ff 0%,
            #ffffff 50%,
            #f3f6ff 100%
        );
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.nv-hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(5px);

    pointer-events: none;
}

.nv-glow-one {
    width: 350px;
    height: 350px;

    top: -180px;
    left: -100px;

    background: rgba(87, 87, 209, .10);

    animation: nvHeroGlowOne 8s ease-in-out infinite;
}

.nv-glow-two {
    width: 450px;
    height: 450px;

    right: -200px;
    bottom: -250px;

    background: rgba(0, 180, 255, .08);

    animation: nvHeroGlowTwo 10s ease-in-out infinite;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.nv-hero-content {
    position: relative;
    z-index: 5;

    animation: nvHeroContent 1s ease forwards;
}

.nv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 9px 17px;

    margin-bottom: 22px;

    border-radius: 50px;
    margin-top: 24px;

    /* background: rgba(87, 87, 209, .09); */
      background:
        radial-gradient(circle at 85% 25%, rgba(108, 44, 255, .16), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(233, 30, 99, .12), transparent 30%),
        #ffffff;

    color: #1f1343;

    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 8px 25px rgba(87, 87, 209, .08);
}

.nv-hero-badge i {
    animation: nvBadgePulse 2s infinite;
    color: #c72d49;
}

.nv-hero-title {
    max-width: 650px;

    margin-bottom: 22px;

    color: #1f1343;

    font-size: 55px;
    font-weight: 700;

    line-height: 1.08;
}

.nv-hero-title span {
    display: inline-block;

    color: #c72d49;

    position: relative;
}

.nv-hero-title span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 100%;
    height: 4px;

    border-radius: 10px;

    background: #1f1343;

    transform: scaleX(0);
    transform-origin: left;

    animation: nvTitleLine 1.2s ease .8s forwards;
}

.nv-hero-text {
    max-width: 590px;

    margin-bottom: 30px;

    color: #6d7180;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.nv-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 38px;
}

.nv-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 23px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all .35s ease;
}

.nv-btn-primary {
    background: #1f1343;
    color: #fff;

    box-shadow:
        0 12px 30px rgba(87, 87, 209, .25);
}

.nv-btn-primary:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(87, 87, 209, .35);
}

.nv-btn-primary i {
    transition: transform .3s ease;
}

.nv-btn-primary:hover i {
    transform: translateX(5px);
}

.nv-btn-outline {
    border: 1px solid #dedfeb;

    background: #fff;

    color: #323246;
}

.nv-btn-outline:hover {
    color: #1f1343;

    border-color: #c72d49;

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .07);
}


/* =========================================================
   HERO FEATURES
========================================================= */

.nv-hero-features {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nv-hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nv-hero-feature > span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: rgba(87, 87, 209, .1);

    color:#c72d49;

    font-size: 14px;
}

.nv-hero-feature strong {
    display: block;

    color: #1f1343;

    font-size: 13px;
}

.nv-hero-feature small {
    display: block;

    margin-top: 2px;

    color: #898c99;

    font-size: 11px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.nv-hero-visual {
    position: relative;

    min-height: 540px;

    display: flex;
    align-items: center;
    justify-content: center;

    animation: nvHeroVisual 1.2s ease forwards;
}


/* =========================================================
   ROTATING RINGS
========================================================= */

.nv-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px dashed rgba(87, 87, 209, .20);
}

.nv-ring-one {
    width: 500px;
    height: 500px;

    animation: nvRotate 25s linear infinite;
}

.nv-ring-two {
    width: 400px;
    height: 400px;

    border-color: rgba(87, 87, 209, .12);

    animation: nvRotateReverse 18s linear infinite;
}


/* =========================================================
   VERIFICATION CARD
========================================================= */

.nv-verification-card {
    position: relative;
    z-index: 4;

    width: 430px;

    padding: 27px;

    border-radius: 28px;

    background: rgba(255, 255, 255, .94);

    border: 1px solid rgba(255, 255, 255, .8);

    box-shadow:
        0 35px 90px rgba(32, 35, 80, .16),
        0 5px 20px rgba(0, 0, 0, .04);

    backdrop-filter: blur(20px);

    animation:
        nvCardFloat 5s ease-in-out infinite,
        nvCardAppear 1s ease forwards;
}


/* =========================================================
   CARD TOP
========================================================= */

.nv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 24px;
}

.nv-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nv-card-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #c72d49;

    color: #fff;

    box-shadow:
        0 10px 25px rgba(87, 87, 209, .25);
}

.nv-card-title span {
    display: block;

    color: #9a9daa;

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .7px;
}

.nv-card-title strong {
    display: block;

    margin-top: 3px;

    color: #1f1343;

    font-size: 15px;
}

.nv-live {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;

    border-radius: 20px;

    background: rgba(34, 197, 94, .09);

    color: #16a34a;

    font-size: 10px;
    font-weight: 600;
}

.nv-live i {
    font-size: 7px;
    color: #c72d49;

    animation: nvLiveBlink 1.5s infinite;
}


/* =========================================================
   NUMBER INPUT
========================================================= */

.nv-number-input {
    display: flex;
    align-items: center;

    padding: 15px;

    margin-bottom: 23px;

    border: 1px solid #e9eaf0;

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .03);
}

.nv-country-code {
    padding-right: 13px;
    margin-right: 13px;

    border-right: 1px solid #e6e7ed;

    color: #555969;

    font-size: 12px;
    font-weight: 600;
}

.nv-number {
    color: #1f1343;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: .7px;
}

.nv-success-icon {
    margin-left: auto;

    color: #22c55e;

    font-size: 20px;

    animation: nvSuccessPulse 2s infinite;
}


/* =========================================================
   OTP
========================================================= */

.nv-otp-title {
    display: flex;
    justify-content: space-between;

    margin-bottom: 12px;
}

.nv-otp-title span {
    color: #363649;

    font-size: 12px;
    font-weight: 600;
}

.nv-otp-title small {
    color: #22a35a;

    font-size: 10px;
}

.nv-otp-boxes {
    display: flex;
    gap: 9px;

    margin-bottom: 20px;
}

.nv-otp-boxes span {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    border: 1px solid #e5e6ed;

    background: #fafaff;

    color: #1f1343;

    font-size: 17px;
    font-weight: 700;

    animation: nvOtpAppear .5s ease forwards;

    opacity: 0;
}

.nv-otp-boxes span:nth-child(1) {
    animation-delay: .2s;
}

.nv-otp-boxes span:nth-child(2) {
    animation-delay: .3s;
}

.nv-otp-boxes span:nth-child(3) {
    animation-delay: .4s;
}

.nv-otp-boxes span:nth-child(4) {
    animation-delay: .5s;
}

.nv-otp-boxes span:nth-child(5) {
    animation-delay: .6s;
}

.nv-otp-boxes span:nth-child(6) {
    animation-delay: .7s;
}


/* =========================================================
   SUCCESS CARD
========================================================= */

.nv-success-card {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;

    margin-bottom: 20px;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, .08),
        rgba(34, 197, 94, .02)
    );

    border: 1px solid rgba(34, 197, 94, .12);

    animation: nvSuccessAppear 1s ease .8s both;
}

.nv-success-icon-box {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #22c55e;

    color: #fff;

    box-shadow:
        0 8px 20px rgba(34, 197, 94, .25);

    animation: nvSuccessPulse 2s infinite;
}

.nv-success-card strong {
    display: block;

    color: #1f1343;

    font-size: 13px;
}

.nv-success-card small {
    display: block;

    margin-top: 2px;

    color: #858895;

    font-size: 10px;
}

.nv-shield-check {
    margin-left: auto;

    color: #22c55e;

    font-size: 20px;
}


/* =========================================================
   STATS
========================================================= */

.nv-verification-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #eeeeF2;

    padding-top: 18px;
}

.nv-verification-stats > div {
    text-align: center;

    border-right: 1px solid #eeeeF2;
}

.nv-verification-stats > div:last-child {
    border-right: 0;
}

.nv-verification-stats strong {
    display: block;

    color: #1f1343;

    font-size: 18px;
}

.nv-verification-stats span {
    display: block;

    margin-top: 3px;

    color: #9295a1;

    font-size: 9px;
}


/* =========================================================
   FLOATING HERO ICONS
========================================================= */

.nv-hero-floating {
    position: absolute;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: rgba(255, 255, 255, .95);

    color: #5757d1;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .12);

    z-index: 8;
}

.nv-floating-shield {
    top: 80px;
    right: 25px;

    animation: nvFloatingShield 4s ease-in-out infinite;
}

.nv-floating-check {
    bottom: 75px;
    left: 15px;

    color: #22c55e;

    animation: nvFloatingCheck 4.5s ease-in-out infinite;
}

.nv-floating-phone {
    top: 42%;
    right: -5px;

    color: #f59e0b;

    animation: nvFloatingPhone 5s ease-in-out infinite;
}


/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes nvHeroContent {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes nvHeroVisual {

    from {
        opacity: 0;
        transform: translateX(50px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

}

@keyframes nvHeroGlowOne {

    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(60px, 50px);
    }

}

@keyframes nvHeroGlowTwo {

    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-60px, -40px);
    }

}

@keyframes nvBadgePulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

}

@keyframes nvTitleLine {

    to {
        transform: scaleX(1);
    }

}

@keyframes nvRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes nvRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}

@keyframes nvCardFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes nvCardAppear {

    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
    }

}

@keyframes nvLiveBlink {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }

}

@keyframes nvSuccessPulse {

    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(34, 197, 94, .2);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

}

@keyframes nvOtpAppear {

    from {
        opacity: 0;
        transform: translateY(15px) scale(.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

@keyframes nvSuccessAppear {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes nvFloatingShield {

    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }

}

@keyframes nvFloatingCheck {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(18px);
    }

}

@keyframes nvFloatingPhone {

    0%, 100% {
        transform: translate(0, 0) rotate(0);
    }

    50% {
        transform: translate(-15px, -15px) rotate(-8deg);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .nv-hero-title {
        font-size: 48px;
    }

    .nv-verification-card {
        width: 400px;
    }

    .nv-ring-one {
        width: 450px;
        height: 450px;
    }

    .nv-ring-two {
        width: 360px;
        height: 360px;
    }

}


@media (max-width: 991px) {

    .nv-hero-section {
        padding: 80px 0;
    }

    .nv-hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .nv-hero-title {
        margin-left: auto;
        margin-right: auto;

        font-size: 44px;
    }

    .nv-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .nv-hero-buttons,
    .nv-hero-features {
        justify-content: center;
    }

    .nv-hero-visual {
        min-height: 520px;
    }

}


@media (max-width: 767px) {

    .nv-hero-section {
        min-height: auto;
        padding: 70px 0;
    }

    .nv-hero-title {
        font-size: 36px;
    }

    .nv-hero-text {
        font-size: 15px;
    }

    .nv-hero-features {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nv-hero-feature {
        gap: 7px;
    }

    .nv-hero-visual {
        min-height: 470px;
    }

    .nv-verification-card {
        width: 90%;
        padding: 22px;
    }

    .nv-ring-one {
        width: 390px;
        height: 390px;
    }

    .nv-ring-two {
        width: 310px;
        height: 310px;
    }

    .nv-hero-floating {
        width: 45px;
        height: 45px;
    }

    .nv-floating-shield {
        right: 0;
    }

    .nv-floating-phone {
        right: -5px;
    }

}


@media (max-width: 575px) {

    .nv-hero-title {
        font-size: 30px;
    }

    .nv-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .nv-hero-btn {
        width: 100%;
    }

    .nv-hero-features {
        justify-content: space-between;
    }

    .nv-hero-feature > span {
        width: 32px;
        height: 32px;
    }

    .nv-hero-feature strong {
        font-size: 11px;
    }

    .nv-hero-feature small {
        font-size: 9px;
    }

    .nv-hero-visual {
        min-height: 430px;
    }

    .nv-verification-card {
        width: 100%;
        padding: 18px;
        border-radius: 22px;
    }

    .nv-ring-one {
        width: 330px;
        height: 330px;
    }

    .nv-ring-two {
        width: 270px;
        height: 270px;
    }

    .nv-hero-floating {
        display: none;
    }

    .nv-otp-boxes {
        gap: 5px;
    }

    .nv-otp-boxes span {
        width: 40px;
        height: 40px;
    }

}


@media (max-width: 400px) {

    .nv-hero-title {
        font-size: 27px;
    }

    .nv-hero-features {
        gap: 8px;
    }

    .nv-verification-card {
        padding: 15px;
    }

    .nv-otp-boxes span {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

}