*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    list-style: none;    
}

:root{
    
    --bg-color: #0b0f1a;
    --bg-color2:  rgba(77,163,255,0.6); 
    --bg-color3: #02050f; 
    --bg-color4: #1a1a1a; 
    --bg-color5: #ff003c66; 
    --text-color: #4da3ff;
    --text-color2: #fff;
    --text-color3: #aaa;
    --text-color4:   #ff003c;
    --text-color5:  #00ffc8;
    --main-color:   rgb(219, 21, 21);
    --hover-color:  rgba(77,163,255,0.6); 
    --hover-color2: rgba(77,163,255,0.6);
    --shadow: rgb(207, 205, 205);
    --black: black;
    --gap: 2rem;
    --gap1: 1rem;
    --gap2: 4rem;
   
    
}

body{
    background:  #050816;
    color: var(--text-color2);
    overflow-x:hidden
}
header{
    display:flex;
    justify-content:space-between;
    align-items:center;padding:20px 60px;
    position:fixed;
    width:100%;
    top:0;
    background:rgba(5,8,22,0.85);
    backdrop-filter:blur(10px);
    z-index:1000;
}
.moveup{
    padding-bottom: 15px;
}
.logo{
    font-weight:800;
    font-size:25px;
    color:var(--text-color);
}
nav{
    display:flex;
}
nav a{
    margin:0 15px;
    text-decoration:none;
    color: var(--text-color3);
    transition:.3s;
}
nav a:hover{
    color: var(--hover-color);
}
.cta{
    padding:10px 20px;
    border:1px solid  var(--text-color);
    border-radius:30px;
    background:transparent;
    color: var(--text-color2);
    cursor:pointer;
}
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}
.sidebar{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height: 100%;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
    padding:40px 20px;
    transition:.4s;
    z-index:2000;
}
.sidebar.active{
    right:0;
}
.sidebar a{
    display:block;
    margin:20px 0;
    color: var(--text-color2);
    text-decoration:none;
}
.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px;
    position:relative;
    margin-top: 2rem;
}
.hero::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#002fff33,transparent);
    top:-100px;
    left:-100px;
    filter:blur(80px);
}
.hero-text{
    max-width:550px;
}
.hero-text h3{
    font-weight:400;
    margin-bottom:10px;
    color: var(--text-color3);
}
.hero-text span{
    color:  var(--text-color);
}
.hero-text h1{
    font-size: 65px;
    font-weight:800;
    margin-bottom:20px;
}
.hero-text p{
    color:var(--text-color3);
    margin-bottom:30px;
}
.buttons{
    display:flex;
    gap: var(--gap);
}
.btn-primary{
    padding:14px 30px;
    background: var(--bg-color2);
    border:none;
    border-radius:30px;
    color:var(--text-color2);
    cursor:pointer;
    box-shadow:0 0 20px var(--bg-color2);
}
.btn-secondary{
    padding:14px 30px;
    border:1px solid var(--text-color3);
    border-radius:30px;
    background:transparent;
    color:var(--text-color2);
    cursor:pointer;
}
.hero-img img{
    width:420px;
    filter:drop-shadow(0 0 30px var(--bg-color2));
}
.hero-top{
    display: none;
}
.hero-top img{
   display: none;
}
.section{
    padding:0px 50px;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}
.card{
    background: var(--bg-color3);
    padding:25px;
    border-radius:15px;
    border:1px solid var(--bg-color4);
    transition:.3s;
}
.card:hover{
    border:1px solid var(--hover-color);
    transform:translateY(-5px);
}
.impact{
    text-align:center;
    padding:80px 60px
}
.finall-cta{
    margin-bottom: 3rem;
}
.impact h2{
    font-size:48px;
    margin: 20px;
    color: var(--text-color);
}
.impact-grid{
    display:flex;
    justify-content:
    center;gap:30px;
    flex-wrap:wrap;
}
.impact-box{
    padding:40px;
    min-width:220px;
    background: var(--bg-color3);
    border-radius:20px;
    border:1px solid var(--bg-color3);
    transition:.3s;
}
.impact-box h1{
    font-size:48px;
    color:var(--text-color);
}
.impact-box span{
    color:var(--text-color3);
}
.impact-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px var(--hover-color2);
}
.highlight{
    border:1px solid var(--bg-color2);
    box-shadow:0 0 40px var(--hover-color2);
}
.finall-cta h2{
    font-family: 27px;
}
.finall-cta p{
    color:var(--text-color3);
    margin:20px 0;
    font-size: 15px;
}
.footer{
    background: var(--bg-color3);
    padding:80px 60px 30px;
    border-top:1px solid var(--bg-color4);
}
.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}
.footer h2{
    color: var(--text-color);
    font-weight:800;
    font-size: 40px;
}
.footer p{
    color: var(--text-color3);
    margin:15px 0;
    line-height:1.6;
}
.footer-links h4,.footer-cta h4{
    margin-bottom:15px;
}
.footer-links a{
    display:block;
    margin:10px 0;
    color: var(--text-color3);
    text-decoration:none;
    transition:.3s;
}
.footer-links a:hover{
    color:var(--hover-color);
    transform:translateX(5px);
}
.footer-socials{
    margin-top:15px;
}
.footer-socials a{
    display:inline-block;
    margin-right:10px;
    font-size:20px;
    color:var(--text-color3);
    transition:.3s;
}
.footer-socials a:hover{
    color:var(--hover-color);
    transform:scale(1.2);
}
.footer-cta .btn{
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background: var(--bg-color2);
    color: var(--text-color2);
    border-radius:30px;
    text-decoration:none;
    box-shadow:0 0 15px var(--hover-color);
    transition:.3s;
}
.footer-cta .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px var(--bg-color2);
}
.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid var(--bg-color3);
    color: var(--text-color3);
    font-size:14px;
}
.footer-bottom a{
    color: var(--text-color);
    text-decoration: none;
}
.about-hero{
    text-align:center;
    margin-top: 80px;
    padding: 30px;
}
.about-hero h1{
    font-size:50px;
    margin-bottom:20px;
}
.about-hero span{
    color: var(--text-color);
}
.about-hero p{
    max-width:700px;
    margin:auto;
    font-size: 15px;
    color: var(--text-color3);
}
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-top:30px;
}
.about-img img{
    width:100%;
    max-width:400px;
    filter:drop-shadow(0 0 30px var(--hover-color));
}
.about-text h2{
    margin-bottom:20px;
}
.about-text p{
    color: var(--text-color3);
    line-height:1.7;
    margin-bottom:20px;
}
.stats{
    display:flex;
    gap:30px;
    margin-top:30px;
}
.stat{
    background: var(--bg-color3);
    padding:20px;
    border-radius:10px;
    text-align:center;
    border:1px solid var(--bg-color4)}
.stat h3{
    color: var(--text-color);
}
.timeline{
    padding: 50px;
    margin-top:0px;
}
.timeline h2{
    margin-bottom: 10px;
}
.timeline-item{
    margin-bottom:30px;
    padding-left:20px;
    border-left:2px solid var(--bg-color2);
}
.timeline-item h4{
    margin-bottom:5px;
}
.timeline-item p{
    color:var(--text-color3);
}
.contact-hero{
    margin-top: 5rem;
    text-align:center;
    padding: 30px;

}
.contact{
    margin-bottom: 3rem; 
}
.contact-hero h1{
    font-size:60px;
    margin-bottom:20px;
}
.contact-hero span{
    color:var(--text-color);
}
.contact-hero p{
    color:var(--text-color3);
    max-width:600px;
    margin:auto;
}
.contact-options{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
 gap:30px;
 margin-top:80px;
}
.option{
 background: var(--bg-color3);
 padding:30px;
 border-radius:20px;
 border:1px solid var(--bg-color4);
 text-align:center;
 transition:.3s;
 position:relative;
 overflow:hidden;
}
.option i{
 font-size:40px;
 color: var(--text-color);
 margin-bottom:15px;
}
.option h3{
    margin-bottom:10px;
}
.option p{
    color:var(--text-color3);
    font-size:14px;
    margin-bottom:20px;
}
.option a{
 display:inline-block;
 padding:10px 20px;
 border-radius:30px;
 background: var(--bg-color2);
 color: var(--text-color2);
 text-decoration:none;
 box-shadow:0 0 20px var(--hover-color);
 transition:.3s;
}
.option:hover{
 transform:translateY(-10px) scale(1.03);
 border-color: var(--hover-color);
}
.option a:hover{
 box-shadow:0 0 30px var(--hover-color);
}
.badge{
 position:absolute;
 top:15px;
 right:15px;
 background: var(--bg-color2);
 padding:5px 10px;
 border-radius:20px;
 font-size:12px;
}
.work-hero{
    text-align:center;
    padding: 20px;   
}
.work{
    padding-bottom: 5rem;
}
.work-hero h1{
    margin-top: 5rem;
    font-size:60px;
    margin-bottom:20px;
}
.work-hero span{
    color: var(--text-color);
}
.work-hero{
    color: var(--text-color3);
    max-width:600px;
    margin:auto;
}
.filters{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:40px;
    flex-wrap:wrap;
}
.filter-btn{
    padding:10px 20px;
    border:1px solid var(--bg-color4);
    border-radius:30px;
    background: var(--bg-color4);
    color: var(--text-color3);
    cursor:pointer;
    transition:.3s;
}
.filter-btn.active,
.filter-btn:hover{
 border-color: var(--text-color);
 color: var(--text-color2)
}
.grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
 gap:25px;
 margin-top:60px;
}
.learn-hero{
    padding:140px 8% 60px;
    text-align:center;
}

.learn-hero h1{

    font-size:2.5rem;
}

.learn-hero p{
    color:var(--text-color3);
    margin-top:10px;
}


.learn-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    padding:0 8% 100px;
}


.learn-card{
    background:#0b1228;
    border-radius:15px;
    padding:25px;
    border:1px solid rgba(77,163,255,0.1);
    transition:0.3s;
}

.learn-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 25px rgba(77,163,255,0.2);
}

.learn-card i{
    font-size:35px;
    color: var(--text-color);
    margin-bottom:15px;
}

.learn-card h3{
    margin-bottom:10px;
}

.learn-card p{
    color: var(--text-color3);
    font-size:14px;
    margin-bottom:10px;
}

.learn-card ul{
    padding-left:18px;
    color: var(--text-color3);
    font-size:14px;
}

.steps div{
    margin-bottom:8px;
}

.community{
    padding:100px 8%;
}

.community h2{
    text-align:center;
  
    font-size:2.2rem;
}

.community .sub{
    text-align:center;
    color: var(--text-color3);
    margin:10px 0 40px;
}

.community-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.block{
    margin-bottom:25px;
}

.block h3{
    margin-bottom:10px;
}

.block ul{
    padding-left:18px;
    color: var(--text-color3);
}

.community-cta{
    background:#0b1228;
    padding:30px;
    border-radius:15px;
    text-align:center;
    border:1px solid rgba(77,163,255,0.1);
}

.community-cta p{
    color: var(--text-color3);
    margin:10px 0 20px;
}


.com-btn{
    display:block;
    margin:10px 0;
    padding:12px;
    border-radius:25px;
    text-decoration:none;
    font-size:14px;
}
.btn{
    padding:12px 24px;
    background: var(--text-color);
    border:none;
    cursor:pointer;
    box-shadow:0 0 10px rgba(77,163,255,0.4);
    transition:0.3s;
    color: var(--text-color2);
    border-radius: 5px;
}

.btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 0 30px var(--hover-color2);
}
.tg{
    background:#229ED9;
    color:#fff;
}

.wa{
  
    color:#000;
}


.deep-dive{
    padding:100px 8%;
}

.deep-dive h2{
    text-align:center;
  
    margin-bottom:40px;
}

.deep-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.deep-card{
    background:#0b1228;
    padding:20px;
    border-radius:12px;
    border:1px solid rgba(77,163,255,0.1);
}

.deep-card p{
    color:var(--text-color3);
}
.top{
    padding-top: 6rem;
}
.section{
    padding:60px 8%;
}
.section h2{
    padding-bottom: 15px;
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}
.link a{
    color: var(--text-color2);
    background: var(--text-color);
    text-align: center;
    border-radius: 10px;
    padding: 15px 4%;
    font-size: 20px;
}
.card{
    background:#0b1228;
    padding:10px;
    border-radius:10px;
}

iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius: 1rem;
}
@media(max-width:900px){
    header{
        padding:20px;
    }
    nav{
        display:none;
    }
    .menu-toggle{
        display:block;
    }
    .hero{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding:20px;
        margin-top: 8rem;
    }
    .hero-img img{
        display: none;
        
    }
    .hero-top{
        display: block;
    }
    .hero-top img{
        margin-top: -2rem;
        display: block;
        width: 310px;
    }   
 
    .hero-text h1{
        font-size: 40px;
    }
    .section{
        padding:80px 20px;
    }
    .impact{
    text-align:center;
    padding:0;
    }
    .finall-cta h2{
        font-family: 27px;
    }



}

@media(max-width:768px){
   
    .hero{
        height: auto;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding: 30px;
        position:relative;
    }
    .top-btn{
        display: none;
    }
   .hero::before{
        width:400px;
    }
    .hero-top img{
        margin-top: -4rem;
        
    }   
    .buttons{
        justify-content: center;
    }
    .footer{
        padding:60px 20px 20px;
    }
    .about-hero h1{
        font-size:40px;
    }
    .about-hero p{
        font-size: 12px;
        color: var(--text-color3);
    }
    .about-img img{
        margin-top: -6rem;
       
    }
    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
    .stats{
        justify-content:center;
        flex-wrap:wrap;
    }
    .contact-hero h1{
        font-size:50px;
     
    }
    .contact{
        margin-top: -3rem;
        
    }
    .work-hero h1{
        margin-top: 5rem;
        font-size: 40px;
        margin-bottom:20px;
    }
     .hero-content{
        align-items:center;
    }
    .learn-hero h1{
        font-size: 1.5rem;
    }
     .community-grid{
        grid-template-columns:1fr;
    }
    .community-content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .split{
        flex-direction:column;
        text-align:center;
    }
}