/* =======================================================
   GLOBEVEST STYLE.CSS
   PART 1A
======================================================= */

/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
   ROOT
=========================== */

:root{

    --primary:#ffb400;
    --secondary:#7b2ff7;
    --dark:#09051b;
    --dark2:#13092e;
    --card:#171032;
    --white:#ffffff;
    --text:#cfcfe6;
    --border:rgba(255,255,255,.08);

    --radius:20px;

    --transition:.35s ease;

}

/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:#fff;

    overflow-x:hidden;

}


#selectedPlanText span{

    color:#ffb400;
    font-weight:700;

}
/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-track{

    background:#111;

}

/* ===========================
   LINKS
=========================== */

a{

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    text-decoration:none;

}

/* ===========================
   IMAGES
=========================== */

img{

    max-width:100%;

    display:block;

}

/* ===========================
   SECTION SPACING
=========================== */

section{

    padding:110px 0;

    position:relative;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    position:relative;

    z-index:2;

}

/* ===========================
   TITLES
=========================== */

.section-title{

    margin-bottom:70px;

}

.section-title h2{

    font-size:46px;

    font-weight:800;

    color:#fff;

}

.section-title p{

    color:var(--text);

    margin-top:15px;

    font-size:18px;

}

/* ===========================
   TOP BAR
=========================== */

.top-bar{

    background:#ffb400;

    color:#111;

    font-size:15px;

    font-weight:600;

    padding:12px 0;

}

.top-bar a{

    color:#111;

    font-weight:700;

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    background:rgba(9,5,27,.92);

    backdrop-filter:blur(18px);

    padding:20px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.navbar-brand{

    color:#fff !important;

    font-size:28px;

    font-weight:700;

}

.navbar-brand img{

    height:46px;

}

.nav-link{

    color:#d7d7ef !important;

    margin:0 14px;

    font-weight:500;

    transition:var(--transition);

}

.nav-link:hover{

    color:var(--primary)!important;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* ===========================
   BUTTONS
=========================== */

.btn{

    border-radius:60px;

    padding:14px 34px;

    font-weight:700;

    transition:var(--transition);

}

.btn-warning{

    background:linear-gradient(90deg,#ff9f00,#ffe45a);

    color:#111;

    border:none;

}

.btn-warning:hover{

    background:linear-gradient(90deg,#ffb400,#fff176);

}

.pricing-card .btn{

    padding:16px;

    font-weight:700;

    border-radius:14px;

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.35);

}

.btn-outline-light:hover{

    background:#fff;

    color:#111;

}

.btn-purple{

    background:#6827aa;

    color:#fff;

    border:none;

}

.btn-purple:hover{

    background:#7b39bf;

}
/* ===========================
   GLASS EFFECT
=========================== */

.glass{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:20px;

}

/* ===========================
   CARD DEFAULT
=========================== */

.card-style{

    background:var(--card);

    border-radius:20px;

    border:1px solid var(--border);

    transition:var(--transition);

}

.card-style:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

/* ===========================
   TEXT COLORS
=========================== */

.text-muted{

    color:var(--text)!important;

}

.text-warning{

    color:var(--primary)!important;

}

/* ===========================
   BACKGROUND HELPERS
=========================== */

.bg-purple{

    background:linear-gradient(
        135deg,
        #1d1040,
        #28155a,
        #13092e
    );

}

.bg-dark2{

    background:var(--dark2);

}

/* =======================================================
   GLOBEVEST STYLE.CSS
   PART 1B
   HERO • FEATURE PILLS • FEATURE CARDS
=======================================================*/

/* ===========================
   HERO SECTION
=========================== */

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
        radial-gradient(circle at top,#7b2ff733 0%,transparent 40%),
        radial-gradient(circle at bottom,#ffb40022 0%,transparent 35%),
        linear-gradient(180deg,#09051b,#12092d);

}

.hero-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    background:#7b2ff7;

    filter:blur(180px);

    opacity:.18;

    top:-220px;

    right:-180px;

}

.hero-section::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#ffb400;

    filter:blur(170px);

    opacity:.12;

    bottom:-180px;

    left:-120px;

}

/* ===========================
   HERO CONTENT
=========================== */

.hero-section .container{

    position:relative;

    z-index:10;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    padding:12px 22px;

    border-radius:60px;

    color:#fff;

    font-weight:600;

    margin-bottom:30px;

    backdrop-filter:blur(12px);

}

.hero-section h1{

    font-size:68px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-section h1 span{

    color:var(--primary);

}

.hero-section p{

    max-width:760px;

    margin:auto;

    color:var(--text);

    font-size:20px;

    line-height:1.9;

}

/* ===========================
   HERO BUTTONS
=========================== */

.hero-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    min-width:220px;

    padding:16px 36px;

}

/* ===========================
   HERO IMAGE
=========================== */

.hero-image{

    margin-top:70px;

    border-radius:30px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

}

/* ===========================
   FEATURE PILLS
=========================== */

.feature-pills{

    padding:60px 0;

    margin-top:-45px;

    position:relative;

    z-index:20;

}

.pill-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:26px;

    text-align:center;

    transition:.35s;

}

.pill-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.pill-card i{

    font-size:34px;

    color:var(--primary);

    margin-bottom:16px;

    display:block;

}

.pill-card{

    font-size:18px;

    font-weight:700;

}

/* ===========================
   FEATURES SECTION
=========================== */

.features-section{

    background:#0d0822;

}

.feature-card{

    background:#171032;

    border-radius:24px;

    padding:45px;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.feature-card i{

    width:75px;

    height:75px;

    border-radius:20px;

    background:rgba(255,180,0,.12);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:28px;

}

.feature-card h4{

    font-size:26px;

    font-weight:700;

    margin-bottom:18px;

}

.feature-card p{

    color:var(--text);

    line-height:1.8;

    margin:0;

}

/* ===========================
   FLOAT ANIMATION
=========================== */

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.float{

    animation:float 4s ease-in-out infinite;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

    .hero-section{

        min-height:auto;

        padding:120px 0 90px;

    }

    .hero-section h1{

        font-size:48px;

    }

    .hero-section p{

        font-size:18px;

    }

}

@media(max-width:768px){

    .hero-section h1{

        font-size:38px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-buttons .btn{

        width:100%;

        max-width:320px;

    }

    .feature-card{

        padding:30px;

    }

    .pill-card{

        padding:20px;

    }

}

/* ===========================
   END PART 1B
=========================== */

/* =======================================================
   GLOBEVEST STYLE.CSS
   PART 2
   TESTIMONIALS • PRICING • FAQ • CTA • FOOTER
=======================================================*/

/* ===========================
   TESTIMONIALS
=========================== */

.testimonial-section{
    background:#0d0822;
}

.testimonial-card{
    background:#171032;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px;
    height:100%;
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

.stars{
    color:var(--primary);
    font-size:20px;
    margin-bottom:20px;
}

.testimonial-text{
    color:var(--text);
    line-height:1.9;
}

.testimonial-image{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-name{
    font-weight:700;
}

.testimonial-role{
    color:#aaa;
}

/* ===========================
   PRICING
=========================== */
.pricing-section{

    background:#2a0d45;

}

.pricing-card{

    background:#2d1248;

    border:1px solid #8a5a16;

    border-radius:28px;

    padding:34px;

    height:100%;

    display:flex;

    flex-direction:column;

    transition:.35s;

    position:relative;

}

.pricing-card:hover{

    transform:translateY(-12px);

    border-color:#ffb400;

    box-shadow:0 25px 70px rgba(0,0,0,.35);

}

.pricing-card h4{

    font-size:18px;

    font-weight:700;

    margin-bottom:15px;

}

.pricing-card h2{

    font-size:52px;

    font-weight:800;

    color:#ffa500;

    margin-bottom:25px;

}

.pricing-list{

    list-style:none;

    padding:0;

    margin:0;

    flex:1;

}

.pricing-list li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:18px;

    color:#ddd;

    font-size:15px;

    line-height:1.5;

}

.pricing-list i{

    color:#ffb400;

    margin-top:3px;

}

.pricing-card .btn{

    margin-top:auto;

}

.featured-card{

    background:linear-gradient(180deg,#54217d,#381455);

    border:2px solid #ffb400;

}

.vip-card{

    background:#311427;

    border:2px solid #ffd84c;

}

.popular{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:#ffcb32;

    color:#111;

    padding:6px 22px;

    border-radius:50px;

    font-size:12px;

    font-weight:800;

    letter-spacing:.5px;

}

/* ===========================
   FAQ
=========================== */

.faq-section{
    background:#0d0822;
}

.accordion-item{
    background:#171032;
    border:none;
    margin-bottom:18px;
    border-radius:16px !important;
    overflow:hidden;
}

.accordion-button{
    background:#171032;
    color:#fff;
    font-weight:600;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#1f1644;
    color:var(--primary);
}

.accordion-body{
    background:#171032;
    color:var(--text);
    line-height:1.9;
}

/* ===========================
   INFO BOXES
=========================== */

.info-box{
    background:#171032;
    border-radius:20px;
    padding:35px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.info-box:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

/* ===========================
   COUNT BOXES
=========================== */

.count-box{
    background:#171032;
    border-radius:20px;
    padding:40px 20px;
    border:1px solid rgba(255,255,255,.08);
}

.counter{
    font-size:50px;
    font-weight:800;
}

/* ===========================
   CTA
=========================== */

.cta-section{
    background:linear-gradient(135deg,#171032,#2b1562);
    border-radius:30px;
    padding:70px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.cta-section h2{
    font-size:46px;
    font-weight:800;
}

.cta-section p{
    max-width:700px;
    margin:20px auto;
    color:var(--text);
}

/* ===========================
   NEWSLETTER
=========================== */

.input-group .form-control{
    border:none;
    padding:18px;
}

.input-group .btn{
    border-radius:0 50px 50px 0;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#05030f;
    padding:90px 0 30px;
}

.footer-logo{
    font-size:34px;
    font-weight:800;
}

.footer-title{
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:var(--text);
}

.footer-links a:hover{
    color:var(--primary);
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#171032;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.footer-social a:hover{
    background:var(--primary);
    color:#111;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:60px;
    padding-top:30px;
    color:#aaa;
}

/* ===========================
   SCROLL TO TOP
=========================== */

#scrollTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    display:none;
    z-index:999;
}

/* ===========================
   LOADER
=========================== */

#loader{
    position:fixed;
    inset:0;
    background:#09051b;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

    .section-title h2{
        font-size:38px;
    }

    .cta-section{
        padding:50px 30px;
    }

    .cta-section h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    section{
        padding:80px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .plan-price{
        font-size:40px;
    }

    .counter{
        font-size:38px;
    }

    .footer{
        text-align:center;
    }

}

/* Button Ripple */

.btn{
    position:relative;
    overflow:hidden;
}

.ripple{
    position:absolute;
    width:20px;
    height:20px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    transform:translate(-50%,-50%);
    animation:ripple .7s linear;
}



@keyframes ripple{

    from{
        width:0;
        height:0;
        opacity:1;
    }

    to{
        width:500px;
        height:500px;
        opacity:0;
    }

}

.plan-select{

    margin-top:25px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:#1b1b2f;

    color:#ffffff;

    font-weight:600;

    transition:.35s;

}

.package-card.active .plan-select{

    background:linear-gradient(135deg,#ffc107,#ff9800);

    color:#111;

    font-weight:700;

}

.stats-section{

padding:80px 0;

background:#0d0822;

}

.stat-card{

background:#171032;

padding:40px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.stat-card:hover{

transform:translateY(-8px);

border-color:#ffb400;

}

.stat-card h2{

font-size:50px;

font-weight:800;

color:#ffb400;

}

.stat-card p{

color:#bbb;

}

#notification{

position:fixed;

right:30px;

bottom:30px;

background:#171032;

padding:20px;

border-radius:15px;

display:none;

z-index:9999;

border-left:5px solid #ffb400;

}

#scrollTop{

position:fixed;

right:20px;

bottom:20px;

display:none;

border-radius:50%;

width:55px;

height:55px;

}

/* =====================================================
   WHY CHOOSE
===================================================== */

.why-section{

    background:#09051b;

}

.why-card{

    background:#171032;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:45px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#ffb400;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.why-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,180,0,.12);

    color:#ffb400;

    font-size:40px;

}

.why-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

.why-card p{

    color:#cfcfe6;

    line-height:1.8;

    margin:0;

}