/*====================================================
VESTIFY PREMIUM LANDING PAGE
Author: ChatGPT
Version: 1.0
=====================================================*/


/*==========================
ROOT VARIABLES
==========================*/

:root{

    --primary:#F5C542;
    --primary-dark:#caa126;

    --secondary:#111111;

    --dark:#050505;

    --dark2:#1b1b1b;

    --white:#ffffff;

    --gray:#b8b8b8;

    --light:#eeeeee;

    --success:#0dc167;

    --danger:#ff5d5d;

    --shadow:0 15px 40px rgba(0,0,0,.25);

    --transition:.35s ease;

    --radius:16px;

}



/*==========================
RESET
==========================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:var(--white);

    overflow-x:hidden;

}

a{

    text-decoration:none;

    transition:.3s;

}

img{

    max-width:100%;

    display:block;

}

ul{

    list-style:none;

}



/*==========================
SCROLL BAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#000;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}



/*==========================
LOADER
==========================*/

#loader{

    position:fixed;

    inset:0;

    background:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

}



/*==========================
SECTION
==========================*/

section{

    padding:90px 0;

}



/*==========================
TEXT
==========================*/

.text-warning{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--gray)!important;

}



/*==========================
BUTTONS
==========================*/

.btn{

    border-radius:50px;

    font-weight:600;

    padding:13px 35px;

    transition:.4s;

}

.btn-warning{

    background:var(--primary);

    color:#000;

    border:none;

}

.btn-warning:hover{

    background:#ffd866;

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(245,197,66,.45);

}

.btn-outline-light{

    border:2px solid #fff;

}

.btn-outline-light:hover{

    background:white;

    color:black;

}



/*==========================
NAVBAR
==========================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:18px 0;

    transition:.4s;

    background:rgba(10,10,10,.75);

    backdrop-filter:blur(12px);

}

.navbar.scrolled{

    background:#050505;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.navbar-brand{

    font-size:34px;

    font-weight:800;

    color:var(--primary)!important;

}

.nav-link{

    color:white!important;

    margin:0 10px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link:hover{

    color:var(--primary)!important;

}



/*==========================
HERO
==========================*/

.hero-section{
    min-height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0d0d0d;
    overflow:hidden;
}

.hero-image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:5px;
}

.hero-image{
    width:100%;
    max-width:700px;
    height:auto;
    border-radius:30px;
    position:relative;
    z-index:2;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.45));
    animation:floatImage 5s ease-in-out infinite;
}

.hero-glow{
    position:absolute;
    width:auto;
    height:auto;
    background:radial-gradient(circle,
        rgba(255,193,7,.35) 0%,
        rgba(255,193,7,.12) 40%,
        transparent 75%);
    border-radius:50%;
    filter:blur(40px);
    z-index:0;
}

.circle{
    position:absolute;
    border-radius:50%;
    background:rgba(255,193,7,.15);
    backdrop-filter:blur(10px);
}

.circle-1{
    width:80px;
    height:80px;
    top:50px;
    right:60px;
}

.circle-2{
    width:50px;
    height:50px;
    bottom:70px;
    left:40px;
}

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@media (max-width:992px){

    .hero-image{
        max-width:420px;
    }

    .hero-glow{
        width:350px;
        height:350px;
    }

    .circle-1{
        width:55px;
        height:55px;
        right:15px;
    }

    .circle-2{
        width:35px;
        height:35px;
        left:15px;
    }

}

@keyframes floatCard{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}

@keyframes floatCircle{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(15px);
    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-section h1{

    font-weight:800;

    line-height:1.2;

}

.hero-section p{

    font-size:18px;

}

.faq-image{
    width:100%;
    max-width:400px;
    height:auto;
    border-radius:18px;
    border:1px solid rgba(255,193,7,.15);
    box-shadow:0 10px 30px rgba(0,0,0,.3);
    transition:.3s ease;
}

.faq-image:hover{
    transform:scale(1.02);
    border-color:#ffc107;
}

#why-vestify{
    background:#000;
}

.image-wrapper{
    position:relative;
}

.why-image{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
    transition:.4s;
}

.why-image:hover{
    transform:scale(1.03);
}

.feature-card{
    background:#161616;
    border:1px solid rgba(255,193,7,.15);
    border-radius:20px;
    padding:25px;
    height:100%;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#ffc107;
    box-shadow:0 15px 35px rgba(255,193,7,.15);
}

@media(max-width:992px){

    .why-image{
        margin-bottom:30px;
    }

    #why-vestify h2{
        font-size:2.2rem;
    }

}

#who-we-are{
    background:#000;
}

.who-image{
    width:100%;
    border-radius:25px;
    box-shadow:0 25px 70px rgba(0,0,0,.45);
    transition:.4s ease;
}

.who-image:hover{
    transform:translateY(-10px) scale(1.02);
}

.feature-box{
    background:#161616;
    border:1px solid rgba(255,193,7,.15);
    border-radius:20px;
    padding:25px;
    height:100%;
    transition:.3s ease;
}

.feature-box:hover{
    transform:translateY(-8px);
    border-color:#ffc107;
    box-shadow:0 15px 40px rgba(255,193,7,.15);
}

@media(max-width:992px){

    #who-we-are h2{
        font-size:2.2rem;
    }

    .who-image{
        margin-top:30px;
    }

}

#membership{
    background:#000;
}

.membership-card{
    background:#161616;
    border:1px solid rgba(255,193,7,.15);
    border-radius:25px;
    padding:40px 30px;
    height:100%;
    transition:.4s;
}

.membership-card:hover{
    transform:translateY(-10px);
    border-color:#ffc107;
    box-shadow:0 20px 50px rgba(255,193,7,.18);
}

.membership-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,193,7,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#ffc107;
}

.featured{
    border:2px solid #ffc107;
    transform:scale(1.05);
}

.featured:hover{
    transform:scale(1.08);
}

.section-line{
    width:90px;
    height:4px;
    background:#ffc107;
    border-radius:10px;
}

@media(max-width:992px){

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:translateY(-10px);
    }

}

.membership-image{
    max-width:850px;
    width:100%;
    border:1px solid rgba(255,193,7,.15);
    transition:.4s ease;
}

.membership-image:hover{
    transform:translateY(-8px) scale(1.02);
    border-color:#ffc107;
    box-shadow:0 20px 60px rgba(255,193,7,.15);
}

#earning-graph{
    background:#000;
}

.earning-image{
    max-width:650px;
    width:100%;
    border:1px solid rgba(255,193,7,.15);
    transition:.4s ease;
}

.earning-image:hover{
    transform:scale(1.03);
    box-shadow:0 20px 60px rgba(255,193,7,.15);
}

.feature-image{
    width:100%;
    height:auto;
    border-radius:20px;
    border:1px solid rgba(255,193,7,.15);
    transition:.3s ease;
}

.feature-image:hover{
    transform:translateY(-8px);
    border-color:#ffc107;
    box-shadow:0 15px 40px rgba(255,193,7,.15);
}


/*==========================
BADGE
==========================*/

.badge{

    font-size:15px;

}



/*==========================
STATISTICS
==========================*/

.hero-section h3{

    font-size:34px;

    font-weight:700;

}



/*==========================
CARDS
==========================*/

.card{

    border-radius:18px;

    transition:.35s;

    overflow:hidden;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow);

}

.bg-black{

    background:#111111!important;

}



/*==========================
FEATURES
==========================*/

.card i{

    transition:.4s;

}

.card:hover i{

    transform:scale(1.2);

}



/*==========================
ABOUT
==========================*/

.about-video{
    width:100%;
    height:auto;
    display:block;
    border-radius:20px;
    background:#000;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

/* What is Vestify */

.glass-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,193,7,.15);
    backdrop-filter:blur(12px);
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.section-line{
    width:90px;
    height:4px;
    background:#ffc107;
    border-radius:10px;
}

.highlight-box{
    background:linear-gradient(135deg,#1d1d1d,#2c2c2c);
    border-left:5px solid #ffc107;
    border-radius:15px;
    padding:30px;
}

.highlight-box p{
    color:#d8d8d8;
    line-height:1.9;
}

#what-is-vestify p{
    line-height:1.9;
}

@media (max-width:768px){

    #what-is-vestify h2{
        font-size:2rem;
    }

    #what-is-vestify .lead{
        font-size:1.05rem;
    }

    .highlight-box{
        padding:20px;
    }

}

/*==========================
LIST
==========================*/

li{

    margin-bottom:14px;

}



/*==========================
HEADINGS
==========================*/

h1,h2,h3,h4,h5{

    font-weight:700;

}

.display-5{

    line-height:1.2;

}



/*==========================
SHADOW
==========================*/

.shadow-lg{

    box-shadow:0 25px 60px rgba(0,0,0,.3)!important;

}



/*==========================
ROUNDED
==========================*/

.rounded-4{

    border-radius:22px!important;

}



/*==========================
SPACING
==========================*/

.py-5{

    padding-top:100px!important;

    padding-bottom:100px!important;

}



/*==========================
SCROLL BUTTON
==========================*/

#scrollTop{

    position:fixed;

    bottom:25px;

    right:25px;

    width:55px;

    height:55px;

    border:none;

    display:flex;

    justify-content:center;

    align-items:center;

    display:none;

    z-index:999;

}



/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.hero-section h1{

font-size:55px;

}

}



@media(max-width:992px){

.hero-section{

text-align:center;

padding-top:120px;

}

.hero-image{

margin-top:60px;

max-width:420px;

margin-left:auto;

margin-right:auto;

}

.hero-glow{

    width:300px;
    height:300px;

}

.card-1{

    top:15px;
    left:10px;

}

.card-2{

    right:10px;
    bottom:15px;

}

.floating-card{

    padding:10px 15px;

}

.floating-card h4{

    font-size:18px;

}

.navbar-collapse{

background:#111;

padding:20px;

margin-top:20px;

border-radius:15px;

}

}



@media(max-width:768px){

.hero-section h1{

font-size:42px;

}

.display-5{

font-size:34px;

}

.hero-section p{

font-size:16px;

}

.btn{

width:100%;

margin-bottom:15px;

}

.hero-section .d-flex{

justify-content:center;

}

}



@media(max-width:576px){

.hero-section h1{

font-size:34px;

}

.navbar-brand{

font-size:28px;

}

section{

padding:70px 0;

}

.card{

margin-bottom:20px;

}

}

/*====================================================
PART 3A
PRICING / INVESTMENT PLANS
====================================================*/

.pricing-section{
    background:#080808;
    position:relative;
    overflow:hidden;
}

.pricing-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(245,197,66,.05);
    top:-120px;
    left:-120px;
    filter:blur(90px);
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:3rem;
    font-weight:800;
    color:#fff;
}

.section-title p{
    color:#a6a6a6;
    margin-top:15px;
}

.plan-card{

    background:#111;

    border:1px solid rgba(245,197,66,.15);

    border-radius:25px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.plan-card::before{

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    background:rgba(245,197,66,.08);

    border-radius:50%;

    top:-100px;

    right:-100px;

    transition:.4s;

}

.plan-card:hover{

    transform:translateY(-15px);

    border-color:#f5c542;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.plan-card:hover::before{

    transform:scale(1.4);

}

.plan-card.popular{

    border:2px solid #f5c542;

}

.popular-badge{

    position:absolute;

    top:20px;

    right:-40px;

    width:180px;

    background:#f5c542;

    color:#000;

    font-weight:700;

    transform:rotate(45deg);

    padding:8px 0;

    font-size:13px;

}

.plan-name{

    font-size:28px;

    font-weight:700;

    color:#fff;

}

.plan-price{

    font-size:55px;

    color:#f5c542;

    font-weight:800;

    margin:25px 0;

}

.plan-price span{

    font-size:18px;

    color:#999;

}

.plan-card hr{

    border-color:rgba(255,255,255,.08);

    margin:30px 0;

}

.plan-list{

    padding:0;

    margin:0;

}

.plan-list li{

    margin:18px 0;

    color:#ddd;

}

.plan-list li i{

    color:#f5c542;

    margin-right:10px;

}

.plan-btn{

    margin-top:35px;

}

.plan-btn .btn{

    width:100%;

}

.plan-card:hover .btn{

    transform:translateY(-3px);

}



/*====================================================
COUNTDOWN
====================================================*/

.countdown{

    background:#101010;

    border-radius:25px;

    padding:60px;

    text-align:center;

}

.count-box{

    background:#191919;

    padding:30px;

    border-radius:18px;

    transition:.4s;

}

.count-box:hover{

    background:#f5c542;

    color:#000;

}

.count-box h3{

    font-size:45px;

    font-weight:800;

}

.count-box p{

    margin:0;

}



/*====================================================
INVESTMENT INFO
====================================================*/

.info-box{

    background:#111;

    padding:35px;

    border-radius:20px;

    border-left:5px solid #f5c542;

    transition:.4s;

}

.info-box:hover{

    transform:translateY(-8px);

}

.info-box h4{

    color:#fff;

    margin-bottom:15px;

}

.info-box p{

    color:#a9a9a9;

}



/*====================================================
PART 3B
TESTIMONIALS
====================================================*/

.testimonial-section{

    background:#050505;

}

.testimonial-card{

    background:#111;

    border-radius:20px;

    padding:40px;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

}

.testimonial-card:hover{

    border-color:#f5c542;

    transform:translateY(-10px);

}

.testimonial-image{

    width:75px;

    height:75px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #f5c542;

}

.testimonial-name{

    color:#fff;

    font-weight:700;

}

.testimonial-role{

    color:#999;

    font-size:14px;

}

.testimonial-text{

    color:#d8d8d8;

    margin-top:25px;

    line-height:1.9;

}

.stars{

    color:#f5c542;

    margin-bottom:15px;

    font-size:18px;

}

.swiper-pagination-bullet{

    background:#fff;

}

.swiper-pagination-bullet-active{

    background:#f5c542;

}



/*====================================================
FAQ
====================================================*/

.faq-section{

    background:#080808;

}

.accordion-item{

    background:#111;

    border:none;

    margin-bottom:18px;

    border-radius:15px!important;

    overflow:hidden;

}

.accordion-button{

    background:#111;

    color:#fff;

    font-weight:600;

    padding:22px;

    box-shadow:none!important;

}

.accordion-button:not(.collapsed){

    background:#f5c542;

    color:#000;

}

.accordion-button::after{

    filter:invert(1);

}

.accordion-button:not(.collapsed)::after{

    filter:none;

}

.accordion-body{

    background:#161616;

    color:#cfcfcf;

    line-height:1.9;

}



/*====================================================
CALL TO ACTION
====================================================*/

.cta-section{

    background:linear-gradient(135deg,#111,#1d1d1d);

    border-radius:30px;

    padding:80px 50px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(245,197,66,.07);

    border-radius:50%;

    top:-150px;

    right:-120px;

    filter:blur(70px);

}

.cta-section h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

}

.cta-section p{

    color:#cfcfcf;

    margin:20px auto 40px;

    max-width:650px;

}

.cta-section .btn{

    min-width:220px;

}

/*====================================================
PART 4A
FOOTER
====================================================*/

footer{

    background:#050505;

    color:#bdbdbd;

    padding:100px 0 30px;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer-logo{

    font-size:38px;

    font-weight:800;

    color:#f5c542;

    margin-bottom:20px;

}

.footer-title{

    color:#fff;

    margin-bottom:25px;

    font-weight:700;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:15px;

}

.footer-links a{

    color:#bdbdbd;

    transition:.35s;

}

.footer-links a:hover{

    color:#f5c542;

    padding-left:8px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.footer-social a:hover{

    background:#f5c542;

    color:#000;

}

.copyright{

    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    text-align:center;

}



/*====================================================
GLASS EFFECT
====================================================*/

.glass{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.1);

    border-radius:20px;

}



/*====================================================
FORMS
====================================================*/

.form-control{

    background:#111;

    border:1px solid #333;

    color:#fff;

    padding:15px;

    border-radius:12px;

}

.form-control:focus{

    background:#111;

    color:#fff;

    border-color:#f5c542;

    box-shadow:0 0 15px rgba(245,197,66,.25);

}

.form-label{

    color:#fff;

    font-weight:500;

}



/*====================================================
LOGIN / SIGNUP
====================================================*/

.auth-section{

    min-height:100vh;

    background:linear-gradient(135deg,#050505,#111);

    display:flex;

    align-items:center;

}

.auth-card{

    background:#111;

    padding:50px;

    border-radius:25px;

    box-shadow:0 30px 80px rgba(0,0,0,.4);

}

.auth-card h2{

    color:#fff;

    margin-bottom:30px;

}



/*====================================================
DASHBOARD CARDS
====================================================*/

.dashboard-card{

    background:#111;

    border-radius:20px;

    padding:30px;

    transition:.35s;

}

.dashboard-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.dashboard-card h3{

    color:#f5c542;

    font-size:36px;

}



/*====================================================
TABLES
====================================================*/

.table{

    color:#fff;

}

.table thead{

    background:#181818;

}

.table td,

.table th{

    border-color:#222;

}



/*====================================================
BADGES
====================================================*/

.badge-premium{

    background:#f5c542;

    color:#000;

    padding:8px 16px;

    border-radius:30px;

}



/*====================================================
ANIMATIONS
====================================================*/

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.zoom{

    animation:zoom .8s;

}

@keyframes zoom{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.rotate{

    animation:rotate 8s linear infinite;

}

@keyframes rotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}



/*====================================================
HOVER EFFECTS
====================================================*/

.hover-lift{

    transition:.35s;

}

.hover-lift:hover{

    transform:translateY(-10px);

}

.hover-grow{

    transition:.35s;

}

.hover-grow:hover{

    transform:scale(1.05);

}



/*====================================================
UTILITY CLASSES
====================================================*/

.radius{

    border-radius:20px;

}

.shadow{

    box-shadow:0 25px 50px rgba(0,0,0,.25);

}

.bg-dark2{

    background:#111;

}

.text-gold{

    color:#f5c542;

}

.mt-100{

    margin-top:100px;

}

.mb-100{

    margin-bottom:100px;

}

.py-100{

    padding-top:100px;

    padding-bottom:100px;

}



/*====================================================
SCROLL TO TOP
====================================================*/

#scrollTop{

    transition:.35s;

}

#scrollTop:hover{

    transform:translateY(-5px);

}



/*====================================================
PART 4B
RESPONSIVE
====================================================*/

@media (max-width:1200px){

.hero-section h1{

font-size:55px;

}

.section-title h2{

font-size:42px;

}

.plan-price{

font-size:45px;

}

}



@media (max-width:992px){

.navbar{

padding:10px 0;

}

.navbar-collapse{

background:#111;

padding:25px;

margin-top:20px;

border-radius:15px;

}

.hero-section{

padding-top:130px;

text-align:center;

}

.hero-image{

margin-top:50px;

max-width:450px;

margin-left:auto;

margin-right:auto;

}

.auth-card{

padding:40px;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

}



@media (max-width:768px){

.hero-section{

padding-top:120px;

}

.hero-section h1{

font-size:42px;

}

.hero-section p{

font-size:16px;

}

.display-5{

font-size:34px;

}

.section-title h2{

font-size:34px;

}

.plan-card{

margin-bottom:30px;

}

.count-box{

margin-bottom:20px;

}

.cta-section{

padding:60px 30px;

}

.cta-section h2{

font-size:34px;

}

.btn{

width:100%;

margin-bottom:15px;

}

.auth-card{

padding:30px;

}

.dashboard-card{

margin-bottom:20px;

}

}



@media (max-width:576px){

.hero-section h1{

font-size:32px;

}

.navbar-brand{

font-size:28px;

}

.section-title h2{

font-size:30px;

}

.plan-price{

font-size:40px;

}

.hero-image{

max-width:320px;

}

.footer{

padding-top:70px;

}

.footer-logo{

font-size:30px;

}

.footer-title{

margin-top:30px;

}

.auth-card{

padding:25px;

}

}



/*====================================================
END OF FILE
====================================================*/