﻿/*=========================================
        NEXTRADE HERO
=========================================*/

.nextrade-hero {
    padding: 120px 0;
    background: linear-gradient(135deg,#eef4ff,#ffffff);
    overflow: hidden;
    position: relative;
}

    .nextrade-hero:before {
        content: "";
        position: absolute;
        width: 550px;
        height: 550px;
        background: #21409A;
        opacity: .05;
        border-radius: 50%;
        right: -180px;
        top: -180px;
    }

.hero-tag {
    display: inline-block;
    background: #21409A;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.nextrade-hero h1 {
    font-size: 58px;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .nextrade-hero h1 span {
        display: block;
        color: #21409A;
    }

.nextrade-hero p {
    font-size: 18px;
    color: #666;
    line-height: 34px;
    margin-bottom: 35px;
}

/* Buttons */

.hero-buttons {
    margin-bottom: 45px;
}

.btn-primary-custom {
    display: inline-block;
    background: #21409A;
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    margin-right: 15px;
    transition: .3s;
}

    .btn-primary-custom:hover {
        background: #16357f;
        color: #fff;
        text-decoration: none;
    }

.btn-outline-custom {
    display: inline-block;
    border: 2px solid #21409A;
    color: #21409A;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .btn-outline-custom:hover {
        background: #21409A;
        color: #fff;
        text-decoration: none;
    }

/* Counter */

.hero-counter {
    display: flex;
    gap: 20px;
}

.counter-box {
    flex: 1;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .counter-box h3 {
        color: #21409A;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .counter-box span {
        color: #666;
    }

/* Image */

.hero-image-area {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

/* Floating Cards */

.floating-card {
    position: absolute;
    background: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    min-width: 180px;
}

    .floating-card i {
        color: #21409A;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .floating-card h4 {
        font-size: 26px;
        font-weight: 700;
        color: #21409A;
        margin-bottom: 5px;
    }

    .floating-card span {
        color: #777;
        font-size: 14px;
    }

.sales-card {
    top: 40px;
    left: -40px;
}

.stock-card {
    bottom: 40px;
    right: -20px;
}

.invoice-card {
    top: 220px;
    right: -60px;
}

/* Responsive */

@media(max-width:991px) {

    .hero-counter {
        display: block;
    }

    .counter-box {
        margin-bottom: 20px;
    }

    .hero-image-area {
        margin-top: 60px;
    }

    .sales-card,
    .stock-card,
    .invoice-card {
        display: none;
    }

    .nextrade-hero h1 {
        font-size: 42px;
    }
}

/*=========================================
        MODULES
=========================================*/

.nextrade-modules {
    padding: 110px 0;
    background: #f7faff;
}

.module-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
    border-top: 5px solid transparent;
}

    .module-card:hover {
        transform: translateY(-10px);
        border-color: #21409A;
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.module-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
}

.blue {
    background: #21409A;
}

.green {
    background: #18b67c;
}

.orange {
    background: #f39c12;
}

.purple {
    background: #7b4dd6;
}

.red {
    background: #e74c3c;
}

.dark {
    background: #2c3e50;
}

.module-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .module-card ul li {
        padding: 10px 0;
        border-bottom: 1px dashed #e5e5e5;
        color: #555;
        font-size: 16px;
    }

        .module-card ul li:last-child {
            border-bottom: none;
        }

        .module-card ul li:before {
            content: "✓";
            color: #18b67c;
            font-weight: bold;
            margin-right: 10px;
        }


/*==================================
        OVERVIEW
===================================*/

.nextrade-overview {
    padding: 110px 0;
    background: #fff;
}

/*==================================
        WHY NEXTRADE
===================================*/

.why-nextrade {
    padding: 110px 0;
    background: #f7faff;
}

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    margin-bottom: 30px;
    height: 100%;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

    .why-card i {
        width: 80px;
        height: 80px;
        line-height: 80px;
        border-radius: 50%;
        background: #21409A;
        color: #fff;
        font-size: 30px;
        margin-bottom: 25px;
    }

    .why-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        min-height: 60px;
    }

    .why-card p {
        color: #666;
        line-height: 30px;
    }

/*==================================
        CTA
===================================*/

.nextrade-cta {
    padding: 90px 0;
    background: linear-gradient(135deg,#21409A,#3769d4);
    color: #fff;
}

    .nextrade-cta h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .nextrade-cta p {
        font-size: 18px;
        opacity: .95;
    }

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: #fff;
    color: #21409A;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

    .cta-btn:hover {
        background: #18b67c;
        color: #fff;
        text-decoration: none;
    }

@media(max-width:991px) {

    .nextrade-cta {
        text-align: center;
    }

        .nextrade-cta .text-right {
            text-align: center !important;
            margin-top: 30px;
        }
}

.section-tag {
    display: inline-block;
    padding: 9px 24px;
    background: linear-gradient(135deg,#21409A,#4f7ff7);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(33,64,154,.25);
    margin-bottom: 20px;
}

/*=========================================
        SECTION HEADER
=========================================*/

.section-header {
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

    /* Small Badge */

    .section-header span {
        display: inline-block;
        padding: 10px 26px;
        background: linear-gradient(135deg,#21409A,#3f6de0);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(33,64,154,.25);
        margin-bottom: 22px;
    }

    /* Main Heading */

    .section-header h2 {
        font-size: 50px;
        font-weight: 800;
        color: #222;
        margin-bottom: 22px;
        line-height: 1.2;
    }

    /* Description */

    .section-header p {
        font-size: 18px;
        color: #666;
        line-height: 32px;
        max-width: 720px;
        margin: 0 auto;
    }

/*=========================================
        WHY NEXTRADE
=========================================*/

.why-nextrade {
    padding: 110px 0;
    background: #f7faff;
}

    .why-nextrade .row {
        display: flex;
        flex-wrap: wrap;
    }

        .why-nextrade .row > div {
            display: flex;
            margin-bottom: 30px;
        }

.why-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .why-card:hover {
        transform: translateY(-10px);
        border-top: 4px solid #21409A;
        box-shadow: 0 20px 50px rgba(0,0,0,.15);
    }

    /* Icon */

    .why-card i {
        width: 85px;
        height: 85px;
        line-height: 85px;
        border-radius: 50%;
        background: linear-gradient(135deg,#21409A,#4b75e8);
        color: #fff;
        font-size: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        box-shadow: 0 12px 30px rgba(33,64,154,.30);
    }

    /* Heading */

    .why-card h3 {
        font-size: 23px;
        font-weight: 700;
        color: #222;
        line-height: 32px;
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
    }

    /* Paragraph */

    .why-card p {
        color: #666;
        line-height: 30px;
        font-size: 16px;
        flex-grow: 1;
        margin-bottom: 0;
    }

    .why-card:hover i {
        transform: rotate(8deg) scale(1.08);
        transition: .35s;
    }

.nextrade-overview {
    padding: 120px 0;
    background: linear-gradient(180deg,#ffffff,#f7fbff);
}

.business-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 70px;
}

.center-dashboard {
    flex: 0 0 45%;
    padding: 25px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.business-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s;
    border: 1px solid #eef2ff;
    min-width: 220px;
}

    .business-box:hover {
        transform: translateY(-8px);
        background: #21409A;
        color: #fff;
    }

    .business-box i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        background: #21409A;
        color: #fff;
        font-size: 28px;
        margin-bottom: 18px;
    }

    .business-box:hover i {
        background: #fff;
        color: #21409A;
    }

    .business-box h4 {
        font-size: 22px;
        font-weight: 700;
        margin: 0;
    }

@media(max-width:991px) {

    .business-layout {
        display: block;
    }

    .left-features,
    .right-features {
        margin-bottom: 30px;
    }

    .center-dashboard {
        margin-bottom: 30px;
    }

    .business-box {
        min-width: 100%;
    }
}

.img-responsive {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
    transition: all .35s ease;
}

    .img-responsive:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 35px 80px rgba(33,64,154,.22);
    }

    .sales-card {
    top: 30px;
    left: -40px;
    }

    .invoice-card {
    top: 120px;
    right: -50px;
    }

    .stock-card {
    bottom: 20px;
    right: 20px;
    }

.product-name {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -2px;
}

    .product-name .nex {
        color: #808000;
    }

    .product-name .trade {
        color: #0066ff;
    }