*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#0f172a;
    color:white;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 10%;
    padding-top:120px;
}

.hero-text{
    max-width:600px;
}

.hero-text h3{
    color:#38bdf8;
    margin-bottom:10px;
}

.hero-text h1{
    font-size:70px;
    margin-bottom:10px;
}

.hero-text h2{
    color:#38bdf8;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    gap:15px;
}

.btn{
    padding:14px 30px;
    background:#38bdf8;
    color:white;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.btn:hover{

    transform:translateY(-8px);

    box-shadow:0 0 25px #38bdf8;

}

.btn-outline{
    background:transparent;
    border:2px solid #38bdf8;
}

.hero-image img{
    width:350px;
    height:350px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #38bdf8;
    box-shadow:0 0 40px #38bdf8;
    animation: float 4s ease-in-out infinite;
    position:relative;
z-index:2;
transition:0.5s;
}


.hero-image{
    position: relative;
}

.hero-image::before{
    content:"";
    position:absolute;

    width:380px;
    height:380px;

    background:linear-gradient(
        45deg,
        #38bdf8,
        #8b5cf6,
        #38bdf8
    );

    border-radius:50%;

    filter:blur(25px);

    animation:spin 5s linear infinite;

    z-index:1;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 10%;
    position:fixed;
    top:0;
    left:0;
    backdrop-filter:blur(10px);
    background:rgba(15,23,42,0.7);
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#38bdf8;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:.3s;
    position: relative;
}

.nav-links a:hover{
    color:#38bdf8;
}
.about{
    padding:100px 10%;
    text-align:center;
}

.about h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:20px;
}

.about p{
    max-width:800px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}
.skills{
    padding:100px 10%;
    text-align:center;
}

.skills h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:50px;
}

.skill-container{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.skill-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    padding:30px 50px;
    border-radius:20px;
    backdrop-filter:blur(10px);
    transition:.4s;
    cursor:pointer;
}

.skill-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px #38bdf8;
}
.projects{
    padding:100px 10%;
    text-align:center;
}

.projects h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:50px;
}

.project-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.project-card{
    width:350px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    padding:30px;
    border-radius:20px;
    transition:.4s;
    overflow:hidden;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px #38bdf8;
}

.project-card h3{
    margin-bottom:15px;
    color:#38bdf8;
}

.project-card p{
    margin-bottom:20px;
    line-height:1.6;
}

.project-btn{
    display:inline-block;
    padding:12px 25px;
    background:#38bdf8;
    color:white;
    text-decoration:none;
    border-radius:10px;
}
.contact{
    padding:100px 10%;
    text-align:center;
}

.contact h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:20px;
}

.contact p{
    margin-bottom:30px;
    font-size:20px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-btn{
    padding:15px 30px;
    background:#38bdf8;
    color:white;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 20px #38bdf8;
}
footer{
    padding:40px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
}

footer p{
    margin:10px 0;
}
html{
    scroll-behavior:smooth;
}
.project-card,
.skill-card{
    transition:0.4s;
}

.project-card:hover,
.skill-card:hover{
    transform:translateY(-12px) scale(1.03);
}
@media(max-width:768px){

    .hero-text h1{
    font-size:38px;
}

.hero-text p{
    font-size:16px;
}

.banner h1{
    font-size:32px;
}

.about h2,
.skills h2,
.services h2,
.timeline h2,
.projects h2,
.hire h2,
.contact h2{
    font-size:36px;
}

.project-card,
.service-card,
.timeline-box,
.stat-box{
    width:100%;
    max-width:320px;
}

.contact-btn{
    width:100%;
    max-width:280px;
}



    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:150px;
    }

    .hero-text h1{
        font-size:45px;
    }

    .hero-image img{
        width:250px;
        height:250px;
        margin-top:30px;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
        
    }

    .nav-links{
        gap:15px;
    }
}
.stats{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    padding:50px 0;
}

.stat-box{
    width:220px;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    text-align:center;
    transition:0.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px #38bdf8;
}

.stat-box h2{
    color:#38bdf8;
    font-size:45px;
}
.banner{
    text-align:center;
    padding:80px 20px;
}

.banner h1{
    font-size:55px;
    color:#38bdf8;
    text-shadow:0 0 20px #38bdf8;
    animation: glow 2s infinite alternate;
}

@keyframes glow{

    from{
        text-shadow:0 0 10px #38bdf8;
    }

    to{
        text-shadow:
        0 0 20px #38bdf8,
        0 0 40px #38bdf8,
        0 0 60px #38bdf8;
    }
}
@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }

}
.project-card img{
    width:100%;
    border-radius:15px;
    margin-bottom:15px;
}
#typing{
    color:#38bdf8;
    font-size:28px;
    font-weight:bold;
    min-height:40px;
}
.skill-card:hover{
    transform:translateY(-15px) scale(1.05);
    box-shadow:0 0 30px #38bdf8;
}
.hero-image{
    position:relative;
}

.project-card img{
    transition:0.5s;
}

.project-card:hover img{
    transform:scale(1.1);
}

.hero-image::before{

    content:"";

    position:absolute;

    width:330px;
    height:330px;

    background:linear-gradient(
    45deg,
    #38bdf8,
    #8b5cf6,
    #38bdf8);

    border-radius:50%;

    animation:spin 5s linear infinite;

    filter:blur(10px);

    z-index:1;
}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}
.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all 1s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}
.services{
    padding:100px 10%;
    text-align:center;
}

.services h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:50px;
}

.service-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.service-card{
    width:300px;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px #38bdf8;
}
.timeline{
    padding:100px 10%;
    text-align:center;
}

.timeline h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:50px;
}

.timeline-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.timeline-box{
    width:300px;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.4s;
}

.timeline-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px #38bdf8;
}

.timeline-box h3{
    color:#38bdf8;
    margin-bottom:15px;
}
.badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(56,189,248,0.15);
    border:1px solid #38bdf8;
    color:#38bdf8;
    margin-bottom:20px;
    font-weight:bold;
}
.blue{
    color:#38bdf8;
}
.hire{
    padding:80px 10%;
    text-align:center;
}

.hire h2{
    color:#38bdf8;
    margin-bottom:20px;
}
.services{
    padding:100px 10%;
    text-align:center;
}

.services h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:50px;
}

.service-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.service-card{
    width:320px;
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px #38bdf8;
}
.hire{
    padding:100px 10%;
    text-align:center;
}

.hire h2{
    font-size:50px;
    color:#38bdf8;
    margin-bottom:20px;
}

.hire p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.hire-points{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hire-box{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    padding:20px 30px;
    border-radius:15px;
    transition:.4s;
}

.hire-box:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px #38bdf8;
}
@media (max-width: 768px){

    .navbar{
        flex-direction:column;
        padding:15px;
    }

    .nav-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .nav-links a{
        padding:8px 14px;
        font-size:14px;
    }

    .hero{
        flex-direction:column-reverse;
        text-align:center;
        padding:140px 20px 50px;
    }

    .hero-image img{
        width:220px;
        height:220px;
    }

    .hero-image::before{
        width:240px;
        height:240px;
    }

    .hero-text h1{
        font-size:34px;
    }

    #typing{
        font-size:22px;
    }

    .banner h1{
        font-size:28px;
    }

    .about h2,
    .skills h2,
    .services h2,
    .timeline h2,
    .projects h2,
    .hire h2,
    .contact h2{
        font-size:32px;
    }

    .stat-box,
    .service-card,
    .timeline-box,
    .project-card{
        width:100%;
        max-width:100%;
    }

    .buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:220px;
        text-align:center;
    }

    .contact-buttons{
        flex-direction:column;
        align-items:center;
    }

    .contact-btn{
        width:250px;
        text-align:center;
    }

@keyframes glow{

0%{
text-shadow:
0 0 10px #4da3ff,
0 0 20px #4da3ff;
}

100%{
text-shadow:
0 0 30px #4da3ff,
0 0 60px #4da3ff;
}

}
}
.blur{
position:absolute;
border-radius:50%;
filter:blur(120px);
}

.blur1{
width:250px;
height:250px;
background:#4da3ff;
top:100px;
left:100px;
}

.blur2{
width:300px;
height:300px;
background:purple;
right:100px;
bottom:100px;
}
.particles::before,
.particles::after{
content:"";
position:absolute;
width:300px;
height:300px;
border-radius:50%;
filter:blur(100px);
animation:float 8s infinite ease-in-out;
}

.particles::before{
background:#4da3ff;
top:20%;
left:20%;
}

.particles::after{
background:purple;
bottom:20%;
right:20%;
animation-delay:2s;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-50px);
}

100%{
transform:translateY(0px);
}

}
.hero{
position:relative;
overflow:hidden;
}

.blur{
position:absolute;
border-radius:50%;
filter:blur(120px);
animation:moveGlow 10s infinite ease-in-out;
}

.blur1{
width:250px;
height:250px;
background:#4da3ff;
top:50px;
left:50px;
}

.blur2{
width:300px;
height:300px;
background:#9333ea;
bottom:50px;
right:50px;
animation-delay:2s;
}

@keyframes moveGlow{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-50px);
}

100%{
transform:translateY(0);
}

}
#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#050816;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:99999;
overflow:hidden;
}

.loader-name{
font-size:80px;
font-weight:bold;
letter-spacing:8px;
color:white;
text-transform:uppercase;
animation:glow 2s infinite alternate;
z-index:2;
}

.loader-text{
margin-top:15px;
font-size:20px;
letter-spacing:4px;
color:#4da3ff;
z-index:2;
}

@keyframes glow{

0%{
text-shadow:
0 0 10px #4da3ff,
0 0 20px #4da3ff;
}

100%{
text-shadow:
0 0 30px #4da3ff,
0 0 60px #4da3ff;
}

}

.blur{
position:absolute;
border-radius:50%;
filter:blur(120px);
}

.blur1{
width:250px;
height:250px;
background:#4da3ff;
top:100px;
left:100px;
}

.blur2{
width:300px;
height:300px;
background:purple;
right:100px;
bottom:100px;
}
.particles::before,
.particles::after{
content:"";
position:absolute;
width:300px;
height:300px;
border-radius:50%;
filter:blur(100px);
animation:float 8s infinite ease-in-out;
}

.particles::before{
background:#4da3ff;
top:20%;
left:20%;
}

.particles::after{
background:purple;
bottom:20%;
right:20%;
animation-delay:2s;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-50px);
}

100%{
transform:translateY(0px);
}

}
.hero{
position:relative;
overflow:hidden;
}

.blur{
position:absolute;
border-radius:50%;
filter:blur(120px);
animation:moveGlow 10s infinite ease-in-out;
}

.blur1{
width:250px;
height:250px;
background:#4da3ff;
top:50px;
left:50px;
}

.blur2{
width:300px;
height:300px;
background:#9333ea;
bottom:50px;
right:50px;
animation-delay:2s;
}

@keyframes moveGlow{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-50px);
}

100%{
transform:translateY(0);
}

}
#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#050816;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
}

.loader-content{
text-align:center;
}

#loader-title{
font-size:90px;
font-weight:800;
letter-spacing:10px;
color:white;
opacity:0;
animation:titleReveal 1.5s forwards;
}

.loader-sub{
color:#4da3ff;
letter-spacing:5px;
margin-top:20px;
opacity:0;
animation:subReveal 1s forwards;
animation-delay:1s;
}

.loading-bar{
width:300px;
height:6px;
background:rgba(255,255,255,0.1);
border-radius:50px;
margin:30px auto;
overflow:hidden;
}

.loading-fill{
height:100%;
width:0%;
background:#4da3ff;
animation:loadBar 2.5s forwards;
}
/* ===== LOADER ===== */

#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#050816;
display:flex;
justify-content:center;
align-items:center;
z-index:999999;
}

.loader-content{
text-align:center;
}

#loader-title{
font-size:90px;
font-weight:800;
letter-spacing:10px;
color:white;
opacity:0;
animation:titleReveal 1.5s forwards;
}

.loader-sub{
color:#38bdf8;
letter-spacing:5px;
margin-top:20px;
opacity:0;
animation:subReveal 1s forwards;
animation-delay:1s;
}

.loading-bar{
width:300px;
height:6px;
background:rgba(255,255,255,0.15);
border-radius:50px;
margin:30px auto;
overflow:hidden;
}

.loading-fill{
height:100%;
width:0%;
background:#38bdf8;
animation:loadBar 3s forwards;
}

@keyframes loadBar{
0%{width:0%;}
100%{width:100%;}
}

@keyframes titleReveal{
0%{
opacity:0;
transform:translateY(40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

@keyframes subReveal{
0%{opacity:0;}
100%{opacity:1;}
}
.hero-tagline{

font-size:28px;

font-weight:600;

margin-top:15px;

color:#38bdf8;

letter-spacing:3px;

animation:fadeUp 1.5s ease;

}

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(30px);
}

100%{
opacity:1;
transform:translateY(0);
}

}
