/*==================================
GOOGLE FONT
==================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================
RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#070b14;
    color:#fff;
    overflow-x:hidden;
}

/*==================================
BACKGROUND
==================================*/

body::before{

    content:"";
    position:fixed;
    inset:0;

    background:
    radial-gradient(circle at 15% 20%,rgba(0,162,255,.18),transparent 30%),
    radial-gradient(circle at 85% 25%,rgba(128,90,213,.15),transparent 30%),
    radial-gradient(circle at 50% 90%,rgba(0,255,200,.08),transparent 40%);

    z-index:-2;

}

body::after{

    content:"";
    position:fixed;

    width:700px;
    height:700px;

    background:#008cff;

    border-radius:50%;

    filter:blur(220px);

    opacity:.10;

    right:-250px;
    top:-250px;

    animation:blob 10s ease-in-out infinite;

    z-index:-1;

}

@keyframes blob{

    50%{

        transform:
        translate(-40px,40px)
        scale(1.1);

    }

}

/*==================================
HEADER
==================================*/

.header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    padding:22px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    backdrop-filter:blur(18px);

    background:rgba(10,15,25,.45);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:1000;

}

.logo{

    color:white;

    text-decoration:none;

    font-size:32px;

    font-weight:700;

}

.navbar{

    display:flex;

    gap:35px;

}

.navbar a{

    color:#d5d5d5;

    text-decoration:none;

    transition:.3s;

}

.navbar a:hover{

    color:#29a8ff;

}

.nav-btn{

    padding:12px 28px;

    border-radius:40px;

    text-decoration:none;

    background:#1da1ff;

    color:white;

    font-weight:600;

    transition:.35s;

}

.nav-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(29,161,255,.35);

}

/*==================================
HERO
==================================*/

.hero{

    max-width:1300px;

    margin:auto;

    min-height:100vh;

    padding:140px 8% 70px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-tag{

    color:#29a8ff;

    font-size:18px;

    margin-bottom:18px;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:18px;

}

.hero h1 span{

    display:block;

    background:linear-gradient(90deg,#29a8ff,#8b5cf6);

    -webkit-background-clip:text;

    color:transparent;

}

.hero h2{

    font-size:28px;

    color:#d6d6d6;

    font-weight:500;

    margin-bottom:25px;

}

.hero-description{

    color:#9ca3af;

    line-height:1.9;

    font-size:17px;

    max-width:600px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

/*==================================
BUTTONS
==================================*/

.btn-primary,
.btn-secondary{

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:#1da1ff;

    color:white;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(29,161,255,.35);

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.12);

    color:white;

    background:rgba(255,255,255,.03);

}

.btn-secondary:hover{

    background:white;

    color:#111;

}

/*==================================
IMAGE
==================================*/

.hero-image{

    display:flex;

    justify-content:center;

    position:relative;

}

.hero-image img{

    width:430px;

    border-radius:30px;

    position:relative;

    z-index:2;

    animation:floatImage 6s ease-in-out infinite;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.image-glow{

    position:absolute;

    width:430px;

    height:430px;

    background:#008cff;

    border-radius:50%;

    filter:blur(120px);

    opacity:.28;

    animation:pulse 4s infinite;

}

@keyframes pulse{

    50%{

        transform:scale(1.1);

        opacity:.45;

    }

}

@keyframes floatImage{

    50%{

        transform:translateY(-12px);

    }

}
/*==================================
HERO STATS
==================================*/

.hero-stats{

    max-width:1300px;

    margin:0 auto 120px;

    padding:0 8%;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px 25px;

    text-align:center;

    backdrop-filter:blur(15px);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#29a8ff;

    box-shadow:0 18px 40px rgba(0,140,255,.18);

}

.stat-card h3{

    font-size:42px;

    color:#29a8ff;

    margin-bottom:10px;

}

.stat-card h3::after{

    content:"+";

}

.stat-card p{

    color:#9ca3af;

    font-size:15px;

}

/*==================================
SECTION TITLE
==================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title p{

    color:#29a8ff;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:14px;

    margin-bottom:10px;

}

.section-title h2{

    font-size:42px;

}

/*==================================
ABOUT
==================================*/

.about{

    max-width:1300px;

    margin:auto;

    padding:100px 8%;

}

.about-container{

    display:grid;

    grid-template-columns:1.3fr .7fr;

    gap:60px;

    align-items:center;

}

.about-left h3{

    font-size:34px;

    margin-bottom:25px;

    line-height:1.4;

}

.about-left p{

    color:#9ca3af;

    line-height:1.9;

    margin-bottom:25px;

}

.about-right{

    display:grid;

    gap:20px;

}

.info-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:25px;

    transition:.35s;

}

.info-card:hover{

    transform:translateX(8px);

    border-color:#29a8ff;

}

.info-card span{

    color:#29a8ff;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.info-card h4{

    margin-top:10px;

    font-size:18px;

    font-weight:600;

}
/*==================================
SKILLS
==================================*/

.skills{

    max-width:1300px;

    margin:auto;

    padding:100px 8%;

}

.skills-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.skill-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.skill-card:hover{

    transform:translateY(-10px);

    border-color:#29a8ff;

    box-shadow:0 18px 40px rgba(0,140,255,.18);

}

/*==================================
EXPERIENCE
==================================*/

.experience{

    max-width:1200px;

    margin:auto;

    padding:100px 8%;

}

.timeline{

    position:relative;

    margin-top:60px;

}

.timeline::before{

    content:"";

    position:absolute;

    left:18px;

    top:0;

    width:2px;

    height:100%;

    background:#29a8ff;

}

.timeline-item{

    position:relative;

    padding-left:70px;

    margin-bottom:60px;

}

.timeline-dot{

    position:absolute;

    left:8px;

    top:5px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#29a8ff;

    box-shadow:0 0 25px #29a8ff;

}

.timeline-content{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

}

.timeline-content h3{

    margin-bottom:8px;

}

.timeline-content h4{

    color:#29a8ff;

    margin-bottom:12px;

}

.timeline-content span{

    color:#9ca3af;

    display:block;

    margin-bottom:20px;

}

.timeline-content p{

    color:#b8b8b8;

    line-height:1.8;

}

/*==================================
PROJECTS
==================================*/

.projects{

    max-width:1300px;

    margin:auto;

    padding:100px 8%;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.project-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-12px);

    border-color:#29a8ff;

    box-shadow:0 20px 45px rgba(0,140,255,.20);

}

.project-card h3{

    margin-bottom:18px;

    color:#29a8ff;

}

.project-card p{

    color:#9ca3af;

    line-height:1.8;

}
/*==================================
CONTACT
==================================*/

.contact{

    max-width:1200px;
    margin:auto;
    padding:100px 8%;

}

.contact-box{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;

    padding:60px;
    text-align:center;

}

.contact-box h3{

    font-size:36px;
    margin-bottom:20px;

}

.contact-box p{

    color:#9ca3af;
    max-width:700px;
    margin:0 auto 40px;
    line-height:1.8;

}

.contact-links{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

}

.contact-links a{

    text-decoration:none;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.contact-links a:hover{

    background:#1da1ff;

    border-color:#1da1ff;

    transform:translateY(-5px);

}

/*==================================
FOOTER
==================================*/

footer{

    padding:35px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    color:#9ca3af;

    margin-top:100px;

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:1100px){

.hero{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-description{

    margin:auto auto 40px;

}

.hero-buttons{

    justify-content:center;

}

.hero-image{

    margin-top:60px;

}

.hero h1{

    font-size:58px;

}

.about-container{

    grid-template-columns:1fr;

}

.skills-grid{

    grid-template-columns:repeat(2,1fr);

}

.projects-grid{

    grid-template-columns:1fr;

}

.hero-stats{

    grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.header{

    padding:18px 6%;

}

.navbar{

    display:none;

}

.nav-btn{

    display:none;

}

.hero{

    padding-top:120px;

}

.hero h1{

    font-size:46px;

}

.hero h2{

    font-size:22px;

}

.hero-description{

    font-size:16px;

}

.hero-image img{

    width:300px;

}

.image-glow{

    width:300px;
    height:300px;

}

.hero-stats{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.stat-card{

    padding:25px 15px;

}

.stat-card h3{

    font-size:34px;

}

.skills-grid{

    grid-template-columns:1fr;

}

.contact-box{

    padding:35px 25px;

}

.contact-box h3{

    font-size:28px;

}

.contact-links{

    flex-direction:column;

}

}



@media(max-width:480px){

.hero h1{

    font-size:38px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    width:100%;

    text-align:center;

}

.hero-stats{

    grid-template-columns:1fr 1fr;

}

.stat-card h3{

    font-size:30px;

}

.section-title h2{

    font-size:34px;

}

.about-left h3{

    font-size:28px;

}

}
