*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:linear-gradient(135deg,#050816,#0f172a,#1e293b);
    color:#fff;
}

.navbar{
    position:sticky;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    background:rgba(5,8,22,.9);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(59,130,246,.2);
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#38bdf8;
}

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

.nav-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:#38bdf8;
}

header{
    text-align:center;
    padding:90px 20px;
}

header h1{
    font-size:58px;
    color:#38bdf8;
}

header p{
    margin-top:12px;
    font-size:22px;
    color:#cbd5e1;
}

section{
    max-width:1000px;
    margin:25px auto;
    padding:30px;
    background:rgba(255,255,255,.05);
    border-radius:20px;
    border:1px solid rgba(59,130,246,.1);
    backdrop-filter:blur(8px);
}

h2{
    color:#38bdf8;
    margin-bottom:20px;
}

.hire-btn,
.project-btn{
    display:inline-block;
    padding:12px 24px;
    margin-top:15px;
    border-radius:30px;
    text-decoration:none;
    color:white;
    font-weight:bold;
    background:linear-gradient(45deg,#0ea5e9,#2563eb);
    transition:.3s;
}

.hire-btn:hover,
.project-btn:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px rgba(59,130,246,.5);
}

.skill-box{
    display:inline-block;
    padding:12px 20px;
    margin:8px;
    border-radius:25px;
    background:linear-gradient(45deg,#0ea5e9,#2563eb);
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.skill-box:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 0 20px rgba(59,130,246,.5);
}

.education-card,
.research-card,
.project-card{
    background:#111827;
    padding:25px;
    border-radius:15px;
    margin-top:15px;
    transition:.3s;
}

.education-card:hover,
.research-card:hover,
.project-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(59,130,246,.25);
}

.education-card h3,
.research-card h3,
.project-card h3{
    color:#38bdf8;
    margin-bottom:10px;
}

.education-card p,
.research-card p,
.project-card p{
    color:#cbd5e1;
    line-height:1.7;
}

.strength-card{
    background:#111827;
    padding:25px;
    border-radius:15px;
    margin-top:15px;
    transition:.3s;
}

.strength-card:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px rgba(59,130,246,.25);
}

.strength-card p{
    margin:15px 0;
    line-height:1.8;
    color:#cbd5e1;
}

.strength-card strong{
    color:#38bdf8;
}


.contact p{
    margin:12px 0;
}

.contact a{
    color:#38bdf8;
    text-decoration:none;
}

.contact a:hover{
    color:#60a5fa;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:15px;
    }

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

    header h1{
        font-size:40px;
    }

    header p{
        font-size:18px;
    }

    section{
        margin:15px;
        padding:20px;
    }

    .skill-box{
        display:block;
        text-align:center;
    }
}