html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:#050816;
    color:white;
    font-family:Inter,sans-serif;
    overflow-x:hidden;
    position:relative;
}

.navbar{
    position:fixed;
    top:20px;
    left:50%;

    transform:translateX(-50%);

    width:90%;

    padding:20px 40px;

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

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

    background:
        rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border-radius:20px;

    z-index:9999;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#00D4FF;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    position:relative;
    color:white;
    text-decoration:none;
    transition:.35s;
}

.menu a:hover{
    color:#00D4FF;

    text-shadow:
        0 0 10px #00D4FF,
        0 0 20px #00D4FF,
        0 0 40px #00D4FF;
}

.menu a::after{

    content:"";

    position:absolute;

    bottom:-8px;
    left:0;

    width:0;
    height:2px;

    background:#00D4FF;

    transition:.3s;
}


.menu a:hover::after{

    width:100%;
}

.hero{
    min-height:100vh;

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

    padding:40px 50px;
}

.hero-content{
    max-width:650px;
    width:50%;
}

.hero-image{
    width:45%;
    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    transform:translateX(-20px);
}

.hero h1{
    font-size:90px;
    line-height:.9;
    margin:20px 0;

    text-shadow:
        0 0 20px rgba(255,255,255,.15),
        0 0 40px rgba(0,212,255,.15);
}

.tag{
    color:#00D4FF;
    letter-spacing:3px;
}

.hero p{
    opacity:.8;
    line-height:1.8;
}

.buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-primary{

    padding:16px 28px;

    border-radius:14px;

    text-decoration:none;

    color:#050816;

    font-weight:700;

    background:
    linear-gradient(
        135deg,
        #00D4FF,
        #7B61FF
    );

    transition:.35s;

    box-shadow:
        0 0 25px rgba(0,212,255,.3);
}

.btn-primary:hover{

    transform:
        translateY(-4px);

    box-shadow:
        0 0 35px rgba(0,212,255,.5);
}

.btn-outline{

    padding:16px 28px;

    border-radius:14px;

    text-decoration:none;

    color:white;

    border:
        1px solid rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.04);

    backdrop-filter:blur(10px);

    transition:.35s;
}

.btn-outline:hover{

    transform:
        translateY(-4px);

    border-color:#00D4FF;

    color:#00D4FF;

    box-shadow:
        0 0 20px rgba(0,212,255,.15);
}

.buttons button{
    padding:16px 28px;
    border:none;
    border-radius:12px;
    background:#00D4FF;
    cursor:pointer;
    font-weight:600;
}

.outline{
    background:transparent !important;
    border:1px solid #00D4FF !important;
    color:white;
}

.hero-image img{
    width:850px;
    max-width:none;
    border-radius:30px;
    filter:
        drop-shadow(0 0 40px #00D4FF)
        drop-shadow(0 0 80px #7B61FF);
}


.avatar-glow{
    position:absolute;
    z-index:1;

    width:800px;
    height:800px;

    background:
    radial-gradient(
        circle,
        rgba(0,212,255,.25),
        rgba(123,97,255,.15),
        transparent 70%
    );

    filter:blur(100px);

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}


#avatar{
    position:relative;
    z-index:2;

    left:-90px;
}

/*.scroll-indicator{
    position:absolute;
    bottom:40px;
    left:50%;

    transform:translateX(-50%);
}*/

.scroll-indicator span{
    display:block;

    width:2px;
    height:70px;

    background:
    linear-gradient(
        transparent,
        #00D4FF
    );

    animation:
        scrollMove 2s infinite;
}

@keyframes scrollMove{

    0%{
        opacity:0;
        transform:translateY(0);
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:translateY(20px);
    }

}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
    max-width:500px;
}

.stats div{
    text-align:left;
}

.stats h3{
    margin:0;
    font-size:38px;
    color:#00D4FF;
}

.stats p{
    margin-top:8px;
    opacity:.7;
}

.noise{
    position:fixed;
    inset:0;
    pointer-events:none;

    background-image:
    radial-gradient(
        rgba(255,255,255,.05) 1px,
        transparent 1px
    );

    background-size:4px 4px;

    opacity:.05;
}

.grid-bg{
    position:fixed;
    inset:0;

    pointer-events:none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );

    background-size:50px 50px;

    z-index:-2;
}

#particles-bg{
    position:fixed;
    inset:0;
    z-index:0;
}

.navbar,
.hero{
    position:relative;
    z-index:10;
}

#particles-bg canvas{
    width:100%;
    height:100%;
}

.cursor-glow{
    position:fixed;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,212,255,.12),
        transparent 70%
    );

    pointer-events:none;

    transform:
    translate(-50%,-50%);

    z-index:-10;
}

.tech-stack{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:40px;
    max-width:500px;
}

.tech-stack span{
    padding:10px 18px;

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

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border-radius:999px;

    font-size:14px;

    color:#B8C7FF;
}

.projects{
    margin-top:200px;

    padding:0 120px;

    position:relative;
    z-index:20;
}

.project-card,
.featured-project{
    position:relative;
    z-index:20;
}

.section-title{
    font-size:60px;
    font-weight:700;
    margin-bottom:60px;
}

.project-grid{
    display:grid;
    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}

.project-card{

    padding:40px;

    border-radius:30px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.4s;
}

.project-card:hover{

    transform:
    translateY(-10px);

    border-color:#00D4FF;

    box-shadow:
    0 0 50px rgba(0,212,255,.15);
}

.project-card span{
    color:#00D4FF;
    font-size:14px;
}

.project-card h3{
    margin:15px 0;
    font-size:32px;
}

.project-card p{
    opacity:.75;
    line-height:1.8;
}

.project-card{

    overflow:hidden;

    border-radius:24px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.4s;
}

.project-card:hover{

    transform:
    translateY(-10px);

    border-color:#00D4FF;

    box-shadow:
    0 20px 60px
    rgba(0,212,255,.15);
}

.featured-project::before{

    content:"FEATURED PROJECT";

    position:absolute;

    top:25px;
    right:25px;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(0,212,255,.15);

    color:#00D4FF;

    font-size:12px;

    z-index:10;

    letter-spacing:2px;
}

.project-card img{
    width:100%;
    height:280px;

    object-fit:cover;
    object-position:top;

    display:block;
}

.project-card:hover img{
    transform:scale(1.05);
}

.project-info{
    padding:30px;
}

.project-tags{
    display:flex;
    gap:10px;
    margin-top:20px;
    flex-wrap:wrap;
}

.project-tags span{
    padding:8px 14px;

    border-radius:999px;

    background:
    rgba(0,212,255,.1);

    color:#00D4FF;

    font-size:12px;
}

.featured-project{
    position:relative;

    overflow:hidden;

    border-radius:32px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    margin-bottom:40px;

    transition:.5s;
}

.featured-project:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 30px 80px
    rgba(0,212,255,.15);
}

.featured-project img{

    width:100%;
    height:500px;

    object-fit:cover;

    display:block;

    transition:.8s;
}

.featured-project:hover img{

    transform:
    scale(1.04);
}

.featured-project .project-info{

    padding:40px;
}

.project-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}

.expertise{
    padding:120px 8%;
}

.expertise-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;
}

.expertise-card{

    padding:40px;

    border-radius:30px;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.4s;
}

.expertise-card:hover{

    transform:
    translateY(-10px);

    border-color:#00D4FF;

    box-shadow:
    0 20px 60px
    rgba(0,212,255,.15);
}

.icon{
    font-size:48px;
    margin-bottom:20px;
}

.expertise-card h3{

    font-size:32px;

    margin-bottom:20px;
}

.expertise-card p{

    opacity:.8;

    line-height:1.8;
}

.orbit{
    position:absolute;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

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

    backdrop-filter:blur(20px);

    color:#00D4FF;

    font-size:14px;
    font-weight:600;

    z-index:5;
}

.orbit-1{
    top:5%;
    left:50%;
    transform:translateX(-50%);
}

.orbit-2{
    top:30%;
    left:-20px;
}

.orbit-3{
    top:30%;
    right:-20px;
}

.orbit-4{
    bottom:15%;
    left:10%;
}

.orbit-5{
    bottom:15%;
    right:10%;
}

.orbit-ring{
    position:absolute;

    width:650px;
    height:650px;

    border-radius:50%;

    border:1px solid rgba(0,212,255,.12);

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    z-index:1;
}

.identity-card{

    position:absolute;

    bottom:-60px;
    left:50%;

    transform:translateX(-50%);

    padding:18px 30px;

    border-radius:20px;

    background:
        rgba(10,15,30,.7);

    backdrop-filter:
        blur(30px);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 10px 40px rgba(0,0,0,.3);

    z-index:10;
}

.identity-card span{
    color:#00D4FF;
    font-weight:700;
}

.avatar-wrapper{
    position:relative;
    width:650px;
    height:750px;
    transform:translateX(-40px);
}

.avatar{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:contain;

    transition:
        opacity .8s ease,
        transform .8s ease,
        filter .8s ease;

    z-index:2;
}

.normal-avatar{
    opacity:1;
}

.ai-avatar{
    opacity:0;

    filter:
        drop-shadow(0 0 30px #00D4FF)
        drop-shadow(0 0 80px #7B61FF);
}

.hero-image:hover .normal-avatar{
    opacity:0;
    transform:scale(1.05);
}

.hero-image:hover .ai-avatar{
    opacity:1;
    transform:scale(1.05);
}

.hero-image:hover .avatar-glow{

    transform:
        translate(-50%,-50%)
        scale(1.3);

    opacity:1;
}

.hero-image:hover .orbit-ring{

    border-color:
    rgba(0,212,255,.4);
}

.about-section{
    padding:120px 8%;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-tag{
    color:#00D4FF;
    letter-spacing:3px;
}

.about-text h2{
    font-size:58px;
    line-height:1.1;
    margin:20px 0;
}

.about-text p{
    opacity:.8;
    line-height:2;
}

.timeline{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.timeline-item{
    padding:25px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    border-radius:20px;

    backdrop-filter:blur(10px);

    transition:.3s;
}

.timeline-item:hover{
    transform:translateX(10px);

    border-color:#00D4FF;
}

.timeline-item span{
    color:#00D4FF;
    font-size:22px;
    font-weight:700;
}

.timeline-item p{
    margin-top:10px;
}

.expertise-section{
    padding:120px 8%;
}

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

    gap:30px;
}

.expertise-card{
    padding:35px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.08);

    border-radius:25px;

    backdrop-filter:blur(20px);

    transition:.4s;
}

.expertise-card:hover{

    transform:
        translateY(-10px);

    border-color:#00D4FF;

    box-shadow:
        0 0 40px rgba(0,212,255,.15);
}

.expertise-card h3{
    color:#00D4FF;
    margin-bottom:15px;
}

.expertise-card p{
    opacity:.8;
    line-height:1.8;
}

.contact-section{
    padding:140px 100px;
    text-align:center;
}

.contact-tag{
    color:#00D4FF;
    letter-spacing:3px;
}

.contact-section h2{
    font-size:64px;
    margin:20px 0;
}

.contact-section p{
    max-width:800px;
    margin:auto;
    opacity:.8;
    line-height:1.8;
}

.contact-grid{
    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.contact-card{

    padding:35px;

    border-radius:24px;

    text-decoration:none;

    color:white;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.4s;
}

.contact-card:hover{

    transform:
    translateY(-10px);

    border-color:#00D4FF;

    box-shadow:
    0 0 40px rgba(0,212,255,.15);
}

.contact-card h3{
    margin-bottom:10px;
}

.contact-card span{
    opacity:.7;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-icon{

    width:48px;
    height:48px;

    border-radius:14px;

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

    background:
    linear-gradient(
        135deg,
        #00D4FF,
        #7B61FF
    );

    color:white;
    font-weight:800;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text strong{
    font-size:18px;
}

.logo-text small{
    opacity:.6;
    font-size:11px;
    letter-spacing:2px;
}

.nav-status{

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(255,255,255,.05);

    font-size:13px;
}

.dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#00ff88;

    box-shadow:
    0 0 12px #00ff88;
}

.footer{

    padding:80px 0;

    text-align:center;

    border-top:
        1px solid rgba(255,255,255,.08);

    margin-top:120px;
}

.footer-logo{

    font-size:32px;
    font-weight:700;

    color:#00D4FF;

    margin-bottom:20px;
}

.footer p{

    opacity:.7;
}

.footer span{

    opacity:.5;
    font-size:14px;
}

.icon{

    width:70px;
    height:70px;

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

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            rgba(0,212,255,.15),
            rgba(123,97,255,.15)
        );

    border:
        1px solid rgba(255,255,255,.08);

    margin-bottom:25px;
}

.icon i{

    font-size:32px;

    color:#00D4FF;

    transition:.3s;
}

.expertise-card:hover .icon i{

    transform:scale(1.15);

    color:white;
}

.expertise-card:hover .icon{

    box-shadow:
        0 0 30px rgba(0,212,255,.3);
}