/*==================================================
Google Font
==================================================*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");



/*==================================================
ROOT
==================================================*/

:root {
    --primary: #d4af37;
    --secondary: #f7d76a;
    --bg: #070707;
    --card: #111111;
    --card2: #171717;
    --border: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
    --text: #b8b8b8;
    --shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/*==================================================
COMMON
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-family: "Montserrat", sans-serif;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1320px;
}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-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: 99999;
}

.loader span {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #222;
    border-top: 4px solid var(--primary);
    animation: loader 1s linear infinite;
}

@keyframes loader {
    100% {
        transform: rotate(360deg);
    }
}

/*==================================================
PARTICLES
==================================================*/

.particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    animation: particle 15s linear infinite;
}

.particles span:nth-child(1) {
    left: 5%;
    animation-delay: 1s;
}

.particles span:nth-child(2) {
    left: 18%;
    animation-delay: 5s;
}

.particles span:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
}

.particles span:nth-child(4) {
    left: 45%;
    animation-delay: 7s;
}

.particles span:nth-child(5) {
    left: 60%;
    animation-delay: 4s;
}

.particles span:nth-child(6) {
    left: 73%;
    animation-delay: 9s;
}

.particles span:nth-child(7) {
    left: 88%;
    animation-delay: 6s;
}

.particles span:nth-child(8) {
    left: 96%;
    animation-delay: 3s;
}

@keyframes particle {
    from {
        transform: translateY(120vh);
    }

    to {
        transform: translateY(-20vh);
    }
}

/*==================================================
NAVBAR
==================================================*/

.navbar {
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.4s;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.navbar-brand img {
    width: 58px;
    filter: brightness(0.7);
}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: 0.4s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    left: 0;
    bottom: -6px;
    height: 2px;
    background: var(--primary);
    transition: 0.4s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 30px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*==================================================
BUTTON
==================================================*/

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: linear-gradient(135deg, #f9d85f, #c69316);
    color: #111;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.4s;
    border: 2px solid transparent;
}

.theme-btn:hover {
    transform: translateY(-5px);
    color: #111;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.45);
}

.outline-btn {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
}

.outline-btn:hover {
    background: var(--primary);
}

/*==================================================
HERO
==================================================*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 180px;
}

.hero-content .tag {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 40px;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h1 {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.08;
    font-family:"Cormorant Garamond",serif;
    letter-spacing: 1px;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero p {
    color: var(--text);
    margin: 10px 0;
    font-size: 15px;
    line-height: 25px;
    /* max-width: 620px; */
    text-align: justify;
}

.hero-btn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-list {
    margin: 35px 0;
}

.hero-list h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 3px solid #cf993a;
    padding-left: 15px;
}

.hero-list ul li {
    color: #cf993a;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.hero-list ul li i {
    color: #cf993a;
    font-size: 17px;
    margin-top: 3px;
    flex-shrink: 0;
}

/*==================================================
RIGHT HERO
==================================================*/

.hero-image {
    position: relative;
    width: 650px;
    height: 650px;
    margin: auto;
}

.circle {
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 35s linear infinite;
}

.circle::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-coin {
    width: 320px;
    animation: float 5s ease-in-out infinite;
}

.coin {
    width: 130px;
    height: 130px;
    background: #121212;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.coin img {
    width: 70px;
}

.coin h6 {
    margin-top: 10px;
    font-weight: 700;
}

.btc {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.eth {
    right: 0;
    top: 42%;
}

.sol {
    bottom: 20px;
    left: 60px;
}

.xrp {
    top: 130px;
    left: 0;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/*==================================================
SECTION TITLE
==================================================*/

.section-title span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-top: 10px;
    color: #fff;
    text-transform: uppercase;
}

/*==================================================
ABOUT
==================================================*/

.about {
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.08);
    filter: blur(180px);
    top: -100px;
    left: -120px;
    border-radius: 50%;
}

.about-img {
    width: 420px;
    display: block;
    margin: auto;
    animation: float 5s ease-in-out infinite;
}

.about p {
    color: var(--text);
    line-height: 25px;
    font-size: 16px;
}

.counter-box {
    background: linear-gradient(180deg, #181818, #111);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    transition: 0.4s;
}

.counter-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.18);
}

.counter-box h2 {
    color: var(--primary);
    font-size: 42px;
    font-weight: 800;
}

.counter-box p {
    margin-top: 8px;
    margin-bottom: 0;
    color: #ddd;
}

.ai-section {
    position: relative;
    overflow: hidden;
    background: #050505;
    padding: 100px 0;
}

.ai-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -150px;
    top: -120px;
    background: radial-gradient(circle, #ffb40055 0%, transparent 70%);
}

.ai-section::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -150px;
    bottom: -120px;
    background: radial-gradient(circle, #ffb40055 0%, transparent 70%);
}

.ai-logo {
    width: 180px;
}

.ai-title {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 35px;
    margin-bottom: 15px;
}

.ai-title span {
    font-size: 65px;
}

.ai-text {
    color: #f2f2f2;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
}

.ai-content {
    border-left: 5px solid #ffb400;
    padding-left: 20px;
}

.ai-content h3 {
    color: #ffb400;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5px;
}

.ai-content ul {
    margin: 0;
    padding-left: 10px;
}

.ai-content li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 18px;
}

.ai-content strong {
    color: #ffb400;
}

.ai-images {
    position: relative;
    padding-bottom: 140px;
}

.big-img {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.big-img img {
    width: 100%;
    height: 500px;
    /* object-fit:cover; */
}

.small-img {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 70%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.small-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* decorative block */

.ai-section .container {
    position: relative;
    z-index: 2;
}

.ai-section::marker {
    display: none;
}

.ai-section::before,
.ai-section::after {
    z-index: 0;
}

@media (max-width: 1399px) {
    .ai-title {
        font-size: 60px;
    }

    .ai-content h3 {
        font-size: 38px;
    }

    .ai-text,
    .ai-content li {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .ai-title {
        font-size: 50px;
    }

    .ai-text {
        font-size: 18px;
    }

    .ai-content h3 {
        font-size: 32px;
    }

    .ai-content li {
        font-size: 18px;
    }

    .ai-images {
        margin-top: 40px;
        padding-bottom: 90px;
    }

    .big-img img {
        height: 420px;
    }

    .small-img {
        width: 65%;
        right: 20px;
    }

    .small-img img {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .center-circle {
        width: 140px;
        height: 140px;
    }
    .roadmap-card h3 {
        font-size: 17px !important;
    }
    .roadmap-card ul li {
        padding-left: 20px;
    }
    .ai-logo {
        width: 130px;
    }
    .main-title {
        font-size: 30px !important;
    }
    .main-text {
        font-size: 15px;
    }

    .ai-title {
        font-size: 30px;
    }
    .ai-text {
        font-size: 15px;
    }

    .ai-title span {
        font-size: 40px;
    }

    .ai-content {
        padding-left: 15px;
    }

    .ai-content h3 {
        font-size: 20px;
    }

    .ai-content li {
        font-size: 14px;
    }

    .big-img {
        border-radius: 20px;
    }

    .big-img img {
        height: 320px;
    }

    .small-img {
        position: relative;
        width: 100%;
        right: 0;
        margin-top: 20px;
    }

    .small-img img {
        height: 200px;
    }

    .ai-images {
        padding-bottom: 0;
    }
}

.ecosystem-section {
    background: #070707;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.ecosystem-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: -250px;
    top: -150px;
    background: radial-gradient(circle, #ffb40055 0%, transparent 70%);
}

.ecosystem-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    bottom: -180px;
    background: radial-gradient(circle, #ffb40040 0%, transparent 70%);
}

.ecosystem-section .container {
    position: relative;
    z-index: 2;
}

.sub-title {
    color: #ffb400;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 700;
}

.main-title {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    margin: 15px 0;
}

.main-title span {
    color: #ffb400;
}

.main-text {
    color: #cfcfcf;
    font-size: 18px;
    line-height: 32px;
    max-width: 850px;
    margin: auto;
}
.eco-box {
    position: relative;
    height: 850px;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #111, #050505);
    border: 1px solid rgba(255, 187, 0, 0.18);
    box-shadow:
        inset 0 0 80px rgba(255, 187, 0, 0.06),
        0 25px 80px rgba(0, 0, 0, 0.55);
}

/* Glow Background */

.eco-box::before {
    content: "";
    position: absolute;
    width: 750px;
    height: 750px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.25) 0%, transparent 70%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: glow 6s linear infinite alternate;
}

.eco-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.18), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.12), transparent 35%);
    pointer-events: none;
}

/* Center */

.eco-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #111;
    border: 8px solid #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 5s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(255, 193, 7, 0.5),
        0 0 80px rgba(255, 193, 7, 0.25);
}

.center-circle::after {
    content: "";
    position: absolute;
    inset: -45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 7, 0.18);
}

.center-circle img {
    width: 140px;
    animation: rotateReverse 20s linear infinite;
}

/* Orbit Ring */

.eco-box .eco-center::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.12);
}

.eco-box .eco-center::after {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(255, 193, 7, 0.08);
    animation: rotate 40s linear infinite;
}

/* Items */

.eco-item {
    position: absolute;
    width: 190px;
    text-align: center;
    z-index: 20;
    transition: 0.4s;
}

.eco-item:hover {
    transform: scale(1.08);
}

.eco-icon {
    width: 95px;
    height: 95px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffd84f, #ffb400, #bb7600);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111;
    font-size: 34px;
    position: relative;
    box-shadow:
        0 0 0 8px rgba(255, 193, 7, 0.08),
        0 0 35px rgba(255, 193, 7, 0.35);
    animation: float 4s ease-in-out infinite;
}

.eco-icon::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.18);
}

.eco-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffd84f;
    border-radius: 50%;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px #ffd84f;
}

.eco-item h5 {
    margin-top: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Connecting Lines */

.item1::before,
.item2::before,
.item3::before,
.item4::before,
.item5::before,
.item6::before,
.item7::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, #ffc107, transparent);
    opacity: 0.25;
}

/* Positions */

.item1 {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.item2 {
    top: 170px;
    right: 80px;
}

.item3 {
    bottom: 170px;
    right: 80px;
}

.item4 {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.item5 {
    bottom: 170px;
    left: 80px;
}

.item6 {
    top: 170px;
    left: 80px;
}

.item7 {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Animation */

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
}

/* Responsive */

@media (max-width: 991px) {
    .eco-box {
        height: auto;
        padding: 40px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }

    .eco-center,
    .eco-item {
        position: static;
        transform: none !important;
        width: 100%;
    }

    .eco-center {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        order: -1;
    }

    .center-circle {
        width: 190px;
        height: 190px;
    }

    .center-circle img {
        width: 100px;
    }

    .eco-box .eco-center::before,
    .eco-box .eco-center::after {
        display: none;
    }
}

.blockchain-section {
    background: #050505;
    position: relative;
    overflow: hidden;
}

.blockchain-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffb30022 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

.blockchain-section::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffb30022 0%, transparent 70%);
    right: -180px;
    bottom: -180px;
}

.blockchain-image {
    position: relative;
    padding: 40px;
}

.main-card {
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.main-card img {
    width: 100%;
    display: block;
}

.floating-card {
    position: absolute;
    background: #111;
    border: 1px solid rgba(255, 193, 7, 0.2);
    padding: 18px 24px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    animation: float 4s infinite ease-in-out;
}

.floating-card i {
    color: #ffb300;
    font-size: 30px;
    margin-bottom: 10px;
}

.floating-card h6 {
    color: #fff;
    margin: 0;
}

.card-one {
    top: 0;
    left: 20px;
}

.card-two {
    top: 45%;
    right: -20px;
}

.card-three {
    bottom: 0;
    left: 60px;
}

.blockchain-content {
    padding-left: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    background: #111;
    border: 1px solid rgba(255, 193, 7, 0.12);
    padding: 22px;
    border-radius: 18px;
    transition: 0.4s;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: #ffb300;
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffd54f, #ffb300);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    color: #111;
    font-size: 28px;
}

.feature-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

.feature-item p {
    color: #bfbfbf;
    margin: 0;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 991px) {
    .blockchain-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .card-two {
        right: 0;
    }
}

.roadmap-section {
    position: relative;
    background: #070707;
    overflow: hidden;
    z-index: 1;
    padding: 120px 0;
}

.roadmap-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 70%);
    top: -200px;
    left: -150px;
    animation: glowMove 8s linear infinite alternate;
}

.roadmap-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12), transparent 70%);
    right: -200px;
    bottom: -200px;
    animation: glowMove2 8s linear infinite alternate;
}

.roadmap {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
}

.roadmap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(#ffcc00, #ff9900, #ffcc00);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.7);
}

.roadmap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 5px;
    height: 180px;
    background: #fff;
    filter: blur(10px);
    animation: lineMove 5s linear infinite;
}

.roadmap-item {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin: 90px 0;
}

.roadmap-item.left {
    justify-content: flex-start;
}

.roadmap-item.right {
    justify-content: flex-end;
}

.roadmap-card {
    width: 43%;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.18);
    border-radius: 30px;
    padding: 35px;
    transition: 0.45s;
    overflow: hidden;
}

.roadmap-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.roadmap-card:hover::before {
    opacity: 1;
}

.roadmap-card:hover {
    transform: translateY(-12px);
    border-color: #ffcc00;
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.25);
}

.phase {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    color: #111;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
}

.roadmap-card h3 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
}

.roadmap-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.roadmap-card ul li {
    color: #d5d5d5;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 28px;
    text-transform: uppercase;
}

.roadmap-card ul li:last-child {
    border: none;
}

.roadmap-card ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #ffcc00;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0d0d0d;
    border: 4px solid #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.roadmap-dot span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffcc00;
    animation: pulse 2s infinite;
}

.roadmap-item.left .roadmap-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -65px;
    width: 65px;
    height: 2px;
    background: #ffcc00;
}

.roadmap-item.right .roadmap-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -65px;
    width: 65px;
    height: 2px;
    background: #ffcc00;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 193, 7, 0.7);
    }

    50% {
        transform: scale(1.8);
        box-shadow: 0 0 25px rgba(255, 193, 7, 0.8);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lineMove {
    0% {
        top: -180px;
    }

    100% {
        top: 100%;
    }
}

@keyframes glowMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 60px);
    }
}

@keyframes glowMove2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-80px, -60px);
    }
}

@media (max-width: 991px) {
    .roadmap::before,
    .roadmap::after {
        left: 30px;
    }

    .roadmap-item {
        justify-content: flex-start !important;
        padding-left: 90px;
    }

    .roadmap-card {
        width: 100%;
    }

    .roadmap-dot {
        left: 30px;
    }

    .roadmap-item.left .roadmap-card::after,
    .roadmap-item.right .roadmap-card::after {
        display: none;
    }
}

/* ============================
   ROADMAP HOVER EFFECTS
============================ */

.roadmap-card:hover .phase {
    background: #fff;
    color: #000;
}

.roadmap-card:hover h3 {
    color: #ffcc00;
}

.roadmap-card:hover li {
    transform: translateX(8px);
    color: #fff;
}

.roadmap-card ul li {
    transition: 0.35s;
}

.roadmap-card:hover .phase {
    transform: scale(1.08);
}

.phase {
    transition: 0.35s;
}

.roadmap-card {
    cursor: pointer;
}

.roadmap-card:hover {
    animation: cardFloat 0.8s ease;
}

@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(-12px);
    }
}

/* ============================
   PARTICLES
============================ */

.roadmap-section .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffcc00;
    box-shadow: 0 0 15px #ffcc00;
    opacity: 0.5;
    animation: particle 8s linear infinite;
}

.roadmap-section .particle:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.roadmap-section .particle:nth-child(2) {
    top: 35%;
    right: 12%;
    animation-delay: 2s;
}

.roadmap-section .particle:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

.roadmap-section .particle:nth-child(4) {
    top: 65%;
    right: 25%;
    animation-delay: 6s;
}

.roadmap-section .particle:nth-child(5) {
    top: 80%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes particle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-150px) scale(1.6);
        opacity: 0;
    }
}

/* ============================
   CARD SHINE
============================ */

.roadmap-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 300%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: rotate(25deg);
    transition: 1s;
    pointer-events: none;
}

.roadmap-card:hover::after {
    left: 130%;
}

/* ============================
   ICON
============================ */

.roadmap-card h3::before {
    content: "";
    margin-right: 10px;
    color: #ffcc00;
}

/* ============================
   SCROLL BAR
============================ */

.roadmap {
    scroll-behavior: smooth;
}

/* ============================
   GLOW BORDER
============================ */

.roadmap-card {
    position: relative;
}

.roadmap-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 204, 0, 0.45),
        transparent,
        rgba(255, 204, 0, 0.25),
        transparent
    );
    z-index: -1;
    animation: borderRotate 8s linear infinite;
    background-size: 400% 400%;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

/* ============================
   DOT RIPPLE
============================ */

.roadmap-dot::before,
.roadmap-dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 204, 0, 0.4);
    animation: ripple 2.5s infinite;
}

.roadmap-dot::after {
    animation-delay: 1.2s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/*==========================
        FOOTER
===========================*/

.footer-area {
    position: relative;
    background: #070707;
    overflow: hidden;
    padding: 110px 0 0;
    border-top: 1px solid rgba(255, 187, 0, 0.12);
}

.footer-top-shape {
    position: absolute;
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(255, 187, 0, 0.12), transparent 70%);
    left: 50%;
    top: -500px;
    transform: translateX(-50%);
    animation: footerGlow 8s infinite alternate;
}

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 75px;
    transition: 0.4s;
}

.footer-logo:hover img {
    transform: rotate(360deg);
}

.footer-logo h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin: 0;
}

.footer-text {
    color: #bcbcbc;
    line-height: 30px;
    margin-bottom: 35px;
}

.footer-widget h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #ffbb00;
    border-radius: 30px;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 18px;
}

.footer-widget ul li:last-child {
    margin: 0;
}

.footer-widget ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.35s;
    display: inline-flex;
    align-items: center;
}

.footer-widget ul li a::before {
    content: "➜";
    color: #ffbb00;
    margin-right: 10px;
    opacity: 0;
    transition: 0.35s;
}

.footer-widget ul li a:hover {
    color: #ffbb00;
    transform: translateX(10px);
}

.footer-widget ul li a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-social a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255, 187, 0, 0.2);
    color: #ffbb00;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.4s;
    font-size: 20px;
}

.footer-social a:hover {
    background: #ffbb00;
    color: #111;
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(255, 187, 0, 0.45);
}

.newsletter-text {
    color: #bcbcbc;
    line-height: 30px;
}

.newsletter-box {
    display: flex;
    margin-top: 25px;
    border-radius: 60px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 187, 0, 0.18);
}

.newsletter-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 18px 22px;
}

.newsletter-box button {
    width: 70px;
    border: none;
    background: #ffbb00;
    color: #111;
    transition: 0.35s;
}

.newsletter-box button:hover {
    background: #fff;
}

.footer-contact {
    margin-top: 35px;
}

.footer-contact div {
    color: #d8d8d8;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255, 187, 0, 0.2);
    color: #ffbb00;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #bdbdbd;
    margin: 0;
}

.footer-bottom a {
    color: #cfcfcf;
    margin-left: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #ffbb00;
}

@keyframes footerGlow {
    0% {
        transform: translateX(-50%) scale(0.9);
    }

    100% {
        transform: translateX(-50%) scale(1.15);
    }
}

@media (max-width: 991px) {
    .footer-logo {
        justify-content: center;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-widget h4::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact div {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom a {
        display: inline-block;
        margin: 10px;
    }
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 991px) {
    .hero {
        padding-top: 150px;
        text-align: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-image {
        width: 100%;
        height: 520px;
        margin-top: 70px;
    }

    .circle {
        width: 340px;
        height: 340px;
    }

    .circle::before {
        width: 450px;
        height: 450px;
    }

    .main-coin {
        width: 220px;
    }

    .coin {
        width: 95px;
        height: 95px;
    }

    .coin img {
        width: 48px;
    }

    .roadmap::before {
        left: 20px;
    }

    .roadmap-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px;
        padding-right: 0;
        text-align: left !important;
    }

    .roadmap-item::before {
        left: 9px !important;
    }

    .section-title h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .hero h1 {
        font-size: 47px;
    }

    .hero p {
        font-size: 16px;
        line-height: 25px;
    }

    .hero-btn {
        justify-content: center;
    }

    .theme-btn {
        width: 100%;
    }

    .hero-image {
        height: 430px;
    }

    .circle {
        width: 260px;
        height: 260px;
    }

    .circle::before {
        width: 330px;
        height: 330px;
    }

    .main-coin {
        width: 170px;
    }

    .coin {
        width: 80px;
        height: 80px;
    }

    .coin h6 {
        font-size: 13px;
    }

    .coin img {
        width: 38px;
    }

    .section-title h2 {
        font-size: 25px;
    }
    .section-title {
        margin-top: 20px;
    }
    .about p {
        font-size: 15px;
    }

    .about-img {
        width: 280px;
    }

    .token-circle {
        width: 280px;
        height: 280px;
    }

    .token-circle img {
        width: 160px;
    }
}

.newsletter {
    display: flex;
    margin-top: 25px;
    position: relative;
}

.newsletter input {
    width: 100%;
    height: 60px;
    background: #131313;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50px;
    outline: none;
    padding: 0 70px 0 25px;
}

.newsletter button {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8d76b, #c68e14);
    color: #111;
    position: absolute;
    right: 3px;
    top: 3px;
    transition: 0.4s;
    font-size: 18px;
}

.newsletter button:hover {
    transform: rotate(20deg);
}

.contact-info p {
    color: #bdbdbd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    width: 40px;
    height: 40px;
    background: #151515;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .newsletter {
        margin-bottom: 25px;
    }

    .footer-title {
        margin-top: 10px;
    }

    .footer-logo {
        width: 75px;
    }
}

.tokenomics-section {
    position: relative;
    background: #080808;
    overflow: hidden;
}

.tokenomics-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 191, 0, 0.18), transparent 70%);
    left: -180px;
    top: -180px;
}

.token-card {
    position: relative;
    background: linear-gradient(145deg, #141414, #090909);
    border: 1px solid rgba(255, 191, 0, 0.15);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.token-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 191, 0, 0.08), transparent);
    animation: shine 5s linear infinite;
}

.token-card-header {
    padding: 28px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.token-card-header h3 {
    color: #fff;
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.token-table {
    padding: 20px 20px;
}

.token-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.token-row:last-child {
    border: none;
}

.token-row span {
    color: #bdbdbd;
}

.token-row strong {
    color: #fff;
}

.live {
    color: #ffbf00;
}

@keyframes shine {
    100% {
        transform: translateX(200%);
    }
}

@media (max-width: 991px) {
    .token-center {
        width: 150px;
        height: 150px;
    }

    .token-center img {
        width: 110px;
    }
}

@media (max-width: 576px) {
    .token-center {
        width: 120px;
        height: 120px;
    }

    .token-center img {
        width: 85px;
    }
    .token-card-header h3 {
        font-size: 25px;
    }

}

/* 
.token-chart-card {
    position: relative;
    height: 650px;
    border-radius: 35px;
    overflow: hidden;
    background: linear-gradient(135deg, #111, #1a1508);
    border: 1px solid rgba(255, 193, 7, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.chart-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3), transparent 70%);
    filter: blur(25px);
    animation: pulseGlow 3s infinite alternate;
}

#tokenomicsChart {
    width: 100%;
    max-width: 620px;
    z-index: 2;
}

.chart-center {
    position: absolute;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: #111;
    border: 8px solid #ffbf00;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow:
        0 0 30px rgba(255, 193, 7, 0.45),
        inset 0 0 20px rgba(255, 193, 7, 0.25);
}

.chart-center img {
    width: 105px;
    animation: tokenFloat 3s ease-in-out infinite;
}

@keyframes tokenFloat {
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

@keyframes pulseGlow {
    from {
        transform: scale(0.9);
        opacity: 0.5;
    }
    to {
        transform: scale(1.15);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .token-chart-card {
        height: 520px;
    }

    .chart-center {
        width: 120px;
        height: 120px;
    }

    .chart-center img {
        width: 75px;
    }
}

@media (max-width: 576px) {
    .token-chart-card {
        height: 420px;
    }

    .chart-center {
        width: 95px;
        height: 95px;
        border-width: 5px;
    }

    .chart-center img {
        width: 58px;
    }
} */

.token-chart-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
}

#tokenomicsChart {
    width: 100%;
    max-width: 560px;
    margin: auto;
}

.chart-center {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #111;
    border: 8px solid #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.chart-center img {
    width: 95px;
}

@media (max-width: 768px) {
    .chart-center {
        width: 110px;
        height: 110px;
        top: 45%;
    }

    .chart-center img {
        width: 65px;
    }
}


.apexcharts-legend-text{
    font-size: 15px !important;
    font-weight: 500 !important;
    fill: #fff !important;
}