/* =========================
   MLM HOME PAGE - PREMIUM SAAS STYLE
========================= */

/* HERO SECTION */
.hero{
    background:linear-gradient(135deg,#059669,#10B981);
    color:#fff;
    padding:120px 0;
}

.hero .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.hero h1 span{
    color:#D1FAE5;
}

.hero p{
    font-size:18px;
    color:#E5E7EB;
    margin-bottom:30px;
    line-height:1.7;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* HERO IMAGE */
.hero img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:40px;
    color:var(--heading);
    margin-top:10px;
}

/* =========================
   FEATURES SECTION
========================= */

.features{
    background:#F8FAFC;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(16,185,129,0.15);
}

.feature-card .icon{
    width:65px;
    height:65px;
    margin:auto;
    background:var(--primary-light);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.feature-card i{
    font-size:26px;
    color:var(--primary);
}

.feature-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:var(--heading);
}

.feature-card p{
    font-size:14px;
    color:var(--text);
    line-height:1.6;
}

/* =========================
   ABOUT PREVIEW
========================= */

.about-preview{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-preview p{
    line-height:1.8;
}

/* =========================
   PRICING PLANS
========================= */

.pricing{
    background:#F8FAFC;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.plan-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.plan-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(16,185,129,0.15);
    border:2px solid var(--primary);
}

.plan-price{
    font-size:34px;
    font-weight:800;
    color:var(--primary);
    margin:15px 0;
}

.plan-card ul li{
    margin:10px 0;
    color:var(--text);
}

/* =========================
   STATS SECTION
========================= */

/* =========================
   STATS SECTION (DESKTOP)
========================= */

.stats{
    background:var(--primary-light);
    padding:80px 0;
}

.stat-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

/* CARD STYLE */
.stat-box{
    background:#fff;
    padding:30px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
}

.stat-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(16,185,129,0.15);
}

.stat-box i{
    font-size:26px;
    color:var(--primary);
    margin-bottom:10px;
}

.stat-box h3{
    font-size:34px;
    color:var(--primary-dark);
    margin-bottom:5px;
    font-weight:800;
}

.stat-box p{
    color:var(--text);
    font-weight:600;
}

/* =========================
   MOBILE - PREMIUM SCROLL
========================= */

@media(max-width:768px){

    .stat-grid{
        display:flex;
        overflow-x:auto;
        gap:15px;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
    }

    .stat-box{
        min-width:220px;
        flex:0 0 auto;
        scroll-snap-align:start;
    }

    /* hide scrollbar */
    .stat-grid::-webkit-scrollbar{
        display:none;
    }
}

/* =========================
   WHY CHOOSE US
========================= */

.why{
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-box{
    padding:30px;
    border-left:4px solid var(--primary);
    background:#F8FAFC;
    border-radius:10px;
}

/* =========================
   TESTIMONIAL
========================= */

/* =========================
   TESTIMONIALS (DESKTOP)
========================= */

.testimonials{
    background:#F8FAFC;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD STYLE */
.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s;
    position:relative;
}

/* QUOTE STYLE */
.testimonial-card::before{
    content:"“";
    font-size:60px;
    color:var(--primary-light);
    position:absolute;
    top:10px;
    left:15px;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(16,185,129,0.15);
}

.testimonial-card p{
    margin-top:20px;
    color:var(--text);
    line-height:1.7;
    font-size:15px;
}

.testimonial-card h4{
    margin-top:20px;
    color:var(--heading);
    font-size:16px;
}

.testimonial-card small{
    color:var(--primary);
    font-weight:600;
}

/* =========================
   MOBILE - PREMIUM SWIPE STYLE
========================= */

@media(max-width:768px){

    .testimonial-grid{
        display:flex;
        overflow-x:auto;
        gap:15px;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
    }

    .testimonial-card{
        min-width:280px;
        flex:0 0 auto;
        scroll-snap-align:start;
    }

    /* hide scrollbar */
    .testimonial-grid::-webkit-scrollbar{
        display:none;
    }
}

/* =========================
   CTA SECTION
========================= */

.cta{
    background:linear-gradient(135deg,#059669,#10B981);
    color:#fff;
    text-align:center;
    padding:100px 0;
}

.cta h2{
    font-size:40px;
    margin-bottom:15px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width:991px){

    .hero .container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero h1{
        font-size:40px;
    }

    .feature-grid,
    .plan-grid,
    .testimonial-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .stat-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .hero h1{
        font-size:32px;
    }

    .stat-grid{
        grid-template-columns:1fr;
    }

}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.plan-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.plan-card:hover{
    transform:translateY(-10px);
    border:2px solid var(--primary);
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    background:#fff;
    padding:25px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* =========================
   TRUST SECTION (DESKTOP)
========================= */

.trust{
    background:var(--primary-light);
    padding:70px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* CARD STYLE */
.trust-item{
    background:#fff;
    padding:25px 20px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

.trust-item:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(16,185,129,0.15);
}

.trust-item i{
    font-size:26px;
    color:var(--primary);
    margin-bottom:10px;
}

.trust-item p{
    font-weight:600;
    color:var(--heading);
}

/* =========================
   MOBILE - PREMIUM SCROLL BAR
========================= */

@media(max-width:768px){

    .trust-grid{
        display:flex;
        overflow-x:auto;
        gap:15px;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
    }

    .trust-item{
        min-width:220px;
        flex:0 0 auto;
        scroll-snap-align:start;
    }

    /* hide scrollbar for clean UI */
    .trust-grid::-webkit-scrollbar{
        display:none;
    }
}

/* Features Extra Premium */
/* ==================================
   PREMIUM FEATURES SECTION
================================== */

.features-premium{
    background:#ffffff;
    padding:100px 0;
}

.features-premium .section-title{
    max-width:800px;
    margin:0 auto 70px;
}

.features-premium .section-title p{
    margin-top:15px;
    color:var(--text);
    line-height:1.8;
}

.feature-showcase{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT FEATURES */

.feature-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    padding:25px;
    background:#fff;
    border-radius:18px;
    transition:.3s;
    border:1px solid #edf2f7;
}

.feature-item:hover{
    transform:translateX(8px);
    box-shadow:0 15px 40px rgba(16,185,129,.12);
}

.feature-icon{
    width:65px;
    height:65px;
    min-width:65px;
    background:var(--primary-light);
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    font-size:24px;
    color:var(--primary);
}

.feature-item h3{
    color:var(--heading);
    margin-bottom:8px;
    font-size:20px;
}

.feature-item p{
    line-height:1.7;
}

/* RIGHT DASHBOARD */

.feature-dashboard{
    position:relative;
    min-height:520px;
}

.dashboard-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:25px;
    width:230px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.dashboard-card:hover{
    transform:translateY(-8px);
}

.dashboard-card i{
    font-size:28px;
    color:var(--primary);
    margin-bottom:15px;
}

.dashboard-card h4{
    color:var(--heading);
    margin-bottom:8px;
}

.dashboard-card p{
    font-size:14px;
}

.card-one{
    top:0;
    left:0;
}

.card-two{
    top:70px;
    right:0;
}

.card-three{
    bottom:80px;
    left:20px;
}

.card-four{
    bottom:0;
    right:20px;
}

/* MOBILE RESPONSIVE */

@media(max-width:991px){

    .feature-showcase{
        grid-template-columns:1fr;
    }

    .feature-dashboard{
        min-height:auto;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
        margin-top:30px;
    }

    .dashboard-card{
        position:relative;
        width:100%;
        top:auto;
        left:auto;
        right:auto;
        bottom:auto;
    }

}

@media(max-width:576px){

    .feature-item{
        flex-direction:column;
        text-align:center;
    }

    .feature-icon{
        margin:auto;
    }

    .feature-dashboard{
        grid-template-columns:1fr;
    }

}


/* Feature Scroller css starts here */
/* ==========================
   HOME FEATURE STRIP
========================== */

.home-feature-strip{
    background:#ffffff;
    padding:80px 0;
    overflow:hidden;
}

.home-feature-strip .section-title{
    text-align:center;
    margin-bottom:50px;
}

.home-feature-strip .section-title p{
    max-width:700px;
    margin:15px auto 0;
}

.feature-slider{
    overflow:hidden;
    width:100%;
}

.feature-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:homeFeatureScroll 35s linear infinite;
}

.feature-logo-card{
    min-width:220px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    border:1px solid #E5E7EB;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-logo-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 35px rgba(16,185,129,.15);
}

.feature-logo-card i{
    font-size:30px;
    color:#10B981;
    margin-bottom:15px;
}

.feature-logo-card span{
    display:block;
    color:#1F2937;
    font-weight:600;
}

@keyframes homeFeatureScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* MOBILE */

@media(max-width:768px){

    .feature-logo-card{
        min-width:180px;
        padding:20px;
    }

    .feature-logo-card span{
        font-size:14px;
    }

}

/* Featue Scroller Css Ends Here */