*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background: linear-gradient(-45deg,#0f2027,#203a43,#2c5364,#1c1c1c);
    background-size:400% 400%;
    animation: gradient 10s ease infinite;
    color:white;
    height:100vh;
    overflow:hidden;
}

@keyframes gradient{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

/* NAVBAR */
nav{
    height:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 50px;
}

nav h1{
    color:#00eaff;
    font-size:26px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav ul li{
    cursor:pointer;
    position:relative;
}

nav ul li::after{
    content:'';
    width:0;
    height:2px;
    background:#00eaff;
    position:absolute;
    bottom:-6px;
    left:0;
    transition:0.3s;
}

nav ul li:hover::after{
    width:100%;
}

/* MAIN ABOUT */
.about{
    height:calc(100vh - 70px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.about-card{
    display:flex;
    gap:40px;
    align-items:center;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:40px;
    max-width:1000px;
    width:100%;
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* IMAGE */
.about-img img{
    width:220px;
    height:220px;
    border-radius:50%;
    border:4px solid #00eaff;
}

/* TEXT */
.about-text h2{
    font-size:38px;
    margin-bottom:10px;
}

.about-text h2 span{
    color:#00eaff;
}

.about-text p{
    font-size:15px;
    line-height:1.7;
    color:#e0e0e0;
    max-width:520px;
}

/* INFO GRID */
.info{
    margin-top:15px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.info div{
    font-size:14px;
    background:rgba(255,255,255,0.08);
    padding:10px;
    border-radius:12px;
}

/* STATS */
.stats{
    display:flex;
    gap:20px;
    margin-top:20px;
}

.stat{
    flex:1;
    text-align:center;
    background:rgba(255,255,255,0.08);
    padding:15px;
    border-radius:15px;
}

.stat h3{
    color:#00eaff;
}

/* BUTTON */
.btn{
    margin-top:20px;
    padding:12px 30px;
    border:none;
    border-radius:50px;
    background:linear-gradient(45deg,#00eaff,#00ffa2);
    cursor:pointer;
    font-size:15px;
    box-shadow:0 0 20px rgba(0,234,255,0.5);
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-card{
        flex-direction:column;
        text-align:center;
    }
    .info{
        grid-template-columns:1fr;
    }
    .stats{
        justify-content:center;
        flex-wrap:wrap;
    }
}
a {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
}

a:hover {
    color: #00eaff;
}
