/* =========================================================
   CLICK2PAY
   PREMIUM GLOBAL STYLE
========================================================= */

:root{

    --primary:#1e88ff;
    --primary-dark:#1565d8;

    --secondary:#6c63ff;

    --success:#22c55e;
    --danger:#ef4444;
    --warning:#f59e0b;
    --info:#06b6d4;

    --dark:#07111f;
    --dark-2:#0d1b2a;

    --white:#ffffff;

    --text:#dbeafe;
    --muted:#94a3b8;

    --glass:rgba(255,255,255,.08);

    --border:rgba(255,255,255,.12);

    --shadow:
    0 20px 50px rgba(0,0,0,.25);

    --radius:24px;

}


/* =========================
 RESET
========================= */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
        135deg,
        #06101d,
        #0b1b33
    );

    color:var(--white);

    overflow-x:hidden;

}



/* =========================
 SELECTION
========================= */

::selection{

    background:var(--primary);

    color:white;

}



/* =========================
 SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;

}


::-webkit-scrollbar-track{

    background:#07111f;

}


::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;

}



/* =========================
 TEXT
========================= */

.text-muted{

    color:#94a3b8!important;

}


section{

    position:relative;

    z-index:2;

}




/* =========================================================
   ANIMATED BACKGROUND
========================================================= */


.animated-bg{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-3;

    background:
    radial-gradient(
        circle at top,
        rgba(30,136,255,.25),
        transparent 40%
    );

}



.animated-bg::before,
.animated-bg::after{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.25;

    animation:blobMove 18s ease-in-out infinite;

}


.animated-bg::before{

    background:var(--primary);

    top:-250px;

    left:-250px;

}



.animated-bg::after{

    background:var(--secondary);

    right:-250px;

    bottom:-250px;

    animation-delay:5s;

}



@keyframes blobMove{

    0%{

        transform:translate(0,0)
        scale(1);

    }


    50%{

        transform:
        translate(80px,60px)
        scale(1.15);

    }


    100%{

        transform:
        translate(0,0)
        scale(1);

    }

}



/* =========================
 SNOW
========================= */


.snow-container{

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-1;

}



.snow{

    position:absolute;

    width:5px;

    height:5px;

    background:white;

    border-radius:50%;

    opacity:.5;

    animation:snowFall linear infinite;

}


@keyframes snowFall{

    from{

        transform:
        translateY(-100px);

    }


    to{

        transform:
        translateY(110vh);

    }

}




/* =========================
 STARS
========================= */


.stars-container{

    position:fixed;

    inset:0;

    z-index:-2;

    background-image:
    radial-gradient(
        white 1px,
        transparent 1px
    );

    background-size:
    80px 80px;

    opacity:.15;

}



/* =========================================================
 NAVBAR
========================================================= */


.glass-navbar{

    background:
    rgba(7,17,31,.65);

    backdrop-filter:
    blur(20px);

    border-bottom:
    1px solid var(--border);

    transition:.4s;

}



.glass-navbar.scrolled{

    padding-top:8px;

    padding-bottom:8px;

    background:
    rgba(7,17,31,.9);

    box-shadow:
    0 10px 40px rgba(0,0,0,.3);

}



.logo{

    font-size:26px;

    color:white!important;

    letter-spacing:.5px;

}



.logo i{

    filter:
    drop-shadow(
    0 0 15px var(--primary)
    );

}




.nav-link{

    color:#cbd5e1!important;

    font-weight:500;

    margin:0 8px;

    position:relative;

    transition:.3s;

}



.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:
    var(--primary);

    border-radius:20px;

    transition:.3s;

}



.nav-link:hover,
.nav-link.active{

    color:white!important;

}



.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}




/* =========================================================
 HERO
========================================================= */


.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:100px;

}




.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:
    rgba(30,136,255,.15);

    border:
    1px solid rgba(30,136,255,.3);

    color:#bfdbfe;

    font-size:14px;

    font-weight:600;

    backdrop-filter:blur(10px);

}




.hero-title{

    font-size:

    clamp(42px,5vw,72px);

    line-height:1.15;

    font-weight:800;

    letter-spacing:-2px;

}



.hero-text{

    color:#cbd5e1;

    font-size:18px;

    line-height:1.8;

    max-width:620px;

}




.btn-primary{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border:none;

    box-shadow:
    0 10px 30px rgba(30,136,255,.35);

    transition:.3s;

}



.btn-primary:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px rgba(30,136,255,.5);

}



.btn-outline-primary{

    border-color:
    var(--primary);

    color:white;

}



.btn-outline-primary:hover{

    background:
    var(--primary);

    color:white;

}



/* =========================
 COUNTER
========================= */


.mini-counter{

    padding:20px;

    border-radius:20px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid var(--border);

    backdrop-filter:blur(15px);

    transition:.3s;

}



.mini-counter:hover{

    transform:
    translateY(-8px);

    background:
    rgba(255,255,255,.12);

}



.mini-counter h2{

    font-weight:800;

    margin-bottom:5px;

}



.mini-counter small{

    color:#94a3b8;

}

/* =========================================================
   DASHBOARD CARD
========================================================= */


.dashboard-card{

    background:
    rgba(255,255,255,.08);

    border:
    1px solid var(--border);

    border-radius:
    30px;

    overflow:hidden;

    backdrop-filter:
    blur(25px);

    box-shadow:
    var(--shadow);

    animation:
    floating 6s ease-in-out infinite;

}



@keyframes floating{

    0%,
    100%{

        transform:
        translateY(0);

    }

    50%{

        transform:
        translateY(-15px);

    }

}




.dashboard-header{

    display:flex;

    gap:8px;

    padding:18px 25px;

    background:
    rgba(0,0,0,.15);

    border-bottom:
    1px solid var(--border);

}



.dashboard-dot{

    width:12px;

    height:12px;

    border-radius:50%;

}



.dashboard-body{

    padding:30px;

}




.dashboard-item{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:22px;

    border-radius:20px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.35s;

}



.dashboard-item:hover{

    transform:
    translateX(8px);

    background:
    rgba(255,255,255,.12);

}



.dashboard-item h6{

    color:
    var(--muted);

    margin-bottom:8px;

}



.dashboard-item h3{

    font-weight:700;

}



.dashboard-mini{

    padding:20px 10px;

    border-radius:20px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid var(--border);

    transition:.35s;

}



.dashboard-mini:hover{

    transform:
    translateY(-8px);

    background:
    rgba(255,255,255,.14);

}



.dashboard-mini h6{

    font-size:14px;

}





/* =========================================================
 GLASS CARD GLOBAL
========================================================= */


.glass-card{

    background:
    rgba(255,255,255,.07);

    border:
    1px solid var(--border);

    border-radius:
    var(--radius);

    backdrop-filter:
    blur(20px);

    box-shadow:
    var(--shadow);

    transition:.35s;

}



.glass-card:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(30,136,255,.4);

}



/* =========================================================
 STATISTICS
========================================================= */


.stat-card{

    padding:35px 25px;

    text-align:center;

    height:100%;

    background:
    rgba(255,255,255,.07);

    border:
    1px solid var(--border);

    border-radius:
    25px;

    backdrop-filter:
    blur(20px);

    transition:.35s;

}



.stat-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.35);

}



.stat-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    margin:
    0 auto 25px;

    color:white;

    font-size:28px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.25);

}



.stat-card h2{

    font-size:40px;

    font-weight:800;

}



.stat-card h5{

    margin-top:10px;

    color:#e2e8f0;

}




/* =========================================================
 FEATURES
========================================================= */


.feature-card{

    padding:35px;

    background:
    rgba(255,255,255,.07);

    border:
    1px solid var(--border);

    border-radius:
    28px;

    backdrop-filter:
    blur(20px);

    transition:
    .4s;

    position:relative;

    overflow:hidden;

}



.feature-card::before{

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    right:-80px;

    top:-80px;

    border-radius:50%;

    background:
    rgba(30,136,255,.15);

    filter:blur(40px);

}



.feature-card:hover{

    transform:
    translateY(-12px);

    border-color:
    rgba(30,136,255,.5);

    box-shadow:
    0 25px 50px rgba(0,0,0,.35);

}




.feature-icon{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:25px;

    color:white;

    font-size:30px;

    box-shadow:
    0 15px 30px rgba(0,0,0,.25);

}




.feature-card h4{

    font-weight:700;

}



.feature-card p{

    line-height:1.8;

}



/* =========================================================
 HOW IT WORKS
========================================================= */


.bg-light{

    background:
    rgba(255,255,255,.03)!important;

}



.step-card{

    padding:35px;

    background:
    rgba(255,255,255,.07);

    border:
    1px solid var(--border);

    border-radius:
    30px;

    backdrop-filter:
    blur(20px);

    transition:.35s;

}



.step-card:hover{

    transform:
    translateY(-10px);

}



.step-number{

    width:55px;

    height:55px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    font-size:25px;

    font-weight:800;

    box-shadow:
    0 15px 30px rgba(30,136,255,.35);

}



.step-icon{

    width:75px;

    height:75px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:25px;

    color:white;

    font-size:30px;

}

/* =========================================================
   WITHDRAW SECTION
========================================================= */


.withdraw-item{

    padding:15px 18px;

    border-radius:15px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid var(--border);

    color:#e2e8f0;

    transition:.3s;

}



.withdraw-item:hover{

    transform:
    translateX(8px);

    background:
    rgba(255,255,255,.12);

}





/* =========================================================
   PAYMENT
========================================================= */


.payment-card{

    padding:30px 15px;

    text-align:center;

    border-radius:22px;

    background:
    rgba(255,255,255,.07);

    border:
    1px solid var(--border);

    backdrop-filter:
    blur(15px);

    transition:.35s;

    height:100%;

}



.payment-card:hover{

    transform:
    translateY(-10px);

    background:
    rgba(255,255,255,.13);

    border-color:
    rgba(30,136,255,.5);

    box-shadow:
    0 20px 40px rgba(0,0,0,.25);

}



.payment-card i{

    filter:
    drop-shadow(
    0 0 15px rgba(30,136,255,.4)
    );

}



.payment-card h6{

    font-weight:700;

    margin:0;

}



/* =========================================================
 DEVELOPMENT
========================================================= */


.progress{

    background:
    rgba(255,255,255,.1);

    border-radius:50px;

    overflow:hidden;

}



.progress-bar{

    border-radius:50px;

    background:
    linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    box-shadow:
    0 0 20px rgba(30,136,255,.5);

}




/* =========================================================
 SECURITY
========================================================= */


.security-card{

    padding:35px 25px;

    background:
    rgba(255,255,255,.07);

    border:
    1px solid var(--border);

    border-radius:28px;

    backdrop-filter:
    blur(20px);

    transition:.35s;

}



.security-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(30,136,255,.5);

}




/* =========================================================
 FAQ ACCORDION CUSTOM
========================================================= */


.accordion{

    --bs-accordion-bg:
    transparent;

}



.accordion-item{

    margin-bottom:18px;

    border:
    1px solid var(--border)!important;

    border-radius:20px!important;

    overflow:hidden;

    background:
    rgba(255,255,255,.06)!important;

    backdrop-filter:
    blur(20px);

}



.accordion-button{

    background:
    transparent!important;

    color:white!important;

    font-weight:600;

    padding:22px 25px;

    box-shadow:none!important;

}



.accordion-button::after{

    filter:
    brightness(0)
    invert(1);

}



.accordion-button:not(.collapsed){

    color:
    var(--primary)!important;

}



.accordion-body{

    color:
    #cbd5e1;

    line-height:1.8;

    padding:
    0 25px 25px;

}





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


.cta-card{

    padding:70px 60px;

    border-radius:35px;

    background:
    linear-gradient(
        135deg,
        #1e88ff,
        #6c63ff
    );

    box-shadow:
    0 30px 80px rgba(30,136,255,.35);

}



.cta-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,255,255,.25),
        transparent 40%
    );

}



.cta-card>*{

    position:relative;

    z-index:2;

}



.cta-shape{

    position:absolute;

    border-radius:50%;

    background:
    rgba(255,255,255,.15);

}



.cta-shape-1{

    width:300px;

    height:300px;

    right:-100px;

    top:-100px;

}



.cta-shape-2{

    width:220px;

    height:220px;

    left:-80px;

    bottom:-80px;

}




/* =========================================================
 FOOTER
========================================================= */


.footer{

    background:
    rgba(0,0,0,.25);

    border-top:

    1px solid var(--border);

}



.footer-title{

    font-weight:700;

    margin-bottom:25px;

}



.footer-links{

    list-style:none;

    padding:0;

}



.footer-links li{

    margin-bottom:12px;

}



.footer-links a{

    color:
    #94a3b8;

    text-decoration:none;

    transition:.3s;

}



.footer-links a:hover{

    color:white;

    padding-left:8px;

}




.social-links{

    display:flex;

    gap:12px;

}



.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:white;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid var(--border);

    transition:.3s;

}



.social-links a:hover{

    background:
    var(--primary);

    transform:
    translateY(-5px);

}





.footer-stat{

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:
    1px solid rgba(255,255,255,.08);

}



.footer-stat span{

    color:
    #94a3b8;

}



.footer-stat strong{

    color:white;

}

/* =========================================================
   FINAL PREMIUM ANIMATION
========================================================= */


/* Floating animation */

.float-animation{

    animation:
    floating 5s ease-in-out infinite;

}





/* Pulse glow */


.pulse-glow{

    animation:
    pulseGlow 2s infinite;

}



@keyframes pulseGlow{


    0%{

        box-shadow:
        0 0 0 0 rgba(30,136,255,.5);

    }


    70%{

        box-shadow:
        0 0 0 25px rgba(30,136,255,0);

    }


    100%{

        box-shadow:
        0 0 0 0 rgba(30,136,255,0);

    }

}





/* Neon border */


.neon-border{

    position:relative;

}



.neon-border::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    background:
    linear-gradient(
        45deg,
        var(--primary),
        var(--secondary),
        var(--info)
    );

    z-index:-1;

    filter:
    blur(12px);

    opacity:.7;

}





/* Reveal animation helper */


.reveal{

    opacity:0;

    transform:
    translateY(40px);

    transition:
    .8s ease;

}



.reveal.show{

    opacity:1;

    transform:
    translateY(0);

}





/* =========================================================
   LIVE ONLINE INDICATOR
========================================================= */


.live-dot{

    width:10px;

    height:10px;

    display:inline-block;

    border-radius:50%;

    background:
    var(--success);

    box-shadow:
    0 0 15px var(--success);

    animation:
    livePulse 1.5s infinite;

}



@keyframes livePulse{


    0%{

        transform:
        scale(1);

        opacity:1;

    }


    50%{

        transform:
        scale(1.5);

        opacity:.5;

    }


    100%{

        transform:
        scale(1);

        opacity:1;

    }

}





/* =========================================================
   CUSTOM BADGES
========================================================= */


.badge-premium{

    padding:
    8px 18px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    font-weight:600;

}





/* =========================================================
   DARK BOOTSTRAP OVERRIDE
========================================================= */


.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6{

    color:white;

}



.accordion-button:focus{

    box-shadow:none;

}




.form-control{

    background:
    rgba(255,255,255,.08);

    border:
    1px solid var(--border);

    color:white;

}



.form-control:focus{

    background:
    rgba(255,255,255,.12);

    color:white;

    border-color:
    var(--primary);

    box-shadow:
    0 0 20px rgba(30,136,255,.25);

}



.form-control::placeholder{

    color:#94a3b8;

}





/* =========================================================
   PAGE LOADING EFFECT
========================================================= */


body.loaded{

    animation:
    pageIn .7s ease;

}



@keyframes pageIn{


    from{

        opacity:0;

    }


    to{

        opacity:1;

    }

}





/* =========================================================
   PARALLAX ELEMENT
========================================================= */


.parallax{

    transition:
    transform .2s linear;

}





/* =========================================================
   ACCESSIBILITY
========================================================= */


@media(prefers-reduced-motion:reduce){


    *,
    *::before,
    *::after{

        animation-duration:
        .01ms!important;

        animation-iteration-count:
        1!important;

        scroll-behavior:auto!important;

    }


}




/* =========================================================
   PRINT
========================================================= */


@media print{


    .animated-bg,
    .snow-container,
    .stars-container,
    nav,
    footer{

        display:none!important;

    }


    body{

        background:white;

        color:black;

    }


}
/* =========================================================
   EXTRA RESPONSIVE OPTIMIZATION
   ANDROID + DESKTOP
========================================================= */


/* =========================
   LARGE DESKTOP
========================= */

@media(min-width:1400px){

    .container{

        max-width:1320px;

    }


    .hero-title{

        font-size:78px;

    }


    .hero-text{

        font-size:20px;

    }


    .dashboard-card{

        transform:scale(1.03);

    }


}




/* =========================
   LAPTOP
========================= */

@media(max-width:1200px){


    .hero-title{

        font-size:55px;

    }


    .dashboard-item h3{

        font-size:20px;

    }


    .feature-card{

        padding:30px;

    }


}





/* =========================
   TABLET
   768px - 991px
========================= */

@media(max-width:991px){


    .navbar-toggler{

        border:

        1px solid rgba(255,255,255,.3);

        padding:10px;

    }



    .navbar-toggler-icon{

        filter:

        invert(1);

    }



    .hero-section{

        min-height:auto;

        padding-top:140px;

        padding-bottom:80px;

    }



    .hero-title{

        font-size:45px;

    }



    .dashboard-card{

        width:100%;

    }



    .mini-counter{

        margin-bottom:10px;

    }



    .stat-card,
    .feature-card,
    .security-card,
    .payment-card,
    .step-card{

        height:auto!important;

    }



}





/* =========================
   ANDROID NORMAL
   576px - 767px
========================= */

@media(max-width:767px){


    html{

        overflow-x:hidden;

    }



    body{

        width:100%;

        overflow-x:hidden;

    }



    .container{

        padding-left:18px;

        padding-right:18px;

    }




    .hero-section{

        text-align:center;

    }



    .hero-title{

        font-size:

        clamp(32px,9vw,42px);

    }



    .hero-text{

        font-size:15px;

        line-height:1.7;

    }




    .hero-section .btn{

        width:100%;

        margin-bottom:10px;

    }



    .mini-counter{

        padding:15px 10px;

    }



    .mini-counter h2{

        font-size:22px;

    }



    .dashboard-card{

        border-radius:22px;

    }



    .dashboard-body{

        padding:15px;

    }



    .dashboard-item{

        flex-direction:column;

        gap:15px;

        text-align:center;

    }



    .dashboard-item i{

        font-size:30px;

    }




    .dashboard-mini{

        padding:15px 5px;

    }




    .feature-icon,
    .stat-icon,
    .step-icon{

        width:65px;

        height:65px;

        font-size:25px;

    }



    .cta-card{

        padding:35px 20px;

    }



    .cta-card .btn{

        width:100%;

    }



}





/* =========================
   SMALL ANDROID
   320px - 480px
========================= */

@media(max-width:480px){



    .hero-badge{

        font-size:11px;

        padding:

        8px 12px;

    }



    .hero-title{

        font-size:30px;

        line-height:1.2;

    }




    .hero-text{

        font-size:14px;

    }



    .mini-counter small{

        font-size:11px;

    }



    .dashboard-header{

        justify-content:center;

    }



    .dashboard-item h6{

        font-size:13px;

    }



    .dashboard-item h3{

        font-size:17px;

    }




    .stat-card{

        padding:25px 15px;

    }



    .stat-card h2{

        font-size:28px;

    }



    .payment-card{

        padding:20px 10px;

    }



    .payment-card h6{

        font-size:13px;

    }



    .footer-stat{

        font-size:13px;

    }


}





/* =========================
   VERY SMALL PHONE
   320px
========================= */

@media(max-width:350px){


    .hero-title{

        font-size:27px;

    }


    .hero-badge{

        display:flex;

        font-size:10px;

    }



    .dashboard-mini h6{

        font-size:10px;

    }



    .dashboard-mini small{

        font-size:9px;

    }



}
/* =========================================================
 PERFORMANCE OPTIMIZATION
========================================================= */


.animated-bg,
.dashboard-card,
.feature-card,
.stat-card,
.payment-card,
.security-card{

    will-change:transform;

}



@media(max-width:600px){

    .animated-bg::before,
    .animated-bg::after{

        filter:blur(80px);

        opacity:.15;

    }


    .stars-container{

        opacity:.08;

    }


}
@keyframes ripple{

    to{

        transform:scale(40);

        opacity:0;

    }

}
