.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding:150px 0 100px;

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    right:-220px;

    top:-180px;

    border-radius:50%;

    background:radial-gradient(circle,rgba(59,130,246,.15),transparent 70%);

    z-index:0;

}

.hero-container{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:100px;

    align-items:center;

}

.hero-left{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(59,130,246,.12);

    border:1px solid rgba(59,130,246,.25);

    color:var(--primary-color);

    font-weight:600;

    margin-bottom:25px;

}

.hero-badge i{

    font-size:9px;

}

.hero-title{

    font-size:1.15rem;

    color:var(--primary-color);

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero-name{

    font-size:clamp(4rem,7vw,6rem);

    font-weight:800;

    line-height:1.08;

    color:#fff;

    margin-bottom:30px;

}

.hero-name span{

    white-space:nowrap;

    color:#fff;

}

.hero-description{

    max-width:650px;

    font-size:1.12rem;

    line-height:2;

    color:var(--text-secondary);

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-stats{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

}

.stat-card{

    min-width:170px;

    padding:24px;

    border-radius:20px;

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

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

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.35);

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

}

.stat-card h3{

    color:var(--primary-color);

    font-size:2rem;

    margin-bottom:8px;

}

.stat-card p{

    color:var(--text-secondary);

}

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}
.hero-image{

    position:relative;

    width:500px;

    height:500px;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.hero-glow{

    position:absolute;

    width:440px;

    height:440px;

    border-radius:50%;

    background:radial-gradient(circle,rgba(59,130,246,.28),transparent 72%);

    filter:blur(30px);

    animation:glow 5s ease-in-out infinite;

}

.hero-image img{

    width:380px;

    height:380px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid rgba(59,130,246,.25);

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    position:relative;

    z-index:5;

    animation:floatImage 5s ease-in-out infinite;

}

.tech{

    position:absolute;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#121722;

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

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 12px 35px rgba(0,0,0,.35);

    z-index:8;

    animation:floatTech 5s ease-in-out infinite;

}

.tech i{

    font-size:2rem;

    color:var(--primary-color);

}

.tech img{

    width:38px;

    height:38px;

    object-fit:contain;

}

.tech-python{

    top:25px;

    left:130px;

    animation-delay:0s;

}

.tech-html{

    top:70px;

    right:35px;

    animation-delay:.5s;

}

.tech-css{

    right:-5px;

    top:220px;

    animation-delay:1s;

}

.tech-js{

    bottom:70px;

    right:35px;

    animation-delay:1.5s;

}

.tech-mysql{

    bottom:20px;

    left:135px;

    animation-delay:2s;

}

.tech-flask{

    bottom:400px;

    right: 109px;

    animation-delay:2.5s;

}

.tech-git{

    top:220px;

    left:-5px;

    animation-delay:3s;

}

.tech-github{

    top:70px;

    left:35px;

    animation-delay:3.5s;

}

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    animation:bounce 2s infinite;

}

.scroll-indicator a{

    color:var(--text-secondary);

    font-size:1.5rem;

    transition:.3s;

}

.scroll-indicator a:hover{

    color:var(--primary-color);

}

@keyframes floatImage{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

@keyframes floatTech{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

@keyframes glow{

    0%,100%{

        transform:scale(1);

        opacity:.8;

    }

    50%{

        transform:scale(1.06);

        opacity:1;

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

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

    }

    60%{

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

    }

}

.tech-python{

    animation:orbit1 6s ease-in-out infinite;

}

.tech-html{

    animation:orbit2 6s ease-in-out infinite;

}

.tech-css{

    animation:orbit3 6s ease-in-out infinite;

}

.tech-js{

    animation:orbit4 6s ease-in-out infinite;

}

.tech-mysql{

    animation:orbit5 6s ease-in-out infinite;

}

.tech-flask{

    animation:orbit6 6s ease-in-out infinite;

}

.tech-git{

    animation:orbit7 6s ease-in-out infinite;

}

.tech-github{

    animation:orbit8 6s ease-in-out infinite;

}

@keyframes orbit1{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-15px);}

}

@keyframes orbit2{

    0%,100%{transform:translateX(0);}
    50%{transform:translateX(12px);}

}

@keyframes orbit3{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(15px);}

}

@keyframes orbit4{

    0%,100%{transform:translateX(0);}
    50%{transform:translateX(-12px);}

}

@keyframes orbit5{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-12px);}

}

@keyframes orbit6{

    0%,100%{transform:translateX(0);}
    50%{transform:translateX(-12px);}

}

@keyframes orbit7{

    0%,100%{transform:translateY(0);}
    50%{transform:translateY(12px);}

}

@keyframes orbit8{

    0%,100%{transform:translateX(0);}
    50%{transform:translateX(12px);}

}

@media(max-width:991px){

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;

        gap:70px;

    }

    .hero-left{

        order:2;

    }

    .hero-right{

        order:1;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .hero-image{

        width:380px;

        height:380px;

    }

    .hero-image img{

        width:300px;

        height:300px;

    }

    .hero-glow{

        width:340px;

        height:340px;

    }

}

@media(max-width:576px){

    .hero{

        padding:120px 0 80px;

    }

    .hero-name{

        font-size:2.8rem;

    }

    .hero-description{

        font-size:1rem;

    }

    .hero-image{

        width:300px;

        height:300px;

    }

    .hero-image img{

        width:230px;

        height:230px;

    }

    .hero-glow{

        width:260px;

        height:260px;

    }

    .tech{

        width:52px;

        height:52px;

    }

    .tech i{

        font-size:1.4rem;

    }

    .tech img{

        width:28px;

        height:28px;

    }

}