/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f7f9fc;
    color:#111827;
    overflow-x:hidden;
}

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* ===== HERO SECTION ===== */

.hero{
    background:linear-gradient(135deg,#041b3b,#082a59,#041b3b);
    color:#fff;
    padding:50px 0 70px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,193,7,0.08);
    border-radius:50%;
    top:-120px;
    right:-100px;
    filter:blur(30px);
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.hero-text{
    flex:1;
}

.logo{
    width:120px;
    margin-bottom:15px;
}

.tagline{
    display:inline-block;
    background:rgba(255,193,7,.15);
    color:#ffc107;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:600;
}

.hero h1{
    font-size:48px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
}

.hero p{
    color:#d7def0;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:35px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.hero-features i{
    color:#ffc107;
}

/* ===== TELEGRAM BUTTON ===== */

.join-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#0088cc;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:50px;
    font-weight:700;
    font-size:17px;
    transition:.3s;
    position:relative;
    overflow:hidden;

    animation:telegramGlow 2s infinite;
}

/* Blue Glow Animation */

@keyframes telegramGlow{

    0%{
        box-shadow:
        0 0 5px #0088cc,
        0 0 15px #0088cc;
    }

    50%{
        box-shadow:
        0 0 20px #00aaff,
        0 0 40px #00aaff,
        0 0 70px rgba(0,170,255,.9);
    }

    100%{
        box-shadow:
        0 0 5px #0088cc,
        0 0 15px #0088cc;
    }

}

.join-btn:hover{
    transform:translateY(-4px) scale(1.03);

    box-shadow:
    0 0 25px #00aaff,
    0 0 50px #00aaff,
    0 0 80px rgba(0,170,255,.9);
}

.join-btn i{
    font-size:24px;
}

/* ===== HERO IMAGE ===== */

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.image-card{
    background:#fff;
    border-radius:30px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.image-card img{
    width:100%;
    max-width:380px;
    border-radius:20px;
}

/* ===== WHY SECTION ===== */

.why{
    padding:80px 0;
}

.why h2,
.testimonials h2,
.benefits h2,
.faq h2,
.cta h2{
    text-align:center;
    font-size:36px;
    margin-bottom:12px;
    color:#041b3b;
}

.subtitle{
    text-align:center;
    color:#6b7280;
    margin-bottom:45px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:40px;
    color:#0088cc;
    margin-bottom:18px;
}

.card h3{
    margin-bottom:12px;
}

.card p{
    color:#6b7280;
    line-height:1.7;
}

/* ===== TESTIMONIAL ===== */

.testimonials{
    padding:80px 0;
    background:#f1f5f9;
}

.testimonial{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
}

.testimonial p{
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial h4{
    color:#041b3b;
}

/* ===== BENEFITS ===== */

.benefits{
    padding:80px 0;
    background:#041b3b;
    color:#fff;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:45px;
}

.benefit-grid div{
    text-align:center;
}

.benefit-grid i{
    font-size:40px;
    color:#ffc107;
    margin-bottom:15px;
}

.benefit-grid span{
    font-weight:600;
}

/* ===== FAQ ===== */

.faq{
    padding:80px 0;
}

.faq-item{
    background:#fff;
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    text-align:left;
    padding:22px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 22px 22px;
    color:#6b7280;
    line-height:1.8;
}

/* ===== CTA ===== */

.cta{
    padding:80px 0;
    text-align:center;
}

.cta p{
    color:#6b7280;
    margin:20px 0 35px;
}

/* ===== FOOTER ===== */

footer{
    background:#041b3b;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.footer-logo{
    width:90px;
    margin-bottom:20px;
}

.footer-links{
    margin:25px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
}

.footer-links a:hover{
    color:#ffc107;
}

.copyright{
    color:#cfd6e4;
    font-size:14px;
}

/* ===== STICKY BUTTON ===== */

.sticky-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    z-index:999;

    display:flex;
    align-items:center;
    gap:10px;

    background:#0088cc;
    color:#fff;

    padding:15px 24px;
    border-radius:50px;

    text-decoration:none;
    font-weight:700;

    animation:telegramGlow 2s infinite;
}

.sticky-btn i{
    font-size:22px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .hero{
        padding:40px 0 60px;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero h1{
        font-size:34px;
    }

    .hero-features{
        justify-content:center;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .benefit-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why h2,
    .testimonials h2,
    .benefits h2,
    .faq h2,
    .cta h2{
        font-size:28px;
    }

    .sticky-btn{
        left:15px;
        right:15px;
        bottom:15px;
        justify-content:center;
    }

    .join-btn{
        width:100%;
        justify-content:center;
    }

}

@media(max-width:480px){

    .benefit-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:30px;
    }

}
.live-notification{
    position:fixed;
    left:15px;
    bottom:95px;
    width:320px;
    max-width:90%;
    background:#fff;
    border-radius:20px;
    padding:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.18);
    display:flex;
    gap:14px;
    z-index:9999;

    transform:translateY(120px);
    opacity:0;

    transition:.5s ease;
}

.live-notification.show{
    transform:translateY(0);
    opacity:1;
}

.notify-avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#00b894;
    color:#fff;
    font-size:24px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.notify-content{
    flex:1;
}

.notify-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.notify-top strong{
    font-size:18px;
}

.notify-close{
    cursor:pointer;
    font-size:22px;
    color:#999;
}

.notify-message{
    margin-top:5px;
    color:#666;
}

.notify-amount{
    color:#00c853;
    font-weight:700;
}

.notify-location{
    margin-top:6px;
    font-size:13px;
    color:#888;
}

@media(max-width:768px){
    .live-notification{
        bottom:85px;
        left:10px;
        right:10px;
        width:auto;
    }
}


/* PROJECT PLANS */

.plans{
    padding:80px 0;
    background:#f8fbff;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:45px;
}

.plan-card{
    background:#fff;
    padding:35px 25px;
    border-radius:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.plan-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.plan-card h3{
    font-size:32px;
    color:#111827;
}

.plan-type{
    color:#7c8798;
    display:block;
    margin-bottom:20px;
}

.earning{
    font-size:38px;
    font-weight:800;
    color:#0088ff;
    margin-bottom:25px;
}

.plan-card ul{
    list-style:none;
}

.plan-card ul li{
    margin-bottom:14px;
    color:#374151;
}

.plan-btn{
    margin-top:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:16px;
    background:linear-gradient(90deg,#0088ff,#00b4ff);
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:700;

    animation:telegramGlow 2s infinite;
}

.popular{
    border:2px solid #7ec0ff;
}

.badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#22c55e;
    color:#fff;
    padding:6px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

@media(max-width:768px){

    .plan-grid{
        grid-template-columns:1fr;
    }

    .earning{
        font-size:32px;
    }

    .plan-card h3{
        font-size:28px;
    }

}