 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-magenta: #E91E8C;
    --primary-purple: #8B1DAD;
    --primary-gold: #D4AF37;
    --primary-cyan: #00D9FF;
    --primary-orange: #FF6B35;
    --dark-bg: #0F0F1A;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;

  
}

/* Colorful Background */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-magenta) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -5s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.fff{
	font-size: 46px !important;
    color: gold !important;

}


/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: #0f0f1a;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo img {
    height: 55px;
}

/* CENTER MENU */
.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #FFD700;
}

/* BUTTONS */
.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

/* LOGIN */
.login-btn {
    color: #FFD700;
    border: 1px solid rgba(255,215,0,0.3);
}

.login-btn:hover {
    background: rgba(255,215,0,0.1);
}

/* SIGNUP */
.signup-btn {
    background: linear-gradient(90deg, #FFD700, #FFC107);
    color: #000;
}

.signup-btn:hover {
    transform: translateY(-2px);
}

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #0f0f1a;
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
        transition: 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 12px 0;
        display: block;
    }

    

    .menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
   
    display: flex;
    align-items: center;
    padding: 150px 0px 50px 0px;
    z-index: 1;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


.counter-box h6{
font-size:32px;
} 

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(233, 30, 140, 0.15);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-magenta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
}


.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-ctas .btn {
    padding: 15px 30px;
    font-size: 15px;
}

/* Market Ticker */
.market-ticker {
    display: flex;
    gap: 35px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.ticker-info {
    display: flex;
    flex-direction: column;
}

.ticker-name {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.ticker-price {
    font-size: 15px;
    font-weight: 600;
}

.ticker-change {
    font-size: 13px;
    font-weight: 600;
    color: #00E676;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 550px;
}

.floating-coin {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: floatCoin 5s ease-in-out infinite;
}

.coin-btc {
    top: 5%;
    right: 15%;
    background: linear-gradient(135deg, #F7931A, #FFB84D);
}

.coin-eth {
    top: 35%;
    right: 5%;
    background: linear-gradient(135deg, #627EEA, #8B9FFF);
    animation-delay: -1.5s;
}

.coin-sol {
    top: 60%;
    right: 20%;
    background: linear-gradient(135deg, #9945FF, #14F195);
    animation-delay: -3s;
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(8deg); }
}

/* Dashboard Card */
.dashboard-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    animation: floatCard 6s ease-in-out infinite;
}

.dashboard-main {
    top: 15%;
    left: 5%;
    width: 260px;
}

.dashboard-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.dashboard-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dashboard-change {
    font-size: 13px;
    font-weight: 600;
    color: #00E676;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}


/* Responsive */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 35px; }
    .hero-ctas { justify-content: center; }
    .market-ticker { justify-content: center; flex-wrap: wrap; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; }
    .nav, .header-ctas { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 100px 0 60px; }
    .hero-inner { padding: 0 20px; }
    .hero-title { font-size: 32px; }
    .hero-ctas { flex-direction: column; }
    .hero-visual { height: 350px; }
    .stats-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stat-value { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .market-ticker { gap: 20px; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-value { font-size: 28px; }
}
       

        /* Floating Coins */
        .floating-coin {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: var(--shadow-card);
            animation: floatCoin 6s ease-in-out infinite;
        }

        .coin-btc {
            top: 10%;
            right: 20%;
            background: linear-gradient(135deg, #F7931A, #E88D00);
            animation-delay: 0s;
        }

        .coin-eth {
            top: 40%;
            right: 5%;
            background: linear-gradient(135deg, #627EEA, #4A5FCC);
            animation-delay: -2s;
        }

        .coin-sol {
            top: 65%;
            right: 25%;
            background: linear-gradient(135deg, #9945FF, #14F195);
            animation-delay: -4s;
        }

        @keyframes floatCoin {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Glassmorphism Dashboard */
        .dashboard-card {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--shadow-card);
        }

        .dashboard-main {
            top: 20%;
            left: 10%;
            width: 280px;
            animation: floatCard 8s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .dashboard-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .dashboard-value {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .dashboard-change {
            font-size: 13px;
            font-weight: 600;
            color: #00D68F;
        }

        /* Candlestick Chart */
        .candlestick-chart {
            position: absolute;
            bottom: 15%;
            left: 5%;
            width: 320px;
            height: 150px;
            animation: floatCard 8s ease-in-out infinite;
            animation-delay: -2s;
        }

        .candle {
            position: absolute;
            bottom: 0;
            width: 8px;
            border-radius: 2px;
        }

        .candle-body {
            position: absolute;
            width: 100%;
            left: 0;
        }

        .candle.wick {
            width: 2px;
            left: 50%;
            transform: translateX(-50%);
        }

        .candle.green .candle-body {
            background: #00D68F;
        }

        .candle.green .candle.wick {
            background: #00D68F;
        }

        .candle.red .candle-body {
            background: #FF3D71;
        }

        .candle.red .candle.wick {
            background: #FF3D71;
        }


        /* Responsive */
        @media (max-width: 1200px) {
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 1;
            }

            .hero-visual {
                order: 2;
                height: 400px;
            }

            .hero-subtitle {
                margin: 0 auto 40px;
            }

            .hero-ctas {
                justify-content: center;
            }

            .market-ticker {
                justify-content: center;
                flex-wrap: wrap;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-inner {
                padding: 0 20px;
            }

            .nav, .header-ctas {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-inner {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .hero-visual {
                height: 300px;
            }

            .dashboard-main {
                width: 200px;
                padding: 14px;
            }

            .dashboard-value {
                font-size: 20px;
            }

            .candlestick-chart {
                width: 200px;
                height: 100px;
            }

            .stats-inner {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .stat-value {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .market-ticker {
                gap: 20px;
            }

            .stats-inner {
                grid-template-columns: 1fr;
            }

            .stat-value {
                font-size: 32px;
            }
        }

        /* Scroll Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

     
.counter-section {
    padding: 0px 20px;
    
    text-align: center;
}

/* GRID */
.counter-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.counter-box {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.counter-box:hover {
    transform: translateY(-8px);
    border-color: gold;
}

/* NUMBER (GOLD GRADIENT) */
.counter {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(90deg, #FFD700, #FFC107, #FFB300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT (GOLD) */
.counter-text {
    color: #ffffff;
    margin-top: 10px;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-container {
        grid-template-columns: 1fr;
    }

    .counter {
        font-size: 34px;
    }
}

/* OUTER SPACING */
.marquee-wrapper {
    padding: 10px 0px 70px 0px;
}

/* CARD STYLE CONTAINER */
.marquee-section {
   
    margin: auto;
    padding: 18px 0;
    border-radius: 20px;

    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);

    overflow: hidden;
}

/* MARQUEE TRACK */
.marquee {
    display: flex;
    width: max-content;
    animation: scroll 22s linear infinite;
}

/* ITEM */
.marquee-item {
    display: flex;
    align-items: center;
    margin: 0 35px;
    color: #FFD700;
    font-size: 15px;
    white-space: nowrap;
    font-weight: 500;
}

/* ICON */
.marquee-item span {
    margin-right: 10px;
    font-size: 18px;
}

/* ANIMATION */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HOVER PAUSE */
.marquee-section:hover .marquee {
    animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .marquee-item {
        margin: 0 20px;
        font-size: 14px;
    }
	.counter-container {
    grid-template-columns: repeat(2, 1fr) !important;
  
}
}



/* SECTION */
.about-section {
   
    padding: 10px 0px;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

/* CONTAINER */
.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    color: #FFD700;
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FEATURES */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-box {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    color: #FFD700;
    border: 1px solid rgba(255,215,0,0.25);
    text-align: center;
    font-size: 18px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(90deg, #FFD700, #FFC107);
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}




/* MISSION SECTION */
.mission-section {
    padding: 80px 20px;
    position: relative;
    z-index: 2;
}

/* CONTAINER */
.mission-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.mission-img {
    flex: 1;
}

.mission-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* CONTENT */
.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 20px;
}

.mission-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* POINTS */
.mission-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.mission-box {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    color: #FFD700;
    border: 1px solid rgba(255,215,0,0.25);
    text-align: center;
    transition: 0.3s;
}

.mission-box:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-points {
        grid-template-columns: 1fr;
    }
}


/* PROGRESS WRAPPER */
.progress-wrapper {
    margin-top: 30px;
}

/* ITEM */
.progress-item {
    margin-bottom: 20px;
}

/* TITLE */
.progress-title {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

/* BAR BG */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
}

/* GOLD FILL */
.progress-fill {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, #FFD700, #FFC107, #FFB300);
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
    transition: width 1.5s ease;
}


/* VISION SECTION */
.vision-section {
    padding: 50px 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* HEADER */
.vision-header {
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.vision-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: gold;
   
}

.vision-header p {
    color: #ccc;
    line-height: 1.7;
}

/* CARDS GRID */
.vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.vision-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s;
}

/* ICON */
.vision-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITLE */
.vision-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

/* TEXT */
.vision-card p {
    color: #ccc;
    font-size: 14px;
}

/* HOVER EFFECT */
.vision-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #FFD700;
    box-shadow: 0 10px 40px rgba(255,215,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vision-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .vision-cards {
        grid-template-columns: 1fr;
    }

    .vision-header h2 {
        font-size: 30px;
    }
}




.roadmap-section{
padding:120px 0px;

text-align:center;
overflow:hidden;
position:relative;
z-index:1;
}

.container{
max-width:1350px;
margin:auto;
}

.sub-title{
font-size:15px;
letter-spacing:2px;
font-weight:700;
color:#e2ac00;
display:block;
margin-bottom:20px;
}

.roadmap-section h2{
font-size: 42px;
margin-bottom: 20px;
color: #FFD700;
}

.desc{
max-width:760px;
margin:auto;
font-size:20px;
line-height:1.8;
color:#ffffff;
margin-bottom:90px;
}

.roadmap-wrap{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:30px;
position:relative;
flex-wrap:nowrap;
}

.roadmap-item{
flex:1;
position:relative;
}

.roadmap-item h4{
font-size:28px;
font-weight:700;
margin:35px 0 20px;
}

.roadmap-item p{
font-size:18px;
line-height:1.8;
color:#ffffff;
max-width:260px;
margin:auto;
}

.circle-wrap{
position:relative;
display:flex;
justify-content:center;
align-items:center;
padding-bottom:73px;
}

.circle-wrap.down{
padding-top:74px;
padding-bottom:0;
}

.circle{
height:175px;
width:175px;
background:#f3b40b;
border-radius:50%;
color:black;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
font-weight:700;
font-size:17px;
line-height:1.25;
position:relative;
z-index:2;
box-shadow:
0 12px 22px rgba(0,0,0,.12),
0 0 0 12px #fff;
}

/* arc lines */
.circle-wrap:before{
content:'';
position:absolute;
width:210px;
height:105px;
border:4px solid #f3b40b;
border-top:none;
border-radius:0 0 120px 120px;
bottom:48px;
}

.circle-wrap.down:before{
top:48px;
bottom:auto;
transform:rotate(180deg);
}

.circle-wrap:after{
content:'';
position:absolute;
width:4px;
height:70px;
background:#f3b40b;
bottom:-10px;
}

.circle-wrap.down:after{
top:-10px;
bottom:auto;
}

.circle::before,
.circle::after{
content:'';
position:absolute;
height:18px;
width:18px;
background:#f3b40b;
border-radius:50%;
top:50%;
transform:translateY(-50%);
}

.circle::before{
left:-31px;
}

.circle::after{
right:-31px;
}

/* Responsive */
@media(max-width:1200px){
.roadmap-wrap{
flex-wrap:wrap;
justify-content:center;
}

.roadmap-item{
width:45%;
flex:none;
margin-bottom:70px;
}

.roadmap-section h2{
font-size:54px;
}
}

@media(max-width:768px){

.roadmap-section{
padding:70px 20px;
}

.roadmap-section h2{
font-size:42px;
}

.desc{
font-size:17px;
margin-bottom:60px;
}

.roadmap-item{
width:100%;
}

.circle{
width:145px;
height:145px;
font-size:16px;
}





.circle-wrap:before{
width:180px;
height:90px;
}

.roadmap-item h4{
font-size:28px;
}
}

@media(max-width:480px){

.roadmap-section h2{
font-size:34px;
}

.circle{
width:130px;
height:130px;
font-size:20px;
}

.circle-wrap:before{
width:160px;
height:80px;
}

.roadmap-item p{
font-size:16px;
}
}

.faq-section {
    padding: 0px 20px 0px;
    position: relative;
    z-index: 2;
}

.faq-head {
    max-width: 810px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-head h2 {
    font-size: 46px;
    margin-top: 12px;
    color: #FFD700;
}

.faq-head .desc {
    margin-top: 18px;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.faq-column details {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 22px 24px;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-column details:hover {
    transform: translateY(-4px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.faq-column summary {
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-column summary::-webkit-details-marker {
    display: none;
}

.faq-column summary::after {
    content: '\279C';
    font-size: 18px;
    color: #FFD700;
    transition: transform 0.35s ease;
}

.faq-column details[open] summary::after {
    transform: rotate(90deg);
}

.faq-answer {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 1000px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-head h2 {
        font-size: 38px;
    }
}

@media(max-width: 576px) {
    .faq-section {
        padding: 60px 18px 40px;
    }

    .faq-head h2 {
        font-size: 32px;
    }

    .faq-head .desc {
        font-size: 16px;
    }

    .faq-column details {
        padding: 18px 20px;
    }

    .faq-column summary {
        font-size: 18px;
    }
}
   

.why-section{
    margin-top: 80px;
}
/* CONTAINER */
.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.why-tag {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.why-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.why-title span {
    color: #FFD700;
}

.why-desc {
    margin: 20px 0 30px;
    color: #ccc;
    line-height: 1.7;
}

/* IMAGE */
.why-img {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,215,0,0.3);
    box-shadow: 0 0 30px rgba(255,215,0,0.15);
}

.why-img img {
    width: 100%;
    display: block;
}

/* RIGHT SIDE */
.why-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ITEM */
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

/* ICON */
.why-item .icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

/* CONTENT */
.why-item h3 {
        color: #FFD700;
    font-size: 29px;
    font-weight: 500;
    margin-bottom: 6px;
}

.why-item p {
    color: #ffffff;
    font-size: 17px;
}

/* ARROW LINE */
.why-item::after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -20px;
    width: 2px;
    height: 40px;
    background: rgba(255,215,0,0.3);
}

.why-item:last-child::after {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-right {
        align-items: center;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-item::after {
        display: none;
    }

    .why-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .why-title {
        font-size: 28px;
    }

    .why-item .icon {
        width: 50px;
        height: 50px;
    }
}




.footer {
  margin-top: 80px;
    padding: 50px 20px 25px;
    text-align: center;
    border-top: 1px solid rgba(255,215,0,0.2);
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap; /* important for mobile */
    margin-bottom: 15px;
}

.footer-contact span {
    color: #ffffff;
    font-size: 18px;
    position: relative;
}

/* Optional separator line */
.footer-contact span:not(:last-child)::after {
    content: "|";
    margin-left: 30px;
    color: rgba(255,255,255,0.2);
}

/* SOCIAL ICONS */
.footer-social {
    margin: 20px 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background: rgba(255,215,0,0.08);
    color: #FFD700;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-copy p {
    margin-top: 15px;
    font-size: 13px;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-logo img {
        height: 50px;
    }

    .footer-contact p {
        font-size: 13px;
    }
}