
body{
    background:red !important;
}

:root{

    --bg:#050816;

    --card:#111827;

    --card2:#1e293b;

    --blue:#3b82f6;

    --blue-light:#60a5fa;

    --white:#ffffff;

    --gray:#94a3b8;

    --border:rgba(255,255,255,.08);

    --transition:.35s;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

}



::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#080b18;

}

::-webkit-scrollbar-thumb{

    background:var(--blue);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#2563eb;

}



::selection{

    background:var(--blue);

    color:white;

}




a{

    text-decoration:none;

    color:white;

}

img{

    display:block;

    max-width:100%;

}



.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}



body{

    position:relative;

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    radial-gradient(circle at top left,#2563eb22,transparent 35%),

    radial-gradient(circle at bottom right,#7c3aed22,transparent 30%),

    radial-gradient(circle at center,#ffffff05,transparent 45%);

    z-index:-2;

}



.blur{

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    filter:blur(170px);

    opacity:.35;

}

.blur1{

    background:#2563eb;

    left:-120px;

    top:-120px;

}

.blur2{

    background:#7c3aed;

    right:-120px;

    bottom:-120px;

}
/*==================================================
                NAVBAR
==================================================*/

.navbar{

    position:fixed;

    top:25px;

    left:50%;

    transform:translateX(-50%);

    width:90%;

    max-width:1400px;

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 35px;

    background:rgba(17,24,39,.55);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    z-index:9999;

    transition:.4s;
    box-shadow:

    0 20px 60px rgba(0,0,0,.35);

    backdrop-filter:blur(25px);

    -webkit-backdrop-filter:blur(25px);

}

.logo{

    font-size:32px;

    font-family:'Space Grotesk',sans-serif;

    font-weight:700;

    color:var(--blue);

    letter-spacing:2px;

}

nav{

    display:flex;

    gap:45px;

}

nav a{

    position:relative;

    color:white;

    font-size:16px;

    font-weight:500;

    transition:.35s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--blue);

    transition:.35s;

}

nav a:hover{

    color:var(--blue);

}

nav a:hover::after{

    width:100%;

}

/*======================
LANGUAGE
======================*/

.language{

    display:flex;

    gap:10px;

}

.language button{

    width:48px;

    height:40px;

    border:none;

    border-radius:12px;

    background:#1e293b;

    color:white;

    cursor:pointer;

    transition:.35s;

    font-weight:600;

}

.language button:hover{

    background:var(--blue);

}

.language .active{

    background:var(--blue);

}


/*==================================================
                HERO
==================================================*/

.hero{

    position:relative;

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.hero-left{

    flex:1;

    animation:fadeUp 1s ease;

}

.hello{

    color:var(--blue-light);

    font-size:18px;

    letter-spacing:5px;

    font-weight:600;

}

.hero-left h1{

    font-size:82px;

    margin:18px 0;

    line-height:1;

    font-family:'Space Grotesk',sans-serif;

}

.hero-left h2{

    font-size:34px;

    color:var(--gray);

    margin-bottom:30px;

}

.description{

    font-size:18px;

    color:#cbd5e1;

    line-height:34px;

    max-width:650px;

}

/*======================
BUTTONS
======================*/

.buttons{

    display:flex;

    gap:18px;

    margin-top:45px;

}

.buttons a{
    box-shadow:

    0 0 30px rgba(59,130,246,.25);
    display:flex;

    align-items:center;

    gap:10px;

    padding:18px 34px;

    border-radius:14px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    transition:.35s;

    font-weight:600;

    position:relative;

    overflow:hidden;

}

.buttons a::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.2);

    transform:skewX(-30deg);

    transition:.5s;

}

.buttons a:hover::before{

    left:130%;

}

.buttons a:hover{
    box-shadow: 0 0 50px rgba(59,130,246,.45);

    transform:translateY(-6px);

}

/*======================
STATS
======================*/

.stats{

    display:flex;

    gap:22px;

    margin-top:60px;

}

.card{
    position:relative;

    overflow:hidden;
    min-width:150px;

    padding:25px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border-radius:18px;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}
.card::before{

content:"";

position:absolute;

width:250px;

height:250px;

background:radial-gradient(circle,#3b82f633,transparent);

top:-180px;

right:-180px;

transition:.5s;

}

.card:hover::before{

top:-100px;

right:-100px;

}
.card:hover{

    transform:translateY(-10px);

}

.card h3{

    color:var(--blue);

    font-size:34px;

    margin-bottom:10px;

}

.card span{

    color:var(--gray);

}

/*======================
PHOTO
======================*/

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;

}

.photo-card{

    width:420px;

    height:540px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:35px;

    overflow:hidden;

    transition:.45s;

    animation:float 5s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(59,130,246,.35),

        0 0 80px rgba(59,130,246,.18);

}

.photo-card:hover{

    transform:rotateY(8deg) rotateX(4deg) scale(1.02);
    box-shadow:
    0 0 40px rgba(59,130,246,.55),

    0 0 100px rgba(59,130,246,.25);

}

.photo-card img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/*======================
SCROLL
======================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

}

.mouse{

    width:30px;

    height:55px;

    border:2px solid white;

    border-radius:25px;

    position:relative;

}

.wheel{

    position:absolute;

    left:50%;

    top:8px;

    width:5px;

    height:10px;

    border-radius:10px;

    background:white;

    transform:translateX(-50%);

    animation:scroll 1.8s infinite;

}

.scroll-indicator p{

    color:var(--gray);

    letter-spacing:3px;

    font-size:12px;

}
#typing{

    color:var(--blue);

    font-weight:700;

    border-right:3px solid var(--blue);

    padding-right:6px;

    animation:cursorBlink .8s infinite;

}

@keyframes cursorBlink{

    50%{

        border-color:transparent;

    }

}
/*=========================================
            CURSOR GLOW
=========================================*/

.cursor-glow{

    position:fixed;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(59,130,246,.18) 0%,
    rgba(59,130,246,.08) 40%,
    transparent 75%);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:-1;

    transition:
    width .3s,
    height .3s;

    filter:blur(20px);

}
.active-nav{

    background:rgba(5,8,22,.92);

    box-shadow:

    0 15px 50px rgba(0,0,0,.35);

    top:15px;

}
.photo-wrapper{

    position:relative;

}

.ring{

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    border:2px solid rgba(59,130,246,.25);

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    animation:rotateRing 18s linear infinite;

}

.ring::before{

    content:"";

    position:absolute;

    width:18px;

    height:18px;

    background:#3b82f6;

    border-radius:50%;

    top:-10px;

    left:50%;

    transform:translateX(-50%);

}
/*==================================
            ABOUT
==================================*/

.about{

    padding:140px 0;

}

.section-title{

    text-align:center;

    margin-bottom:80px;

}

.section-title span{

    color:var(--blue);

    letter-spacing:5px;

    font-size:14px;

}

.section-title h2{

    margin-top:15px;

    font-size:52px;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/* Timeline */

.timeline{

    position:relative;

    border-left:2px solid rgba(255,255,255,.1);

    padding-left:40px;

}

.timeline-item{

    position:relative;

    margin-bottom:55px;

}

.circle{

    position:absolute;

    left:-51px;

    top:8px;

    width:18px;

    height:18px;

    background:var(--blue);

    border-radius:50%;

    box-shadow:0 0 20px var(--blue);

}

.content{

    background:rgba(255,255,255,.04);

    padding:25px;

    border-radius:18px;

    transition:.4s;

}

.content:hover{

    transform:translateX(12px);

}

.content h3{

    color:var(--blue);

    margin-bottom:10px;

}

.content p{

    color:#cbd5e1;

}

/* Right */

.about-text h2{

    font-size:48px;

    margin-bottom:25px;

}

.about-text p{

    line-height:34px;

    color:#cbd5e1;

    margin-bottom:25px;

}
/*=====================================
            PROJECTS
=====================================*/

.projects{

    padding:150px 0;

}

.project-card{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    margin-bottom:120px;

}

.reverse .project-info{

    order:2;

}

.reverse .project-image{

    order:1;

}

.project-type{

    color:var(--blue);

    letter-spacing:3px;

    font-size:14px;

}

.project-info h2{

    font-size:46px;

    margin:20px 0;

}

.project-info p{

    color:#cbd5e1;

    line-height:34px;

    margin-bottom:25px;

}

.tech{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.tech span{

    background:#1e293b;

    padding:10px 18px;

    border-radius:30px;

    color:white;

    transition:.35s;

}

.tech span:hover{

    background:var(--blue);

}

.project-btn{

    display:inline-block;

    padding:16px 32px;

    background:var(--blue);

    border-radius:14px;

    transition:.35s;

}

.project-btn:hover{

    transform:translateY(-5px);

}

.project-image{

    overflow:hidden;

    border-radius:30px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    transition:.5s;

}

.project-image:hover{

    transform:scale(1.04);

}

.project-image img{

    width:100%;

    display:block;

}
/*==================================
            LOADER
==================================*/

#loader{

    position:fixed;

    inset:0;

    background:#050816;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:1s;

}

.loader-box{

    width:420px;

    text-align:center;

}

.loader-box h2{

    margin-bottom:35px;

    letter-spacing:6px;

}

.loader-box p{

    margin-top:20px;

    color:#94a3b8;

}

.loader-bar{

    width:100%;

    height:10px;

    background:#111827;

    border-radius:20px;

    overflow:hidden;

}

.loader-progress{

    width:0%;

    height:100%;

    background:linear-gradient(90deg,#2563eb,#60a5fa);

    animation:loading 2.5s forwards;

}

.loader-hide{

    opacity:0;

    visibility:hidden;

}
/*==================================
            TECH STACK
==================================*/
/*==========================
TECH STACK
==========================*/

.tech-stack{

    padding:170px 0;

}

.skills-circle{

    position:relative;

    width:700px;

    height:700px;

    margin:auto;

}

.center-image{

    position:absolute;

    width:190px;

    height:190px;

    object-fit:cover;

    border-radius:50%;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    border:4px solid #3b82f6;

    box-shadow:0 0 45px #3b82f6;

}

.skill{

    position:absolute;

    width:130px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    color:white;

    transition:.35s;

    cursor:pointer;

}

.skill:hover{

    background:#2563eb;

    transform:scale(1.12);

    box-shadow:0 0 25px #3b82f6;

}

/* ÜST */

.s1{top:0;left:50%;transform:translateX(-50%);}
.s2{top:45px;right:130px;}
.s3{top:150px;right:25px;}
.s4{top:300px;right:0;}
.s5{bottom:150px;right:25px;}
.s6{bottom:45px;right:130px;}
.s7{bottom:0;left:50%;transform:translateX(-50%);}
.s8{bottom:45px;left:130px;}
.s9{bottom:150px;left:25px;}
.s10{top:300px;left:0;}
.s11{top:150px;left:25px;}
.s12{top:45px;left:130px;}
.s13{
    top:90px;
    left:50%;
    transform:translateX(-50%);
}
.s14{
    bottom:90px;
    left:50%;
    transform:translateX(-50%);
}
.s15{
    left:90px;
    top:50%;
    transform:translateY(-50%);
}
.s16{
    right:90px;
    top:50%;
    transform:translateY(-50%);
}
/*================ CONTACT ================*/

.contact{

    padding:150px 0;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-info h3{

    font-size:36px;

    margin-bottom:20px;

}

.contact-info p{

    color:#cbd5e1;

    line-height:32px;

    margin-bottom:40px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

    font-size:18px;

}

.contact-item i{

    color:var(--blue);

    font-size:24px;

}
.contact-item a{

    color:white;
    text-decoration:none;
    transition:.3s;
    word-break:break-all;

}

.contact-item a:hover{

    color:#3b82f6;

}
.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form textarea{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    padding:18px;

    border-radius:15px;

    color:white;

    resize:none;

    font-size:16px;

}

.contact-form button{

    background:var(--blue);

    border:none;

    color:white;

    padding:18px;

    border-radius:15px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-5px);

}
footer{

    padding:40px;

    text-align:center;

    color:#94a3b8;

    border-top:1px solid rgba(255,255,255,.08);

}
/*==================================
            PROJECT MODAL
==================================*/

.modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(10px);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.modal.active{

    opacity:1;

    visibility:visible;

}

.modal-box{

    width:90%;

    max-width:850px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    position:relative;

    animation:modalUp .4s ease;

}

.modal-box img{

    width:80%;

    max-height:280px;

    object-fit:cover;

    display:block;

    margin:0 auto 30px;

    border-radius:20px;

    border:2px solid rgba(59,130,246,.3);

    box-shadow:0 0 25px rgba(59,130,246,.25);

}

.modal-box h2{

    font-size:34px;

    margin-bottom:20px;

}

.modal-box p{

    color:#cbd5e1;

    line-height:32px;

    margin-bottom:25px;

}

#modalTech{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

#modalTech span{

    background:#1e293b;

    padding:10px 18px;

    border-radius:30px;

}

.close-modal{

    position:absolute;

    right:25px;

    top:20px;

    font-size:34px;

    cursor:pointer;

    transition:.3s;

}

.close-modal:hover{

    color:#3b82f6;

}

@keyframes modalUp{

    from{

        transform:translateY(40px);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}