*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:
    linear-gradient(135deg,#070816,#120b25,#1a1036);

    color:white;
    overflow-x:hidden;
}



nav{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 10%;

    backdrop-filter:blur(10px);

    background:rgba(0,0,0,0.2);

    border-bottom:1px solid rgba(255,255,255,0.1);
}

.logo{
    font-size:1.4rem;
    font-weight:bold;
    color:#00e5ff;
}

.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#00e5ff;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

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


.hero{
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:40px 20px;
}

.hero-content{
    max-width:800px;
}

.profile-img{
    width:190px;
    height:190px;

    border-radius:50%;
    object-fit:cover;

    border:5px solid #00e5ff;

    box-shadow:
    0 0 20px #00e5ff,
    0 0 60px rgba(0,229,255,0.3);

    margin-bottom:25px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:10px;
}

.hero span{
    color:#00e5ff;
}

.hero p{
    color:#c7c7c7;
    font-size:1.2rem;
    margin-bottom:35px;
}



.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:14px 30px;
    border-radius:50px;

    text-decoration:none;
    font-weight:bold;

    transition:0.3s;
}

.primary-btn{
    background:#00e5ff;
    color:black;

    box-shadow:
    0 0 15px rgba(0,229,255,0.4);
}

.primary-btn:hover{
    transform:translateY(-5px) scale(1.05);
}

.secondary-btn{
    border:2px solid #00e5ff;
    color:#00e5ff;
}

.secondary-btn:hover{
    background:#00e5ff;
    color:black;
}



.section{
    padding:90px 10%;
}

.section h2{
    text-align:center;
    margin-bottom:40px;

    font-size:2.5rem;

    color:#00e5ff;
}



.glass-card{
    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.1);

    backdrop-filter:blur(12px);

    border-radius:25px;

    padding:35px;

    line-height:1.8;

    box-shadow:
    0 0 25px rgba(0,0,0,0.2);
}



.skills-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.skill{
    padding:12px 22px;

    border-radius:30px;

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(0,229,255,0.3);

    transition:0.3s;
}

.skill:hover{
    background:#00e5ff;
    color:black;

    transform:translateY(-5px);
}



.projects-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:25px;
}

.project-card{
    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    padding:30px;

    transition:0.3s;
}

.project-card:hover{
    transform:translateY(-10px);

    border-color:#00e5ff;

    box-shadow:
    0 0 25px rgba(0,229,255,0.2);
}

.project-card h3{
    color:#00e5ff;
    margin-bottom:15px;
}



.social-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

    margin-bottom:35px;
}

.social-links a{
    color:#00e5ff;
    text-decoration:none;
    font-weight:bold;
}

.contact-form{
    max-width:650px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:18px;
}

input,
textarea{
    padding:16px;

    border:none;
    outline:none;

    border-radius:14px;

    background:rgba(255,255,255,0.07);

    color:white;

    font-size:1rem;
}

textarea{
    min-height:160px;
    resize:none;
}

button{
    padding:16px;

    border:none;
    border-radius:14px;

    background:#00e5ff;

    color:black;

    font-weight:bold;
    cursor:pointer;

    transition:0.3s;
}

button:hover{
    transform:translateY(-5px);

    box-shadow:
    0 0 25px rgba(0,229,255,0.4);
}


footer{
    text-align:center;
    padding:30px;

    color:#b0b0b0;
}


@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .hero p{
        font-size:1rem;
    }

    .profile-img{
        width:150px;
        height:150px;
    }

    .section{
        padding:70px 20px;
    }

    .section h2{
        font-size:2rem;
    }
}
