*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    /* background:#0c2c60; */
}



/* ======== HERO ====================== */
.hero{
    min-height:100vh;
    padding:87px 0; 
    display:flex;
    align-items:center;
    justify-content: space-between;
    background-color: #f7f9fb;
    
    /* background:linear-gradient(
        135deg,
        #f1d17f 5%,
        #fff8e1 40%,
        #f5f7f6 120%
    ); */
    overflow:hidden;
    padding-top: 8rem;
}

/* CONTAINER */
.hero-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 40px;
}

/* LEFT */
.hero-left{
    max-width:520px;
}

.hero-left h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
    color:#111;
}

.hero-left p{
    color:#666;
    line-height:1.6;
    margin-bottom:30px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.btn{
    padding:12px 22px;
    border-radius:8px;
    border:none;
    cursor:pointer;
    font-size:14px;
    transition:0.3s;
}

.btn.primary{
    background:#d9a520;
    color:#fff;
}

.btn.primary:hover{
    background:#c4941d;
}

.btn.outline{
    border:1px solid #d9a520;
    background:transparent;
    color:#d9a520;
}

.btn.outline:hover{
    background:#d9a520;
    color:#fff;
}

/* STORE */
.store-buttons img{
    height:40px;
    margin-right:10px;
}

/* RIGHT */
.hero-right{
    flex:1;
    /* height:500px; */
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;

     width:100%;
    height:auto; /* FIXED */
    margin-top:40px;
}

/* BACKGROUND SHAPE */
.hero-right::before{
    content:"";
    position:absolute;
    inset:0;
    /* background-image:url('abstract-arrow-pattern.webp'); */
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    transform:rotate(180deg);

    filter: sepia(1) hue-rotate(10deg) saturate(3) brightness(1.1);
    opacity:0.15;
}

/* PHONE */
.hero-phone{
    position:absolute;
    width:320px;
    max-width:100%;
    z-index:2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));

    animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float{
    0%,100%{
        transform: translateY(0) scale(1.1);
    }
    50%{
        transform: translateY(-15px) scale(1.1);
    }
}


/* RESPONSIVE */
@media(max-width:900px){

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-left{
        max-width:100%;
    }

    .hero-left h1{
        font-size:32px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-right{
        width:100%;
        height:300px;
        margin-top:40px;
    }
       .hero-right{
        display:flex;
        justify-content:center;
        align-items:center;
    }
      .hero-phone{
        position:relative; 
        width:260px;
        transform:none; /* remove scaling issues */
    }
}

/* ==========hero style end here=========== */

   /* ==============stats SECTION */
.stats{
    /* background:#f7f9f8; */
    padding:60px 20px;
}

/* FLEX ROW */
.stats-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:center;
    flex-wrap:wrap;
}

/* ITEM */
.stat{
    flex:1;
    min-width:200px;
}

/* ICON BOX */
.icon{
    width:50px;
    height:50px;
    margin:0 auto 15px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(243,186,47,0.15); /* soft gold background */
    color:#d9a520; /* gold icon */
    font-size:20px;
    transition:0.3s ease;
}

/* NUMBER */
.stat h2{
    font-size:26px;
    font-weight:600;
    margin-bottom:5px;
    color:#111;
}

/* LABEL */
.stat p{
    font-size:14px;
    color:#666;
}

/* ITEM */
.stat{
    flex:1;
    min-width:200px;
    transition:0.3s ease;
}

/* HOVER ZOOM */
.stat:hover{
    transform:scale(1.08);
}

/* ICON ANIMATION */
.stat:hover .icon{
    transform:scale(1.15);
}

/* ==============end stats================= */

  /* SECTION */
.why{
    padding:80px 20px;
   background:#f7f9fb;
}

.why-title{
    text-align:center;
    margin-bottom:50px;
}

.why-title h2{
    font-size:32px;
    color:#111;
    margin-bottom:10px;
}

.why-title p{
    color:#777;
}

/* LAYOUT */
.why-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:50px;
    align-items:flex-start;
}

/* LEFT SIDE */
.why-list{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.why-item{
    padding:20px;
    border-radius:12px;
    border:1px solid #eee;
    transition:0.3s ease;
    background:#fff;
}

.why-item h4{
    margin-bottom:8px;
    color:#222;
}

.why-item p{
    font-size:14px;
    color:#666;
}

/* HOVER */
.why-item:hover{
    border-color:#d9a520;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transform:translateY(-5px);
}

/* RIGHT SIDE */
.why-bars{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* BAR BLOCK */
.bar-block span{
    font-size:14px;
    color:#333;
    display:flex;
    justify-content:space-between;
    margin-bottom:8px;
}

/* BAR */
.bar{
    width:100%;
    height:8px;
    background:#eee;
    border-radius:10px;
    overflow:hidden;
}

/* FILL */
.bar-fill{
    height:100%;
    width:0;
    background:#d9a520;
    border-radius:10px;
    transition:width 1s ease;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .why-container{
        flex-direction:column;
    }
}

/* =============================end why================== */


/* SECTION */
.ap_section{
    padding:80px 20px;
   background:#ecf5fc;
}

/* INNER WRAPPER */
.app-section{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

/* TITLE */
.app-section h2{
    font-size:32px;
    color:#111;
    margin-bottom:10px;
}

.subtitle{
    color:#777;
    margin-bottom:50px;
}

/* LAYOUT */
.app-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* LEFT IMAGE */
.app-left{
    flex:1;
    display:flex;
    justify-content:center;
}

.app-left img{
    width:250px;
    height: auto;
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

/* FLOAT EFFECT */
.app-left img:hover{
    transform:translateY(-10px);
}

/* RIGHT CONTENT */
.app-right{
    flex:1;
    text-align:left;
}

.app-right p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

/* FEATURES */
.featur{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:15px;
}

/* ICON */
.featur span{
    color:#d9a520;
    font-size:18px;
    margin-top:2px;
}

/* TEXT */
.featur p{
    margin:0;
    font-size:14px;
    color:#444;
}

/* STORE BUTTONS */
.store-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

/* STORE BTN */
.store-btn{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 15px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    color:#fff;
    background-color: black;
    transition:0.3s ease;
}

/* HOVER */
.store-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(217,165,32,0.25);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

    .app-container{
        flex-direction:column;
        text-align:center;
    }

    .app-right{
        text-align:center;
    }

    .featur{
        justify-content:center;
        text-align:left;
    }

    .store-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .app-left img{
        width:220px;
    }
}
/* ================end app=================== */


/*  */



/* SECTION */
.testimonials{
    padding:80px 20px;
    background:#fff;
    text-align:center;
}

.testimonials h2{
    font-size:32px;
    margin-bottom:10px;
}

.sub-text{
    color:#777;
    margin-bottom:50px;
}

/* CARDS */
.cards{
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    width:300px;
    text-align:left;
    border:1px solid #eee;
    transition:0.3s ease;
      text-align: left;
    position: relative;
}

/* HOVER */
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    border-color:#d9a520;
}

/* QUOTE */
.quote{
    font-size:40px;
    color:#d9a520;
    margin-bottom:10px;
     position: absolute;
    right: 20px;
    top: 15px;
}

/* STARS */
.stars{
    color:#f3ba2f;
    margin-bottom:15px;
}

/* TEXT */
.text{
    color:#555;
    font-size:14px;
    line-height:1.6;
}

/* LINE */
.line{
    height:1px;
    background:#eee;
    margin:20px 0;
}

/* NAME */
.card h4{
    margin:0;
    font-size:16px;
}

.card span{
    font-size:13px;
    color:#888;
}






/* ends */


/* ✅ RESPONSIVENESS */
@media (max-width: 1024px) {
    .cards {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 24px;
    }

    .sub-text {
        font-size: 14px;
    }

    .card {
        padding: 20px;
    }
}



/* RESPONSIVENESS (adjusted to match new size) */
@media (max-width: 768px) {
    .card {
        width: 95%;
        max-width: 420px;
    }
}

/* =========================testimonial========== */


/* =================faq====================== */

/* SECTION */
.crypto-faq-section{
    padding:80px 20px;
    background:#fafafa;
}

/* CONTAINER */
.crypto-faq-container{
    max-width:800px;
    margin:auto;
}

.crypto-faq-container h2{
    text-align:center;
    margin-bottom:40px;
    font-size:30px;
}

/* ITEM */
.crypto-faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:15px;
    border:1px solid #eee;
    overflow:hidden;
    transition:0.3s ease;
}

/* HOVER */
.crypto-faq-item:hover{
    border-color:#d9a520;
}

/* QUESTION */
.crypto-faq-question{
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-weight:500;
}

/* ICON */
.crypto-faq-icon{
    font-size:18px;
    color:#d9a520;
}

/* ANSWER */
.crypto-faq-answer{
    display:none;
    padding:15px 20px;
    border-top:1px solid #eee;
    font-size:14px;
    color:#555;
    line-height:1.6;
    background:#fafafa;
}

/* ACTIVE */
.crypto-faq-item.active .crypto-faq-answer{
    display:block;
}

.crypto-faq-item.active{
    border-color:#d9a520;
}

/* ============== */
html{
    scroll-behavior:smooth;
}

/* =================================ends of faq */


/* =========================cta=============== */
    
.cta{
    background: linear-gradient(135deg, #0b0e11d0, #1E2026);
    color: white;
    padding:60px 20px;
}
.cta-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.cta-text h2{
    font-size:34px;
    margin-bottom:10px;
}

.cta-text p{
    opacity:.9;
}

/* BUTTON */
.cta-btn{
    background:#F3BA2F;
    color:#000;
}

.cta-btn:hover{
    background:#d9a520;
}
.cta-btn{
    padding:16px 36px;
    border:none;
    border-radius:30px;
    /* background:#3fcc93;
    color:white; */
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

/* .cta-btn:hover{
    background: transparent;
    outline: 1px solid #fff;
} */

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:992px){

    .token-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    /* .distribution li{
        justify-content:;
    } */

    .cta-container{
        flex-direction:column;
        text-align:center;
    }

}

/* Mobile */
@media(max-width:600px){

    .token-left h1{
        font-size:28px;
    }

    .cta-text h2{
        font-size:24px;
    }

    .token-right img{
        max-width:350px;
    }

}

/* =======================footer================= */

.footer{
    background:#f5f5f5;
    padding:60px 40px 30px;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* TOP */
.footer-top{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-col{
    flex:1;
    min-width:200px;
}

/* LOGO */
/* LOGO FIX */
.footerlogo{
    display:flex;
    align-items:center;
    gap:8px; /* tighter, cleaner */
    margin-bottom:15px;
}

/* logo image */
.footerlogo img{
    width:70px; /* FIXED: was too big */
    height:70px;
    object-fit:contain;
}

/* logo text */
.logo-text{
    font-size:18px;
    font-weight:600;
    color:#111;
    letter-spacing:0.5px;
}

.footer-col p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin-bottom:20px;
}

/* SOCIAL ICONS */
.socials i{
    font-size:2rem;
    color:#888;
    margin-right:12px;
    cursor:pointer;
}

/* HEADINGS */
.footer-col h4{
    font-size:16px;
    margin-bottom:15px;
}

/* LIST */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    color:#666;
    margin-bottom:10px;
    font-size:14px;
    cursor:pointer;
}

/* LINE */
.line{
    height:1px;
    background:#ddd;
    margin:40px 0 20px;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    color:#777;
    font-size:14px;
}


/* Smooth transition for all interactive elements */
.socials i,
.footer-col ul li {
    transition: 0.3s ease;
}

/* Social icons hover */
.socials i:hover {
    color: #d9a520; 
}

/* Links hover */
.footer-col ul li:hover {
    color: #d9a520;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    .footer{
        padding:40px 20px;
    }

    .footer-top{
        flex-direction:column;
        gap:30px;
    }

    .footer-col{
        min-width:100%;
    }

    .footer-bottom{
        text-align:center;
    }
}

/* ======================== */
.footer-search{
    margin-top:15px;
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:30px;
    overflow:hidden;
    background:#fff;
    transition:0.3s ease;
    height: 100px;
}

.footer-search input{
    flex:1;
    border:none;
    padding:10px 15px;
    font-size:14px;
    outline:none;
    background:transparent;
}

.footer-search input::placeholder{
    color:#999;
}

.footer-search button{
    background:#d9a520;
    color:#fff;
    border:none;
    padding:10px 18px;
    cursor:pointer;
    font-size:14px;
    transition:0.3s ease;
}

/* hover + focus */
.footer-search:hover{
    border-color:#d9a520;
    box-shadow:0 0 0 2px rgba(34,176,125,0.1);
}

.footer-search button:hover{
    background:#d9a520;
}
