@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050816;
    color:white;
    overflow-x:hidden;
}

/* Background Glow */

body::before{
    content:'';
    position:fixed;
    width:600px;
    height:600px;
    background:#7b2cff;
    border-radius:50%;
    filter:blur(250px);
    top:-250px;
    left:-200px;
    opacity:.25;
}

body::after{
    content:'';
    position:fixed;
    width:500px;
    height:500px;
    background:#6d00ff;
    border-radius:50%;
    filter:blur(250px);
    right:-150px;
    bottom:-150px;
    opacity:.2;
}

.about-page{
    width:100%;
    min-height:100vh;
    padding:100px 10%;
}

.page-header{
    text-align:center;
    margin-bottom:70px;
}

.page-header h1{
    font-size:3rem;
    font-weight:700;
}


nav ul{

display:flex;
list-style:none;
gap:30px;

}

nav ul li a{

text-decoration:none;
color:white;
transition:.3s;

}

nav ul li a:hover{

color:#7c5cff;

}

header{

position:fixed;
top:0;
left:0;
width:100%;
padding:25px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(5,8,22,.6);
backdrop-filter:blur(20px);
z-index:1000;

}



.page-header p{
    color:#9b9b9b;
    margin-top:10px;
   
}

.about-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    width:350px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 0 30px rgba(123,44,255,.5);
}

.about-content{
    max-width:600px;
}

.small-title{
    color:#8f5cff;
    font-weight:600;
}

.about-content h2{
    font-size:2.5rem;
    margin:15px 0;
    line-height:1.2;
}

.about-content p{
    color:#c7c7c7;
    line-height:1.8;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:30px 0;
}

.info-grid span{
    color:#8f5cff;
    font-weight:600;
}

.info-grid p{
    color:white;
    margin-top:5px;
}

.btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    color:white;
    background:linear-gradient(90deg,#6d00ff,#a855f7);
    transition:.4s;
    box-shadow:0 0 25px rgba(123,44,255,.5);
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 40px rgba(123,44,255,.8);
}

.stats{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#0c1126;
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-8px);
    border-color:#7b2cff;
}

.stat-box h3{
    color:#8f5cff;
    font-size:2rem;
}

.stat-box p{
    margin-top:10px;
    color:#b9b9b9;
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}
@media (max-width:991px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-content{
        text-align:center;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:700px){

header{
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu-toggle{
    display:block;
    z-index:1001;
}

nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#050816;
    display:none;
    padding:20px 0;
}

nav.active{
    display:block;
}

nav ul{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.about-page{
    padding:140px 20px 60px;
}

.page-header h1{
    font-size:2.2rem;
}

.about-image{
    width:100%;
    max-width:300px;
}

.about-content h2{
    font-size:2rem;
}

.info-grid{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:1fr;
}

.btn{
    width:100%;
    text-align:center;
}

}
