/*==================================================
    ClevfBoost
    Premium SMM Panel
    Theme: Blue & White
    Font: League Spartan
==================================================*/

/*==============================
        GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700;800&display=swap');

/*==============================
        ROOT VARIABLES
==============================*/

:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --primary-light:#dbeafe;

    --secondary:#1e293b;

    --success:#10b981;
    --warning:#f59e0b;
    --danger:#ef4444;

    --white:#ffffff;
    --body:#f8fafc;
    --border:#e5e7eb;

    --text:#111827;
    --muted:#6b7280;

    --shadow:0 10px 35px rgba(15,23,42,.08);

    --radius:18px;

    --transition:.35s ease;

}

/*==============================
        RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--body);

    color:var(--text);

    font-family:'League Spartan',sans-serif;

    font-size:17px;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

section{

    padding:90px 0;

}

::selection{

    background:var(--primary);

    color:#fff;

}

/*==============================
        SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

/*==============================
        TYPOGRAPHY
==============================*/

h1,h2,h3,h4,h5,h6{

    color:var(--text);

    font-weight:700;

    margin-bottom:15px;

}

p{

    color:var(--muted);

    line-height:1.8;

    margin-bottom:0;

}

.section-title{

    max-width:720px;

    margin:auto;

}

.section-title h2{

    font-size:48px;

    margin-top:15px;

    font-weight:800;

}

.section-title p{

    margin-top:18px;

    font-size:18px;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:var(--primary-light);

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

}

/*==============================
        BUTTONS
==============================*/

.btn{

    border-radius:14px;

    padding:14px 30px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:none;

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(37,99,235,.30);

}

.btn-outline-primary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);

}

.btn-light{

    background:#fff;

    border:1px solid var(--border);

}

/*==============================
        NAVBAR
==============================*/

.navbar{

    padding:18px 0;

    background:rgba(255,255,255,.88)!important;

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(229,231,235,.7);

    transition:var(--transition);

    z-index:999;

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:30px;

    font-weight:800;

    color:var(--text)!important;

}

.logo-circle{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,
        var(--primary),
        var(--primary-dark));

    color:#fff;

    font-size:20px;

}

.navbar-nav{

    gap:15px;

}

.nav-link{

    font-weight:600;

    color:var(--text)!important;

    position:relative;

    padding:8px 14px!important;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.nav-link.active{

    color:var(--primary)!important;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:14px;

    bottom:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.nav-link:hover::after{

    width:60%;

}

/*==============================
        HERO
==============================*/

.hero-section{

    position:relative;

    overflow:hidden;

    padding-top:120px;

    padding-bottom:100px;

    background:
    radial-gradient(circle at top right,
    #dbeafe 0%,
    transparent 40%);

}

.hero-title{

    font-size:68px;

    line-height:1.05;

    font-weight:800;

}

.hero-title span{

    color:var(--primary);

}

.hero-description{

    font-size:21px;

    margin-top:25px;

    max-width:560px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    padding:12px 20px;

    border-radius:50px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    font-weight:600;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

    flex-wrap:wrap;

}

.hero-features{

    display:flex;

    gap:28px;

    flex-wrap:wrap;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.feature-item i{

    color:var(--success);

}

/*==================================
        HERO DASHBOARD
==================================*/

.hero-dashboard{

    position:relative;

    background:#ffffff;

    border-radius:24px;

    padding:30px;

    box-shadow:0 30px 70px rgba(37,99,235,.12);

    border:1px solid rgba(37,99,235,.08);

    animation:floatCard 5s ease-in-out infinite;

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.dashboard-header h4{

    font-size:24px;

    margin-bottom:4px;

}

.dashboard-header small{

    color:var(--muted);

}

.status-badge{

    display:flex;

    align-items:center;

    gap:8px;

    background:#ecfdf5;

    color:var(--success);

    padding:10px 18px;

    border-radius:50px;

    font-weight:700;

    font-size:14px;

}

.status-badge i{

    font-size:9px;

}

/*==================================
        WALLET CARD
==================================*/

.wallet-card{

    background:linear-gradient(135deg,
                var(--primary),
                var(--primary-dark));

    color:#fff;

    border-radius:22px;

    padding:28px;

    overflow:hidden;

    position:relative;

}

.wallet-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-70px;

    top:-70px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.wallet-card::after{

    content:"";

    position:absolute;

    width:110px;

    height:110px;

    left:-30px;

    bottom:-40px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.wallet-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:relative;

    z-index:2;

}

.wallet-top small{

    color:rgba(255,255,255,.8);

    font-size:15px;

}

.wallet-top h2{

    color:#fff;

    font-size:40px;

    margin-top:10px;

    font-weight:800;

}

.wallet-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

}

.wallet-icon i{

    font-size:28px;

    color:#fff;

}

.wallet-bottom{

    margin-top:25px;

    position:relative;

    z-index:2;

}

.wallet-bottom span{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.wallet-bottom i{

    color:#8bffcb;

}

/*==================================
        MINI DASHBOARD CARDS
==================================*/

.mini-card{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:22px;

    text-align:center;

    transition:var(--transition);

    box-shadow:0 10px 25px rgba(15,23,42,.05);

}

.mini-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.mini-icon{

    width:60px;

    height:60px;

    margin:0 auto 18px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

}

.mini-card h3{

    font-size:30px;

    font-weight:800;

    margin-bottom:8px;

}

.mini-card small{

    color:var(--muted);

    font-size:15px;

}

/*==================================
        HOMEPAGE STATISTICS
==================================*/

.statistics{

    background:#ffffff;

}

.stats-card{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.stats-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.stats-card i{

    width:75px;

    height:75px;

    margin:0 auto 22px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary-light);

    color:var(--primary);

    font-size:30px;

}

.stats-card h2{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;

}

.stats-card p{

    font-size:17px;

    color:var(--muted);

}

/*==================================
        ANIMATIONS
==================================*/

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-title,
.hero-description,
.hero-buttons,
.hero-dashboard,
.stats-card{

    animation:fadeUp .8s ease both;

}

.hero-dashboard{

    animation:
        fadeUp .8s ease,
        floatCard 5s ease-in-out infinite;

}

/*==================================
        UTILITIES
==================================*/

.shadow-soft{

    box-shadow:var(--shadow);

}

.rounded-xl{

    border-radius:20px;

}

.bg-primary-light{

    background:var(--primary-light);

}

.text-primary{

    color:var(--primary)!important;

}

.border-light{

    border:1px solid var(--border)!important;

}

/*==================================================
        WHY CHOOSE US
==================================================*/

.why-us{

    background:#f8fafc;

}

.feature-card{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px 30px;

    text-align:center;

    transition:all .35s ease;

    height:100%;

    box-shadow:0 15px 35px rgba(15,23,42,.05);

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.feature-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;

    font-size:28px;

}

.feature-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.feature-card p{

    color:var(--muted);

    line-height:1.7;

}


/*==================================================
        SERVICES
==================================================*/

.services{

    background:#ffffff;

}

.service-card{

    background:#fff;

    border-radius:22px;

    border:1px solid var(--border);

    padding:30px;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 30px rgba(15,23,42,.05);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(37,99,235,.15);

    border-color:var(--primary);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    margin-bottom:25px;

}

.instagram{

    background:linear-gradient(135deg,#fd5949,#d6249f,#285AEB);

}

.facebook{

    background:#1877f2;

}

.youtube{

    background:#ff0000;

}

.tiktok{

    background:#111827;

}

.telegram{

    background:#229ED9;

}

.twitter{

    background:#000;

}

.service-card h4{

    font-size:24px;

    margin-bottom:12px;

    font-weight:700;

}

.service-card p{

    color:var(--muted);

    margin-bottom:25px;

}

.service-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:15px;

}

.service-bottom span{

    color:var(--primary);

    font-size:20px;

    font-weight:700;

}

.service-bottom a{

    background:var(--primary);

    color:#fff;

    padding:10px 22px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.service-bottom a:hover{

    background:var(--primary-dark);

    color:#fff;

}


/*==================================================
        HOW IT WORKS
==================================================*/

.how-it-works{

    background:#f8fafc;

}

.step-card{

    background:#ffffff;

    border-radius:22px;

    border:1px solid var(--border);

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

    height:100%;

}

.step-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.15);

}

.step-number{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:800;

}

.step-card h4{

    font-size:26px;

    margin-bottom:15px;

}

.step-card p{

    color:var(--muted);

    line-height:1.8;

}


/*==================================================
        SECTION SPACING
==================================================*/

.services,
.why-us,
.how-it-works{

    position:relative;

}

.section-title{

    margin-bottom:60px;

}

.section-title h2{

    font-size:46px;

    font-weight:800;

}

.section-title p{

    font-size:18px;

    max-width:650px;

    margin:auto;

}

/*==================================================
                TESTIMONIALS
==================================================*/

.testimonials{

    background:#ffffff;

}

.testimonial-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px;

    transition:all .35s ease;

    height:100%;

    box-shadow:0 12px 30px rgba(15,23,42,.05);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(37,99,235,.12);

    border-color:var(--primary);

}

.stars{

    color:#fbbf24;

    font-size:18px;

}

.testimonial-card p{

    margin:20px 0 30px;

    line-height:1.8;

    color:var(--muted);

    font-size:17px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-user img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-user h5{

    margin-bottom:5px;

    font-size:18px;

}

.testimonial-user small{

    color:var(--muted);

}

/*==================================================
                        FAQ
==================================================*/

.faq{

    background:#f8fafc;

}

.accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 10px 25px rgba(15,23,42,.05);

}

.accordion-button{

    padding:22px 25px;

    font-size:18px;

    font-weight:700;

    background:#fff;

    color:var(--text);

    box-shadow:none!important;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px 25px;

    line-height:1.9;

    color:var(--muted);

    background:#fff;

}

/*==================================================
                    CTA SECTION
==================================================*/

.cta-section{

    padding:90px 0;

    background:#ffffff;

}

.cta-box{

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    border-radius:30px;

    padding:60px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(37,99,235,.25);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-80px;

    right:-80px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    bottom:-60px;

    left:-40px;

}

.cta-box h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin:18px 0;

}

.cta-box p{

    color:rgba(255,255,255,.85);

    max-width:650px;

    font-size:18px;

}

.cta-box .btn{

    border-radius:16px;

    font-weight:700;

    padding:16px 35px;

}

.cta-box .btn:hover{

    transform:translateY(-5px);

}

/*==================================================
                    FOOTER
==================================================*/

.footer{

    background:#0f172a;

    color:#cbd5e1;

    padding:80px 0 25px;

}

.footer-logo{

    font-size:34px;

    font-weight:800;

    color:#fff;

    text-decoration:none;

}

.footer-logo span{

    color:var(--primary);

}

.footer p{

    color:#94a3b8;

    line-height:1.8;

}

.footer h5{

    color:#fff;

    font-weight:700;

    margin-bottom:22px;

}

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#fff;

    padding-left:6px;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-4px);

}

.newsletter{

    display:flex;

    margin-top:20px;

}

.newsletter input{

    flex:1;

    border:none;

    outline:none;

    padding:15px 18px;

    border-radius:14px 0 0 14px;

}

.newsletter button{

    border:none;

    background:var(--primary);

    color:#fff;

    padding:0 25px;

    border-radius:0 14px 14px 0;

    transition:.3s;

}

.newsletter button:hover{

    background:var(--primary-dark);

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#94a3b8;

}

/*==================================================
                BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-size:20px;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

    box-shadow:0 15px 35px rgba(37,99,235,.35);

}

.back-to-top.active{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    color:#fff;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width:991px){

.hero{

    padding:120px 0 70px;

}

.hero-title{

    font-size:48px;

}

.hero-dashboard{

    margin-top:50px;

}

.section-title h2{

    font-size:38px;

}

.cta-box{

    padding:45px;

}

.cta-box h2{

    font-size:38px;

}

.footer{

    text-align:center;

}

.footer-social{

    justify-content:center;

}

.newsletter{

    max-width:500px;

    margin:20px auto 0;

}

}

@media (max-width:768px){

.hero{

    text-align:center;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-features{

    justify-content:center;

}

.hero-title{

    font-size:40px;

}

.wallet-top{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

}

.wallet-top h2{

    font-size:34px;

}

.section-title h2{

    font-size:32px;

}

.cta-box{

    padding:35px 30px;

    text-align:center;

}

.cta-box h2{

    font-size:32px;

}

.newsletter{

    flex-direction:column;

    gap:12px;

}

.newsletter input{

    border-radius:12px;

}

.newsletter button{

    border-radius:12px;

    height:52px;

}

}

@media (max-width:576px){

section{

    padding:70px 0;

}

.hero{

    padding-top:100px;

}

.hero-title{

    font-size:34px;

}

.hero-description{

    font-size:16px;

}

.dashboard-header{

    flex-direction:column;

    align-items:flex-start;

    gap:15px;

}

.hero-dashboard{

    padding:20px;

}

.wallet-card{

    padding:22px;

}

.feature-card,

.service-card,

.step-card,

.testimonial-card{

    padding:25px;

}

.stats-card{

    padding:28px 20px;

}

.footer{

    padding:60px 0 20px;

}

.back-to-top{

    width:46px;

    height:46px;

    right:18px;

    bottom:18px;

}

}