/* ===================== GLOBAL ===================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f4f8ff;
    color:#222;
    overflow-x:hidden;
}
h1,h2,h3,h4,h5{
    font-family:'Montserrat',sans-serif;
    font-weight:800;
}
a{
    text-decoration:none;
}
.section-title{
    color:#0056b3;
    font-size:38px;
    margin-bottom:20px;
    text-transform:uppercase;
    position:relative;
}
.section-title::after{
    content:'';
    width:80px;
    height:4px;
    background:#e60023;
    display:block;
    margin:15px auto;
    border-radius:10px;
}

/* ===================== NAVBAR ===================== */
.med-navbar{
    background:rgba(0,40,90,0.92);
    backdrop-filter:blur(10px);
    padding:12px 0;
    box-shadow:0 3px 15px rgba(0,0,0,0.2);
}
.navbar-brand img{
    height:55px;
}
.nav-link{
    color:#fff !important;
    font-weight:500;
    margin:0 10px;
    transition:0.3s;
}
.nav-link:hover{
    color:#ff2d55 !important;
}
.navbar-toggler{
    border:none;
    font-size:32px;
    color:#fff !important;
}

/* ===================== BUTTONS ===================== */
.med-btn{
    background:linear-gradient(90deg,#e60023,#ff2d55);
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    font-weight:600;
    box-shadow:0 0 15px rgba(230,0,35,0.5);
    transition:0.4s;
}
.med-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 0 25px rgba(230,0,35,0.8);
}
.med-outline-btn{
    border:2px solid #0056b3;
    color:#0056b3;
    padding:11px 28px;
    border-radius:40px;
    font-weight:600;
}
.med-outline-btn:hover{
    background:#0056b3;
    color:#fff;
}

/* ===================== HERO ===================== */
.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#ffffff,#d9e8ff);
    overflow:hidden;
    padding-top:100px;
}
#particle-canvas{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}
.hero-content{
    position:relative;
    z-index:2;
}
.hero-section h1{
    font-size:58px;
    color:#003f88;
    line-height:1.2;
}
.hero-section h1 span{
    color:#e60023;
}
.hero-section p{
    font-size:20px;
    color:#444;
    margin-top:20px;
}
.hero-img{
    max-width:100%;
    animation:floatImage 4s ease-in-out infinite;
}
@keyframes floatImage{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* ===================== ABOUT ===================== */
.about-section{
    padding:90px 0;
    background:#fff;
}
.about-section p{
    font-size:17px;
    line-height:1.8;
    color:#444;
}
.about-points div{
    margin:12px 0;
    font-weight:600;
    color:#003f88;
}
.about-points i{
    color:#e60023;
    margin-right:8px;
}

/* ===================== SERVICES ===================== */
.services-section{
    padding:90px 0;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
}
.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}
.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,86,179,0.2);
}
.service-card i{
    font-size:55px;
    color:#e60023;
    margin-bottom:20px;
}
.service-card h4{
    color:#0056b3;
    margin-bottom:15px;
}

/* ===================== JOIN PLAN ===================== */
.join-plan-section{
    padding:90px 0;
    background:#0056b3;
    color:#fff;
}
.join-plan-section .section-title{
    color:#fff;
}
.plan-box{
    background:rgba(255,255,255,0.1);
    border-radius:20px;
    padding:40px 20px;
    backdrop-filter:blur(10px);
    transition:0.4s;
}
.plan-box:hover{
    transform:scale(1.05);
}
.plan-box h3{
    font-size:50px;
    color:#ffcc00;
}

/* ===================== BOARD SECTION ===================== */
.board-section{
    padding:90px 0;
    background:#fff;
}
.board-card{
    background:linear-gradient(135deg,#0056b3,#007bff);
    color:#fff;
    text-align:center;
    padding:30px 15px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.4s;
    height:100%;
}
.board-card:hover{
    transform:translateY(-8px);
}
.board-card h5{
    font-size:24px;
}
.board-card span{
    display:block;
    margin-top:10px;
    color:#ffcc00;
    font-weight:700;
}
.final-board{
    background:linear-gradient(135deg,#e60023,#ff2d55);
}

/* ===================== TOKENOMICS ===================== */
.token-section{
    padding:90px 0;
    background:linear-gradient(135deg,#edf4ff,#ffffff);
}
.token-box{
    background:#fff;
    border-radius:50%;
    width:150px;
    height:150px;
    margin:auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    font-size:20px;
    font-weight:600;
    color:#e60023;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}
.token-box span{
    font-size:12px;
    color:#0056b3;
    margin-top:8px;
    font-weight:600;
    text-align:center;
}

/* ===================== ROADMAP ===================== */
.roadmap-section{
    padding:90px 0;
    background:#0056b3;
    color:#fff;
}
.roadmap-section .section-title{
    color:#fff;
}
.timeline{
    max-width:800px;
    margin:auto;
}
.timeline-item{
    background:rgba(255,255,255,0.12);
    margin:20px 0;
    padding:25px;
    border-left:5px solid #ffcc00;
    border-radius:10px;
    font-size:18px;
}

/* ===================== CONTACT ===================== */
.contact-section{
    padding:90px 0;
    background:#ffffff;
}
.contact-section p{
    font-size:20px;
}
.contact-section h5{
    color:#0056b3;
}
.social-icons a{
    width:45px;
    height:45px;
    line-height:45px;
    display:inline-block;
    background:#0056b3;
    color:#fff;
    border-radius:50%;
    margin:0 8px;
    transition:0.4s;
}
.social-icons a:hover{
    background:#e60023;
    transform:translateY(-5px);
}

/* ===================== FOOTER ===================== */
footer{
    background:#002855;
    color:#fff;
    text-align:center;
    padding:20px;
    font-size:14px;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media(max-width:991px){
    .hero-section{
        text-align:center;
        padding:140px 0 60px;
    }
    .hero-section h1{
        font-size:36px;
    }
    .hero-section p{
        font-size:17px;
    }
    .hero-img{
        margin-top:40px;
    }
    .section-title{
        font-size:28px;
    }
    .token-box{
        width:120px;
        height:120px;
        font-size:24px;
    }
}

@media(max-width:576px){
    .navbar-brand img{
        height:45px;
    }
    .hero-section h1{
        font-size:28px;
    }
    .med-btn,.med-outline-btn{
        display:block;
        margin:10px auto;
        width:80%;
    }
    .plan-box h3{
        font-size:35px;
    }
}