:root{
    --bg:#050d1f;
    --card:#101827;
    --accent:#00e5ff;
    --text:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:white;
    font-family:'Segoe UI',sans-serif;
}

.navbar{
    background:rgba(5,13,31,.8);
    backdrop-filter:blur(10px);
}

.nav-link{
    color:white !important;
}

.nav-link:hover{
    color:#00e5ff !important;
}

#hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;
}

#hero h1{

    font-size:5rem;
    font-weight:800;
    line-height:1;
}

#hero::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:#00e5ff;

    filter:blur(250px);

    opacity:.08;

    right:-200px;
    top:-150px;

    z-index:-2;
}

#hero .container{

    position:relative;

    z-index:5;
}



.btn-info{
    background:#00e5ff;
    border:none;
}

.btn-info:hover{
    transform:translateY(-3px);
    transition:.3s;
}



body::before{

    content:"";

    position:fixed;

    width:500px;
    height:500px;

    background:#00e5ff;

    filter:blur(250px);

    opacity:.15;

    top:-150px;
    left:-150px;

    z-index:-1;
}

.about-card{
    background:#101827;
    border:none;
    border-radius:20px;
    padding:30px;
    color:white;
    box-shadow:0 8px 25px rgba(0,0,0,.35);

    transition:.4s;
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,229,255,.3);
}

.about-card ul{
    margin-top:20px;
}

.about-card li{
    margin-bottom:15px;
}

section{
    padding:60px 0;
}

.skill-card{

    background:#101827;

    border-radius:20px;

    padding:30px;

    height:100%;

    text-align:center;

    transition:.4s;

     box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.skill-card:hover{

    transform:translateY(-10px);

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

.skill-card h4{

    color:#00e5ff;

    margin-bottom:20px;
}

.timeline-card{

    background:#101827;

    border-radius:20px;

    padding:30px;

    margin-bottom:20px;

    box-shadow:0 0 15px rgba(0,229,255,.1);

    transition:.4s;
    border-left:4px solid #00e5ff;
}

.timeline-card:hover{

    transform:translateY(-10px);

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

.profile-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.skill-card p{
    line-height:2;
    color:#d1d5db;
}


.profile-circle{
    width:350px;
    height:350px;

    border-radius:50%;

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

    overflow:hidden;

    margin:auto;

    box-shadow:0 0 50px rgba(0,229,255,.5);

    transition:.5s;
}

body{
    cursor:none;
}

.cursor{

    width:24px;
    height:24px;

    border:2px solid #00e5ff;

    border-radius:50%;

    position:fixed;

    top:0;
    left:0;

    pointer-events:none;

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

    z-index:99999;

    box-shadow:
        0 0 15px #00e5ff,
        0 0 35px #00e5ff;

    transition:
        width .3s ease,
        height .3s ease,
        background .3s ease;
}

.cursor-hover{

    width:60px;
    height:60px;

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

    border:2px solid #00e5ff;

    box-shadow:
        0 0 30px #00e5ff,
        0 0 60px #00e5ff;
}

#fluid{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    pointer-events:none;
}

.about-card,
.skill-card,
.timeline-card,
.project-card,
.contact-card{

    background:linear-gradient(
        145deg,
        rgba(22,28,45,.95),
        rgba(12,18,30,.95)
    );

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

    backdrop-filter:blur(20px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.4);
}

.project-card{
    background:rgba(16,24,39,.8);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:30px;
    height:100%;

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

    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px rgba(0,229,255,.3);
}

.project-card h4{
    color:#00e5ff;
    margin-bottom:15px;
}

.contact-card{
    max-width:700px;
    margin:auto;

    background:#101827;

    padding:40px;

    border-radius:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.contact-card a{
    color:#00e5ff;
    text-decoration:none;
}

.contact-card a:hover{
    text-decoration:underline;
}

footer{
    border-top:1px solid rgba(255,255,255,.08);
    color:#9ca3af;
}

.contact-card p{
    font-size:18px;
    margin:18px 0;
}

.contact-card i{
    color:#00e5ff;
    margin-right:10px;
    font-size:20px;
}

.hero-tags span{
    display:inline-block;
    padding:10px 18px;
    margin:5px;
    border-radius:30px;

    background:rgba(0,229,255,.08);
    border:1px solid rgba(0,229,255,.2);

    color:#00e5ff;
}

.skill-pill{

    display:inline-block;

    padding:8px 15px;

    margin:6px;

    border-radius:30px;

    background:#0d2238;

    color:#00e5ff;

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

.timeline-card h3{
    font-size:32px;
    font-weight:700;
}

.skill-pill{

    display:inline-block;

    padding:10px 18px;

    margin:6px;

    border-radius:30px;

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

    color:#00e5ff;

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

    transition:.3s;

    font-size:14px;
}

.skill-pill:hover{

    transform:translateY(-3px);

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

    box-shadow:0 0 15px rgba(0,229,255,.3);
}

.skill-card h4{

    color:#00e5ff;

    margin-bottom:25px;

    font-weight:700;
}

.hero-grid{

    position:absolute;
    inset:0;

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

    background-size:60px 60px;

    animation:gridMove 15s linear infinite;

    z-index:-2;
}

@keyframes gridMove{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(60px);
    }
}

.bg-text{

    position:absolute;

    top:50%;
    left:50%;

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

    font-size:14vw;
    opacity:.03;
    letter-spacing:10px;

    font-weight:900;

    color:rgba(255,255,255,.02);

    pointer-events:none;

    z-index:-1;
}
.hero-image-wrapper{

    position:relative;

    width:500px;

    height:500px;

    margin:auto;
}
.floating-card{

    --x:0px;
    --y:0px;

    position:absolute;

    min-width:110px;

    padding:12px 20px;

    text-align:center;

    font-weight:600;

    border-radius:15px;

    background:rgba(16,24,39,.95);

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

    color:#00e5ff;

    backdrop-filter:blur(20px);

    transform:translate(var(--x),var(--y));

    box-shadow:
        0 10px 30px rgba(0,0,0,.35),
        0 0 25px rgba(0,229,255,.15);

    .card1{
    top:20px;
    left:0;
    animation:float 6s infinite ease-in-out;
}

.card2{
    top:350px;
    left:-40px;
    animation:float 8s infinite ease-in-out;
}

.card3{
    top:50px;
    right:0;
    animation:float 5s infinite ease-in-out;
}

.card4{
    bottom:50px;
    right:-40px;
    animation:float 7s infinite ease-in-out;
}

    z-index:10;
}

.floating-card i{

    font-size:24px;

    margin-bottom:8px;

    display:block;

    color:#00e5ff;
}
.card1{
    top:20px;
    left:0;
}

.card2{
    top:350px;
    left:-40px;
}

.card3{
    top:50px;
    right:0;
}

.card4{
    bottom:50px;
    right:-40px;
}
@keyframes float{

    0%,100%{
        margin-top:0;
    }

    50%{
        margin-top:-15px;
    }
}

.profile-circle{

    position:relative;

    width:350px;
    height:350px;

    border-radius:50%;

    overflow:hidden;

    margin:auto;
}

.profile-circle::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:#00e5ff;

    filter:blur(140px);

    opacity:.3;

    top:-70px;
    left:-70px;

    z-index:-1;
}

@media(max-width:992px){

    .hero-image-wrapper{

        width:350px;
        height:350px;
    }

    .floating-card{

        display:none;
    }

    .bg-text{

        font-size:22vw;
    }

}

.section-divider{

    width:100%;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(0,229,255,.4),
        transparent
    );

    margin:100px 0;
}

.contact-heading{

    margin-bottom:60px;
}

.section-label{

    color:#00e5ff;

    letter-spacing:5px;

    font-size:14px;

    font-weight:600;
}

.contact-heading h2{

    font-size:60px;

    font-weight:800;

    margin-top:15px;
}

.contact-heading h2 span{

    color:#00e5ff;
}

.contact-heading p{

    color:#9ca3af;
}

.footer-social{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:25px;
}

.footer-social a{

    width:55px;
    height:55px;

    display:flex;

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

    border-radius:50%;

    background:#101827;

    color:#00e5ff;

    font-size:20px;

    transition:.4s;
}

.footer-social a:hover{

    transform:translateY(-8px);

    box-shadow:0 0 25px rgba(0,229,255,.4);
}

footer{

    text-align:center;

    padding:40px 0;
}

footer span{

    color:#00e5ff;

    font-weight:700;
}

.floating-card{

    transition:
        transform .5s ease,
        box-shadow .5s ease,
        border-color .5s ease;
}

.floating-card:hover{

    transform:translateY(-12px) scale(1.08);

    border-color:#00e5ff;

    box-shadow:
        0 0 30px rgba(0,229,255,.5),
        0 0 80px rgba(0,229,255,.2);
}

.project-img{

    width:100%;

    border-radius:15px;

    margin-bottom:20px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.project-card:hover .project-img{

    transform:scale(1.03);
}

.contact-heading{

    margin-bottom:60px;
}

.section-label{

    color:#00e5ff;

    letter-spacing:5px;

    font-size:14px;

    font-weight:600;
}

.contact-heading h2{

    font-size:70px;

    font-weight:800;

    margin-top:15px;
}

.contact-heading h2 span{

    color:#00e5ff;
}

.contact-heading p{

    color:#9ca3af;

    font-size:20px;
}

.contact-form-wrapper{

    position:relative;

    max-width:900px;

    margin:auto;

    padding:60px;

    border-radius:35px;

    background:
    linear-gradient(
        145deg,
        rgba(16,24,39,.95),
        rgba(8,12,20,.95)
    );

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

    backdrop-filter:blur(20px);

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

.contact-form-wrapper label{

    display:block;

    margin-bottom:10px;

    color:#9ca3af;

    font-size:18px;
}

.contact-form-wrapper .form-control{

    background:#151a28;

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

    color:white;

    padding:18px;

    border-radius:18px;

    font-size:18px;
}

.contact-form-wrapper .form-control:focus{

    background:#151a28;

    color:white;

    border-color:#00e5ff;

    box-shadow:
        0 0 20px rgba(0,229,255,.25);
}

.send-btn{

    width:100%;

    border:none;

    border-radius:18px;

    padding:20px;

    font-size:22px;

    font-weight:700;

    color:white;

    background:
    linear-gradient(
        90deg,
        #00b8ff,
        #00e5ff
    );

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

    transition:.4s;
}

.send-btn:hover{

    transform:translateY(-5px);

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

.contact-circle{

    position:absolute;

    width:50px;
    height:50px;

    border:3px solid #00e5ff;

    border-radius:50%;

    top:-25px;
    left:-25px;

    opacity:.8;
}

.contact-circle::before{

    content:"";

    position:absolute;

    width:8px;
    height:8px;

    background:#00e5ff;

    border-radius:50%;

    top:-8px;
    left:-8px;
}

.footer-contact{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-bottom:20px;

    color:#9ca3af;

    flex-wrap:wrap;
}

.footer-contact span{

    font-size:15px;
}