*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#090909;
    color:white;

}

a{
    text-decoration:none;
}

li{
    list-style:none;
}

img{
    width:100%;
}

header{

    position:fixed;
    width:100%;
    top:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(15px);

    z-index:999;

}

.navbar{

    width:90%;
    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo img{

    width:65px;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:white;

    transition:.3s;

}

.nav-links a:hover{

    color:#00BFFF;

}

.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

}

.hero{

    min-height:100vh;

    width:min(1200px,90%);
    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.hero-left{

    flex:1;

}

.hero-left h3{

    color:#00BFFF;

    font-size:24px;

}

.hero-left h1{

    font-size:65px;

    margin:15px 0;

}

.hero-left h2{

    font-size:35px;

    color:#ccc;

}

.hero-left p{

    margin-top:25px;

    line-height:1.8;

    max-width:600px;

    color:#bfbfbf;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

}

.btn{

    background:#00BFFF;

    color:white;

    padding:15px 35px;

    border-radius:8px;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-4px);

}

.secondary{

    background:#1f1f1f;

}

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:420px;

    border-radius:25px;

    border:5px solid #00BFFF;

    box-shadow:0 0 40px rgba(0,191,255,.5);

}

@media(max-width:900px){

.hero{

    flex-direction:column-reverse;

    text-align:center;

    padding-top:120px;

}

.hero-left h1{

    font-size:45px;

}

.hero-left h2{

    font-size:28px;

}

.hero-buttons{

    justify-content:center;

}

.nav-links{

    display:none;

}

.menu-btn{

    display:block;

}

}

/*================ ABOUT ================*/

.about{

    width:min(1200px,90%);
    margin:auto;
    padding:120px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:45px;
    color:#00BFFF;

}

.about-container{

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

}

.about-image{

    flex:1;

}

.about-image img{

    width:350px;
    border-radius:20px;
    border:4px solid #00BFFF;

}

.about-content{

    flex:2;

}

.about-content h3{

    font-size:34px;
    margin-bottom:20px;

}

.about-content p{

    line-height:1.9;
    color:#cfcfcf;
    margin-bottom:20px;

}

/*================ STATS ================*/

.stats{

    width:min(1200px,90%);
    margin:auto;
    display:grid;

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

    gap:25px;

    padding-bottom:120px;

}

.stat-card{

    background:#151515;

    border-radius:15px;

    padding:35px;

    text-align:center;

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(0,191,255,.3);

}

.stat-card h2{

    color:#00BFFF;

    font-size:42px;

}

.stat-card p{

    margin-top:10px;

    color:#bdbdbd;

}

.about-container{

    flex-direction:column;

    text-align:center;

}

.stats{

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

}

/*================ PROJECTS ================*/

.projects{

    width:min(1200px,90%);
    margin:auto;
    padding:120px 0;

}

.project-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;

}

.project-card{

    background:#151515;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;

}

.project-card:hover{

    transform:translateY(-12px);
    box-shadow:0 15px 40px rgba(0,191,255,.25);

}

.project-card img{

    width:100%;
    display:block;

}

.project-content{

    padding:25px;

}

.project-logo{

    width:70px !important;
    margin-bottom:15px;

}

.project-content h3{

    font-size:28px;
    margin-bottom:15px;

}

.project-content p{

    color:#cfcfcf;
    line-height:1.8;

}

.tech{

    display:flex;
    gap:10px;
    margin:25px 0;
    flex-wrap:wrap;

}

.tech span{

    background:#00BFFF;
    color:white;
    padding:8px 16px;
    border-radius:20px;
    font-size:14px;

}

.project-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

/*================ SKILLS ================*/

.skills{

    width:min(1200px,90%);
    margin:auto;
    padding:120px 0;

}

.skills .section-title p{

    color:#bdbdbd;
    margin-top:15px;

}

.skills-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;

}

.skill-card{

    background:#151515;
    padding:35px;
    border-radius:20px;
    transition:.35s;
    border:1px solid transparent;

}

.skill-card:hover{

    transform:translateY(-8px);
    border-color:#00BFFF;
    box-shadow:0 15px 35px rgba(0,191,255,.2);

}

.skill-card i{

    font-size:45px;
    color:#00BFFF;
    margin-bottom:20px;

}

.skill-card h3{

    margin-bottom:20px;
    font-size:24px;

}

.skill-tags{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

}

.skill-tags span{

    background:#222;
    color:#fff;
    padding:10px 18px;
    border-radius:25px;
    transition:.3s;
    font-size:14px;

}

.skill-tags span:hover{

    background:#00BFFF;
    transform:scale(1.05);

}

.unity{width:95%;}
.csharp{width:90%;}
.gameplay{width:90%;}
.threed{width:85%;}
.twod{width:95%;}
.flutter{width:75%;}





/*================ EXPERIENCE ================*/

.experience{

    width:min(1200px,90%);
    margin:auto;
    padding-bottom:120px;

}

.timeline{

    max-width:900px;
    margin:auto;

}

.timeline-item{

    background:#151515;
    padding:30px;
    margin-bottom:25px;
    border-left:5px solid #00BFFF;
    border-radius:12px;

}

.timeline-item h3{

    margin-bottom:10px;

}

.timeline-item span{

    color:#00BFFF;

}

.timeline-item p{

    margin-top:15px;
    color:#cfcfcf;
    line-height:1.8;

}





/*================ CONTACT ================*/

.contact{

    width:min(1200px,90%);
    margin:auto;
    padding-bottom:120px;

}

.contact-container{

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}

.contact-container a{

    background:#151515;
    color:white;
    padding:18px 28px;
    border-radius:10px;
    transition:.3s;

}

.contact-container a:hover{

    background:#00BFFF;

}





/*================ FOOTER ================*/

footer{

    background:#050505;
    padding:40px;
    text-align:center;

}

footer p{

    color:#aaaaaa;
    margin-top:10px;

}

/*================ MOBILE MENU =================*/

.nav-links.active{

    display:flex;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#111;
    flex-direction:column;
    text-align:center;
    padding:30px 0;

}

.scroll{

    background:#000;

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

}



/*================ REVEAL =================*/

.hidden{

    opacity:0;

    transform:translateY(70px);

    transition:1s;

}

.show{

    opacity:1;

    transform:translateY(0);

}



/*================ PROJECT CARD =================*/

.project-card img{

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}



/*================ BUTTON =================*/

.btn{

    transition:.3s;

}

.btn:hover{

    box-shadow:0 0 20px #00BFFF;

}



/*================ SKILLS =================*/

.progress-fill{

    animation:grow 2s;

}

@keyframes grow{

    from{

        width:0;

    }

}



/*================ FLOAT =================*/

.hero-right img{

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

#topBtn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#00BFFF;

    color:white;

    font-size:22px;

    cursor:pointer;

    display:none;

}

/*================ ACHIEVEMENTS ================*/

.achievements{

    width:90%;
    margin:auto;
    padding-bottom:120px;

}

.achievement-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;

}

.achievement-card{

    background:#151515;

    padding:35px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

}

.achievement-card:hover{

    transform:translateY(-10px);

    border:1px solid #00BFFF;

}

.achievement-card h2{

    color:#00BFFF;

    font-size:42px;

}
.hero{

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#00BFFF;

    filter:blur(180px);

    opacity:.12;

    border-radius:50%;

    right:-150px;

    top:-120px;

    animation:moveGlow 8s infinite alternate;

}

@keyframes moveGlow{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(80px);

    }

}

.contact-container a{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

footer img{

width:80px;

margin-bottom:15px;

}

footer h2{

margin-bottom:10px;

}

/*================ PUBLISHED GAMES ================*/

.published{

    width:90%;
    margin:auto;
    padding-bottom:120px;

}

.published .section-title p{

    color:#bfbfbf;
    margin-top:10px;

}

.published-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

.store-card{

    background:#151515;
    padding:45px 35px;
    text-align:center;
    border-radius:20px;
    transition:.35s;

}

.store-card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,191,255,.25);

}

.store-card i{

    font-size:65px;
    color:#00BFFF;
    margin-bottom:20px;

}

.store-card h3{

    font-size:30px;
    margin-bottom:15px;

}

.store-card p{

    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:30px;

}

/*================ DEVELOPMENT JOURNEY ================*/

.journey{

    width:90%;
    margin:auto;
    padding-bottom:120px;

}

.journey .section-title p{

    color:#bfbfbf;
    margin-top:15px;
    max-width:750px;
    margin-inline:auto;
    line-height:1.8;

}

.journey-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;

}

.journey-card{

    background:#151515;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;

}

.journey-card:hover{

    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,191,255,.25);

}

.journey-card img{

    width:100%;
    transition:.5s;

}

.journey-card:hover img{

    transform:scale(1.08);

}

.journey-content{

    padding:25px;

}

.journey-content h3{

    font-size:28px;
    margin-bottom:15px;

}

.journey-content p{

    color:#cfcfcf;
    line-height:1.8;

}