.nps-banner {
    background: #f8fbff;
}

.banner-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #e7f0ff;
    color: #2563eb;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 40px;
}

.banner-title {
    font-size: 47px;
    line-height: 1.1;
    font-weight: 800;
    color: #081b49;
    margin-bottom: 14px;
}

    .banner-title span {
        color: #d71920;
        display: block;
    }

.banner-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: -18px;
}

.feature-box {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 58px;
    height: 58px;
    background: #edf4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 28px;
    margin-bottom: 12px;
}

.feature-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: #081b49;
}

.feature-box p {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
}

.banner-btns {
    margin-top: 6px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background-color: #d71920;
    color: #fff;
    border: 2px solid #d71920;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-open:hover {
        background-color: #b91419;
        border-color: #b91419;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }

    .btn-open:focus,
    .btn-open:active {
        outline: none;
        box-shadow: none;
    }
.btn-sip {
    background: var(--gradient-cta, linear-gradient(135deg, #2563eb, #1d4ed8));
    box-shadow: var(--shadow-elegant, 0 10px 25px rgba(37,99,235,.25));
    border: none;
    border-radius: 12px;
    padding: 17px 20px;
    color: var(--white, #fff);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

    .btn-sip:hover {
        background: #2563eb;
        color: #fff;
    }

.banner-footer {
    margin-top: 12px;
    font-size: 13px;
    color: #555;
}

    .banner-footer i {
        color: #2563eb;
        margin-right: 8px;
    }

.banner-image {
    position: relative;
}

    .banner-image img {
        width: 83%;
        height: 309px;
        border-radius: 35px;
        box-shadow: 0 20px 50px rgba(0,0,0,.15);
    }

.floating-card {
    position: absolute;
    bottom: -57px;
    right: 25px;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #edf4ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.floating-card h6 {
    color: #1f3b8c;
    margin-bottom: 6px;
    font-weight: 700;
}

.floating-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media(max-width:991px) {

    .banner-title {
        font-size: 46px;
    }

    .banner-image {
        margin-top: 50px;
    }
}

@media(max-width:576px) {

    .banner-title {
        font-size: 34px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-btns {
        flex-direction: column;
    }

    .btn-open,
    .btn-sip {
        width: 100%;
        text-align: center;
    }

    .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }
}

/*==============================
Why Choose NPS
==============================*/

.why-nps {
    background: #f8fbff;
}

.why-box {
    background: #fff;
    border: 1px solid #e7edf8;
    border-radius: 22px;
    padding: 45px 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
}

    .why-box h2 {
        font-size: 35px;
        font-weight: 700;
        color: #081b49;
        margin-bottom: 20px;
    }

        .why-box h2 span {
            color: #d71920;
        }

    .why-box p {
        color: #5f6676;
        font-size: 15px;
        line-height: 1.9;
        text-align: justify;
    }

.feature-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 28%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
}

    .icon i {
        font-size: 28px;
    }

.why-nps .blue {
    background: #eef4ff;
    color: #2b6cff;
}

.why-nps .cyan {
    background: #eafcfb;
    color: #1ab6b0;
}

.why-nps .purple {
    background: #f3ecff;
    color: #8b5cf6;
}

.why-nps .green {
    background: #eafcf2;
    color: #2bb673;
}

.feature-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #081b49;
    margin-bottom: 4px;
}


@media(max-width:991px) {

    .why-box {
        padding: 35px 25px;
    }

    .feature-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }

    .feature-item {
        flex: 0 0 45%;
    }

    .why-box h2 {
        font-size: 30px;
    }
}

@media(max-width:576px) {

    .feature-item {
        flex: 0 0 100%;
    }

    .why-box h2 {
        font-size: 26px;
    }

    .icon {
        width: 60px;
        height: 60px;
    }

        .icon i {
            font-size: 24px;
        }
}

/*=========================
How NPS Works
=========================*/

.section-title h2 {
    font-size: 35px;
    font-weight: 700;
    color: #081b49;
}

.section-title span {
    color: #d71920;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #081b49;
    border-radius: 10px;
    margin-top: 12px;
}

.steps-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.step-item {
    width: 180px;
    text-align: center;
    position: relative;
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #bfd5ff;
    background: #f7fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3d7cff;
    font-size: 24px;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2f6dff;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 15px;
}

.step-item h5 {
    font-size: 18px;
    color: #082056;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: #6d7283;
    line-height: 1.7;
}

.step-arrow {
    flex: 1;
    position: relative;
    margin: 26px -1px;
    align-self: center;
    margin-top:-40px;
    border-top: 2px dotted #8ab2ff;
}

    .step-arrow::after {
        content: "\2192"; /* Right Arrow */
        position: absolute;
        right: -21px;
        margin-top: -2px;
        transform: translateY(-50%);
        color: #2f6dff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
    }

/* Responsive */

@media(max-width:991px) {

    .steps-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-arrow {
        display: none;
    }

    .step-item {
        width: 45%;
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media(max-width:576px) {

    .step-item {
        width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/*==============================
     Benefits Section
==============================*/

.benefit-card {
    background: #fff;
    border: 1px solid #e7edf8;
    border-radius: 18px;
    padding: 16px 40px;
    height: 100%;
    transition: .35s ease;
}

    .benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.08);
        border-color: #2563eb;
    }

.icons {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Icon Colors */
.benefits-section {
    padding: 50px;
}

    .benefits-section .purple {
        background: #f3efff;
        color: #7c3aed;
    }

    .benefits-section .red {
        background: #fff0f0;
        color: #ef4444;
    }

    .benefits-section .orange {
        background: #fff5e6;
        color: #f59e0b;
    }

    .benefits-section .green {
        background: #eefbe8;
        color: #65a30d;
    }

    .benefits-section .pink {
        background: #fff0f7;
        color: #ec4899;
    }

    .benefits-section .blue {
        background: #edf5ff;
        color: #2563eb;
    }

    .benefits-section .cyan {
        background: #e9fbf7;
        color: #14b8a6;
    }

    .benefits-section .olive {
        background: #eef7ea;
        color: #2e7d32;
    }

.benefit-card h5 {
    color: #081b49;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */

@media(max-width:576px) {

    .benefits-section {
        padding: 60px 0;
    }

    .benefit-card {
        padding: 25px;
    }

        .benefit-card h5 {
            font-size: 18px;
        }

        .benefit-card p {
            font-size: 15px;
        }
}

.info-card {
    background: linear-gradient(135deg,#f7faff,#eef5ff);
    border: 1px solid #dfe9f7;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    overflow: hidden;
    transition: .35s ease;
    position: relative;
}

    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(32,67,140,.12);
    }

.info-content {
    width: 62%;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #081b49;
    margin-bottom: 25px;
}

.info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .info-card ul li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: #56657d;
        line-height: 1.8;
        margin-bottom: 5px;
    }

        .info-card ul li i {
            color: #2f73ff;
            font-size: 18px;
            margin-top: 5px;
            flex-shrink: 0;
        }

.info-image {
    width: 34%;
    text-align: center;
    position: relative;
}

    .info-image::before {
        content: "";
        width: 180px;
        height: 180px;
        background: #dfeaff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 0;
    }

    .info-image img {
        position: relative;
        z-index: 1;
        max-width: 100%;
        max-height: 220px;
    }

@media(max-width:991px) {

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-content {
        width: 100%;
        order: 2;
    }

    .info-image {
        width: 180px;
        margin-bottom: 25px;
        order: 1;
    }

    .info-card ul li {
        justify-content: center;
        text-align: left;
    }

    .info-card h3 {
        font-size: 28px;
    }
}

@media(max-width:576px) {

    .info-card {
        padding: 25px;
    }

        .info-card h3 {
            font-size: 24px;
        }

        .info-card ul li {
            font-size: 15px;
        }

    .info-image::before {
        width: 140px;
        height: 140px;
    }
}

/*==========================
CTA Banner
==========================*/

.nps-cta {
    padding: 60px 0;
}

.cta-box {
    background: #fff;
    border: 1px solid #f1dcc8;
    border-radius: 18px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.cta-left,
.cta-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.cta-icon {
    width: 101px;
    height: 65px;
    border-radius: 50%;
    background: #fff5ea;
    color: #f6a43a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-right: 18px;
}

.cta-left p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #30364a;
}

.cta-divider {
    width: 1px;
    height: 80px;
    background: #e8e8e8;
    margin: 0 35px;
}

.cta-right {
    justify-content: space-between;
}

.cta-text p {
    margin: 0;
    font-size: 16px;
    color: #30364a;
    line-height: 1.7;
}

.highlight {
    color: #2d73ff;
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    font-weight: 700;
    padding: 6px;
}

.clock-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff7ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6a43a;
    font-size: 42px;
    margin-left: 20px;
}

/* Responsive */

@media(max-width:991px) {

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-left,
    .cta-right {
        flex-direction: column;
    }

    .cta-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .cta-icon {
        margin: 0 0 20px;
    }

    .clock-icon {
        margin: 20px 0 0;
    }

    .cta-text p {
        font-size: 20px;
    }
}

@media(max-width:576px) {

    .cta-box {
        padding: 25px;
    }

    .cta-left p {
        font-size: 16px;
    }

    .cta-text p {
        font-size: 17px;
    }

    .highlight {
        font-size: 28px;
    }

    .clock-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }
}

/*==============================
 Future CTA Section
===============================*/

.future-cta-section {
    padding: 70px 0;
}

.future-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 55px 40px;
    text-align: center;
    background: linear-gradient(90deg,#1662db 0%,#0d47a1 50%,#081d63 100%);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.future-cta-content {
    position: relative;
    z-index: 5;
}

    .future-cta-content h2 {
        color: #fff;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .future-cta-content p {
        color: rgba(255,255,255,.9);
        font-size: 17px;
        margin-bottom: 30px;
    }

.future-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.future-btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    background-color: #d71920;
    color: #fff;
    text-decoration: none;
    border: 2px solid #d71920;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .future-btn-red:hover {
        background-color: #b91419;
        border-color: #b91419;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }

.future-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    background-color: #fff;
    color: #072b72;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .future-btn-white:hover {
        background-color: #f3f6ff;
        border-color: #f3f6ff;
        color: #072b72;
        text-decoration: none;
        transform: translateY(-2px);
    }

    .future-btn-white:focus,
    .future-btn-white:active {
        outline: none;
        box-shadow: none;
    }

.future-plant-img {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

/* Left Decorative Circle */

.future-cta-box::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    left: -150px;
    top: -80px;
    background: rgba(255,255,255,.06);
}

/* Right Decorative Circle */

.future-cta-box::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    right: -150px;
    top: -120px;
    border: 1px solid rgba(255,255,255,.08);
}

.future-circle-one {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -200px;
    top: -180px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

.future-circle-two {
    position: absolute;
    width: 320px;
    height: 320px;
    right: -150px;
    top: -130px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

@media(max-width:991px) {

    .future-cta-box {
        padding: 40px 25px;
    }

    .future-cta-content h2 {
        font-size: 30px;
    }

    .future-plant-img {
        width: 90px;
        left: 15px;
    }
}

@media(max-width:576px) {

    .future-cta-content h2 {
        font-size: 24px;
    }

    .future-cta-content p {
        font-size: 15px;
    }

    .future-btn-red,
    .future-btn-white {
        width: 100%;
        display: block;
    }

    .future-plant-img {
        display: none;
    }
}
