/*==============================
ROOT
==============================*/

:root{

    --bg:#060816;
    --card:#111827;

    --primary:#00d4ff;
    --secondary:#6c63ff;

    --text:#ffffff;
    --muted:#94a3b8;

    --radius:18px;

}

/*==============================
BODY
==============================*/

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

}

section{

    padding:110px 0;

}
/*==============================
NAVBAR
==============================*/

.custom-navbar{

    background:rgba(10,15,30,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.custom-navbar.scrolled{

    background:#08101d;

    box-shadow:0 10px 40px rgba(0,0,0,.45);

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

}

.logo-box{

    width:50px;

    height:50px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    color:white;

    background:linear-gradient(135deg,#00d4ff,#6c63ff);

    box-shadow:0 0 20px rgba(0,212,255,.4);

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text .name{

    color:white;

    font-weight:700;

    line-height:1;

}

.logo-text small{

    color:var(--muted);

}

.navbar-nav{

    gap:8px;

}

.nav-link{

    color:#d8dee9;

    font-weight:500;

    padding:10px 16px !important;

    border-radius:12px;

    transition:.3s;

}

.nav-link:hover{

    color:white;

    background:rgba(255,255,255,.08);

}

.nav-link.active{

    color:white;

    background:linear-gradient(135deg,#00d4ff,#6c63ff);

}

.custom-btn{

    border:none;

    border-radius:40px;

    padding:12px 24px;

    background:linear-gradient(135deg,#00d4ff,#6c63ff);

    font-weight:600;

    transition:.3s;

}

.custom-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,212,255,.4);

}
/*====================================
HERO
====================================*/

.hero-section{

    position:relative;

    overflow:hidden;

}

#particles-js{

    position:absolute;

    inset:0;

    z-index:0;

}

.hero-section .container{

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:rgba(255,255,255,.07);

    border:1px solid rgba(255,255,255,.08);

    color:#00d4ff;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:65px;

    font-weight:800;

    line-height:1.15;

}

.hero-content h2{

    margin:20px 0;

    color:#cbd5e1;

    font-size:32px;

}

.gradient-text{

    background:linear-gradient(90deg,#00d4ff,#6c63ff);

    -webkit-background-clip:text;

    color:transparent;

}

#typing{

    color:#00d4ff;

    font-weight:700;

}

.hero-content p{

    margin-top:30px;

    color:#aeb8c7;

    line-height:1.9;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.hero-btn{

    border-radius:50px;

    padding:15px 30px;

    font-weight:600;

}

.hero-btn-outline{

    color:white;

    border:2px solid rgba(255,255,255,.15);

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

}

.hero-btn-outline:hover{

    background:white;

    color:#111827;

}

.hero-social{

    display:flex;

    gap:18px;

}

.hero-social a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.05);

    color:white;

    font-size:20px;

    transition:.35s;

}

.hero-social a:hover{

    background:#00d4ff;

    transform:translateY(-6px);

}

.profile-wrapper{

    position:relative;

    width:420px;

    margin:auto;

}

.profile-image{

    width:100%;

    border-radius:50%;

    border:8px solid rgba(255,255,255,.08);

    position:relative;

    z-index:2;

}

.glow-circle{

    position:absolute;

    inset:-20px;

    border-radius:50%;

    background:linear-gradient(135deg,#00d4ff,#6c63ff);

    filter:blur(50px);

    opacity:.55;

    animation:pulse 4s infinite;

}

@keyframes pulse{

    0%{

        transform:scale(.95);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(.95);

    }

}
/*==================================
ABOUT
===================================*/

.about-section{

    position:relative;

}

.section-title span{

    color:#00d4ff;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

}

.section-title h2{

    font-size:46px;

    font-weight:800;

    margin:20px 0;

}

.about-text{

    color:#a8b4c8;

    line-height:1.9;

    font-size:17px;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:30px;

    border:1px solid rgba(255,255,255,.08);

}

.experience-card{

    position:absolute;

    right:-20px;

    bottom:40px;

    background:rgba(17,24,39,.9);

    backdrop-filter:blur(15px);

    padding:25px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

}

.experience-card h3{

    font-size:42px;

    color:#00d4ff;

}

.info-card{

    background:#111827;

    padding:30px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

    height:100%;

}

.info-card:hover{

    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:0 15px 40px rgba(0,212,255,.15);

}

.info-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:linear-gradient(135deg,#00d4ff,#6c63ff);

    color:#fff;

    font-size:28px;

    margin-bottom:20px;

}

.info-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.info-card p{

    color:#94a3b8;

    margin:0;

    line-height:1.8;

}

/*==================================
SKILLS
===================================*/

.skills-section{

    background:rgba(255,255,255,.02);

}


.section-heading span{

    color:#00d4ff;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

}


.section-heading h2{

    font-size:45px;

    font-weight:800;

    margin:15px 0;

}


.section-heading p{

    color:#94a3b8;

}



.skill-card{

    background:#111827;

    padding:35px;

    border-radius:25px;

    height:100%;

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

}



.skill-card:hover{

    transform:translateY(-12px);

    border-color:#00d4ff;

    box-shadow:0 20px 50px rgba(0,212,255,.15);

}



.skill-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    background:linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );

    margin-bottom:25px;

}



.skill-card h4{

    margin-bottom:20px;

}



.skill-card ul{

    list-style:none;

    padding:0;

    margin:0;

}


.skill-card ul li{

    color:#aab5c5;

    padding:8px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}


.skill-card ul li:last-child{

    border:none;

}



.tech-cloud{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}



.tech-cloud span{


    padding:12px 25px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#e2e8f0;

    transition:.3s;


}



.tech-cloud span:hover{


    background:#00d4ff;

    color:#06111c;

    transform:translateY(-5px);


}

/*==================================
SERVICES
===================================*/

.services-section{

    position:relative;

}



.service-card{


    background:#111827;

    padding:35px;

    border-radius:25px;

    height:100%;

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

    position:relative;

    overflow:hidden;

}



.service-card::before{


    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#00d4ff;

    filter:blur(80px);

    top:-50px;

    right:-50px;

    opacity:.25;


}



.service-card:hover{


    transform:translateY(-12px);

    border-color:#00d4ff;

    box-shadow:
    0 20px 50px rgba(0,212,255,.15);


}



.service-icon{


    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    color:white;

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );

    margin-bottom:25px;


}



.service-card h4{


    font-size:23px;

    margin-bottom:15px;


}



.service-card p{


    color:#94a3b8;

    line-height:1.8;


}



.service-card ul{


    padding:0;

    list-style:none;

    margin-top:20px;


}



.service-card ul li{


    color:#cbd5e1;

    padding:7px 0;


}



.service-card ul li::before{


    content:"✓";

    color:#00d4ff;

    margin-right:10px;


}
/*==================================
PROJECTS
===================================*/


.projects-section{

    background:rgba(255,255,255,.02);

}



.project-card{


    display:block;

    text-decoration:none;

    background:#111827;

    padding:35px;

    border-radius:25px;

    height:100%;

    border:1px solid rgba(255,255,255,.07);

    transition:.4s;

    color:white;


}



.project-card:hover{


    transform:translateY(-12px);

    border-color:#00d4ff;

    box-shadow:
    0 20px 50px rgba(0,212,255,.18);


}



.project-icon{


    width:75px;

    height:75px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );

    margin-bottom:25px;


}



.project-card h4{


    font-size:22px;

    margin-bottom:20px;


}



.project-tech{


    display:flex;

    gap:8px;

    flex-wrap:wrap;

    margin-bottom:25px;


}



.project-tech span{


    padding:6px 14px;

    border-radius:30px;

    background:rgba(255,255,255,.07);

    color:#cbd5e1;

    font-size:13px;


}



.project-link{


    color:#00d4ff;

    font-weight:600;


}

/*==================================
EXPERIENCE TIMELINE
===================================*/


.experience-section{

    position:relative;

}



.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}



.timeline::before{


    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:2px;

    height:100%;

    background:
    linear-gradient(
        #00d4ff,
        #6c63ff
    );


    transform:translateX(-50%);


}



.timeline-item{


    width:50%;

    position:relative;

    padding:30px;


}



.timeline-item:nth-child(odd){


    left:0;

    text-align:right;


}



.timeline-item:nth-child(even){


    left:50%;


}



.timeline-dot{


    position:absolute;

    width:18px;

    height:18px;

    background:#00d4ff;

    border-radius:50%;

    top:45px;

    right:-9px;

    box-shadow:
    0 0 20px #00d4ff;


}



.timeline-item:nth-child(even) 
.timeline-dot{


    left:-9px;


}



.timeline-content{


    background:#111827;

    padding:30px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.07);

    transition:.35s;


}



.timeline-content:hover{


    transform:translateY(-8px);

    border-color:#00d4ff;


}



.timeline-date{


    color:#00d4ff;

    font-size:14px;

    font-weight:600;

}



.timeline-content h4{


    margin:15px 0;


}



.timeline-content p{


    color:#94a3b8;

    line-height:1.8;


}
/*==================================
STATS
===================================*/


.stats-section{

    padding:80px 0;

}



.stat-card{


    background:#111827;

    padding:35px 25px;

    border-radius:25px;

    text-align:center;

    border:1px solid rgba(255,255,255,.07);

    transition:.4s;


}



.stat-card:hover{


    transform:translateY(-10px);

    border-color:#00d4ff;

    box-shadow:
    0 20px 50px rgba(0,212,255,.15);


}



.stat-icon{


    width:80px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:25px;

    font-size:32px;

    color:white;

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );

    margin-bottom:25px;


}



.stat-card h2{


    font-size:50px;

    font-weight:800;

    background:
    linear-gradient(
        90deg,
        #00d4ff,
        #6c63ff
    );

    -webkit-background-clip:text;

    color:transparent;


}



.stat-card p{


    color:#94a3b8;

    margin:0;

    font-size:17px;


}
/*==================================
CONTACT
===================================*/


.contact-section{

    background:rgba(255,255,255,.02);

}



.contact-card{


    display:flex;

    align-items:center;

    gap:20px;

    background:#111827;

    padding:25px;

    border-radius:20px;

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.07);

    transition:.3s;


}



.contact-card:hover{


    transform:translateX(8px);

    border-color:#00d4ff;


}



.contact-icon{


    width:60px;

    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );

    font-size:24px;

}



.contact-card h5{


    margin-bottom:5px;


}



.contact-card p{


    margin:0;

    color:#94a3b8;


}



.contact-social{


    display:flex;

    gap:15px;

    margin-top:30px;


}



.contact-social a{


    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#111827;

    color:white;

    font-size:20px;

    transition:.3s;


}



.contact-social a:hover{


    background:#00d4ff;

    color:#06111c;

    transform:translateY(-5px);


}




.contact-form{


    background:#111827;

    padding:40px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.07);


}



.contact-form .form-control{


    background:#0b1220;

    border:1px solid rgba(255,255,255,.1);

    color:white;

    padding:15px 18px;

    border-radius:15px;


}



.contact-form .form-control:focus{


    border-color:#00d4ff;

    box-shadow:none;


}



.contact-form textarea{


    resize:none;


}



.contact-form ::placeholder{


    color:#64748b;


}
/*==================================
FOOTER
===================================*/


.footer-section{


    padding:70px 0 30px;

    background:#050914;

    border-top:
    1px solid rgba(255,255,255,.06);


}



.footer-brand h3{


    font-size:28px;

    font-weight:700;


}



.footer-brand h3 span{


    display:inline-flex;

    width:45px;

    height:45px;

    align-items:center;

    justify-content:center;

    border-radius:12px;

    margin-right:10px;

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );


}



.footer-brand p{


    color:#94a3b8;

    line-height:1.8;

    margin-top:20px;

}



.footer-section h5{


    margin-bottom:25px;

    font-weight:700;


}



.footer-links{


    padding:0;

    list-style:none;


}



.footer-links li{


    color:#94a3b8;

    margin-bottom:12px;


}



.footer-links a{


    color:#94a3b8;

    text-decoration:none;

    transition:.3s;


}



.footer-links a:hover{


    color:#00d4ff;

    padding-left:5px;


}



.footer-bottom{


    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}



.footer-bottom p{


    color:#64748b;

    margin:0;


}



.footer-bottom strong{


    color:white;


}



.footer-social{


    display:flex;

    gap:12px;


}



.footer-social a{


    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#111827;

    color:white;

    transition:.3s;


}



.footer-social a:hover{


    background:#00d4ff;

    color:#06111c;


}

/*==================================
PRELOADER
===================================*/


#preloader{

    position:fixed;

    inset:0;

    background:#060816;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

    transition:.5s;

}



.loader{

    display:flex;

    gap:15px;

}



.loader span{


    width:65px;

    height:65px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    font-weight:800;

    color:white;

    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );


    animation:
    bounce 1s infinite alternate;


}



.loader span:nth-child(2){

    animation-delay:.2s;

}



@keyframes bounce{


    from{

        transform:translateY(0);

    }


    to{

        transform:translateY(-20px);

    }


}


#preloader.hide{

    opacity:0;

    visibility:hidden;

}

/*==================================
BACK TO TOP
===================================*/


#backToTop{


    position:fixed;

    bottom:30px;

    right:30px;


    width:50px;

    height:50px;


    border-radius:50%;


    border:none;


    background:
    linear-gradient(
        135deg,
        #00d4ff,
        #6c63ff
    );


    color:white;


    display:flex;

    align-items:center;

    justify-content:center;


    opacity:0;

    visibility:hidden;


    transition:.3s;


    z-index:999;


}



#backToTop.show{


    opacity:1;

    visibility:visible;


}



#backToTop:hover{


    transform:translateY(-5px);


}

/*==================================
SCROLL PROGRESS
===================================*/


#progress-bar{


    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;


    background:
    linear-gradient(
        90deg,
        #00d4ff,
        #6c63ff
    );


    z-index:99999;


}
/*==================================
BACKGROUND BLOBS
===================================*/


.background-animation{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-1;

}



.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.35;

}



.blob-one{

    width:400px;

    height:400px;

    background:#00d4ff;

    top:-150px;

    left:-100px;

    animation:
    floatOne 10s infinite alternate;

}



.blob-two{

    width:350px;

    height:350px;

    background:#6c63ff;

    right:-100px;

    top:40%;

    animation:
    floatTwo 12s infinite alternate;

}



.blob-three{

    width:250px;

    height:250px;

    background:#00ffc6;

    bottom:-80px;

    left:40%;

    animation:
    floatThree 14s infinite alternate;

}



@keyframes floatOne{

    from{

        transform:translate(0,0);

    }

    to{

        transform:translate(150px,100px);

    }

}



@keyframes floatTwo{


    from{

        transform:translate(0,0);

    }


    to{

        transform:translate(-120px,80px);

    }


}



@keyframes floatThree{


    from{

        transform:translateY(0);

    }


    to{

        transform:translateY(-120px);

    }


}
/* Mouse Glow */

#mouse-glow{

    position:fixed;

    width:250px;

    height:250px;

    border-radius:50%;

    background:#00d4ff;

    filter:blur(100px);

    opacity:.15;

    pointer-events:none;

    z-index:-1;

}

/* Glass Shine */


.skill-card,
.service-card,
.project-card,
.stat-card,
.contact-card,
.timeline-content{


    position:relative;

    overflow:hidden;


}



.skill-card::after,
.service-card::after,
.project-card::after,
.stat-card::after{


    content:"";

    position:absolute;

    top:-50%;

    left:-50%;

    width:200%;

    height:200%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );


    transform:rotate(25deg);

    transition:.6s;

    opacity:0;


}



.skill-card:hover::after,
.service-card:hover::after,
.project-card:hover::after,
.stat-card:hover::after{


    opacity:1;

    transform:
    rotate(25deg)
    translate(100%,100%);


}