:root{

--bg:#050816;
--bg2:#08111f;

--primary:#4F7CFF;
--cyan:#00D4FF;
--purple:#8B5CF6;

--text:#fff;
--muted:#96A6C7;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Plus Jakarta Sans';

background:var(--bg);

color:white;

overflow-x:hidden;

min-height:100vh;

}

.grid{

position:fixed;

inset:0;

background-image:

linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

background-size:70px 70px;

opacity:.35;

z-index:-10;

}

.aurora{

position:fixed;

inset:0;

background:

radial-gradient(circle at 20% 20%,
rgba(79,124,255,.18),
transparent 40%),

radial-gradient(circle at 80% 10%,
rgba(0,212,255,.15),
transparent 40%),

radial-gradient(circle at 60% 80%,
rgba(139,92,246,.18),
transparent 40%);

filter:blur(40px);

z-index:-9;

animation:auroraMove 12s ease-in-out infinite;

}

@keyframes auroraMove{

50%{

transform:scale(1.2)
translateY(-40px);

}

}

.navbar{

width:min(1200px,92%);

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:25px 0;

}

.logo{

font-family:'Space Grotesk';

font-size:2rem;

font-weight:700;

color:white;

text-decoration:none;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        180px
        0
        120px;

}

.hero-wrapper{

    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(420px,560px);

    align-items: center;

    gap: 80px;

}

.hero-content{

    position: relative;

    z-index: 2;

}

.hero-visual{

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 650px;

}

/* ==========================================================
   AURORA
========================================================== */

.hero-aurora{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    z-index:-2;

    animation:auroraMove 18s ease-in-out infinite alternate;

}

.aurora-1{

    width:520px;
    height:520px;

    top:-120px;
    left:-160px;

    background:
    rgba(79,124,255,.22);

}

.aurora-2{

    width:620px;
    height:620px;

    right:-180px;
    bottom:-120px;

    background:
    rgba(0,212,255,.18);

}

@keyframes auroraMove{

    0%{

        transform:
            translate(0,0)
            scale(1);

    }

    100%{

        transform:
            translate(40px,-30px)
            scale(1.15);

    }

}

.hero-grid{

    position:absolute;

    inset:0;

    opacity:.05;

    z-index:-3;

    background-image:

        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size:60px 60px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 22px;

    margin-bottom:30px;

    border-radius:999px;

    background:

        rgba(255,255,255,.05);

    border:

        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

}

.badge-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#00ff88;

    box-shadow:

        0 0 15px #00ff88;

    animation:pulse 2s infinite;

}

@keyframes pulse{

    50%{

        transform:scale(1.4);

        opacity:.5;

    }

}

.hero-title{

    font-size:
        clamp(3.5rem,7vw,6rem);

    line-height:1.05;

    font-weight:800;

    margin-bottom:22px;

}

.hero-title span{

    background:

    linear-gradient(

        135deg,

        #4F7CFF,

        #00D4FF,

        #8B5CF6

    );

    background-size:300%;

    animation:

        gradientFlow 8s linear infinite;

    -webkit-background-clip:text;

    color:transparent;

}

@keyframes gradientFlow{

    from{

        background-position:0;

    }

    to{

        background-position:300%;

    }

}

.hero-subtitle{

    font-size:1.6rem;

    color:#00D4FF;

    margin-bottom:30px;

    min-height:40px;

}

.hero-desc{

    max-width:620px;

    line-height:1.9;

    color:#a8b8d5;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:50px;

}

.hero-buttons .btn{

    min-width:190px;

    justify-content:center;

}

.hero-stats{

    display:flex;

    gap:45px;

    flex-wrap:wrap;

}

.hero-stats h3{

    font-size:2.2rem;

    margin-bottom:8px;

}

.hero-stats span{

    color:#91a7c7;

    font-size:.95rem;

}

/* ==========================================================
   HERO LAPTOP
========================================================== */

.hero-laptop{

    position:relative;

    width:520px;

    perspective:1800px;

    transform-style:preserve-3d;

    animation:laptopFloat 6s ease-in-out infinite;

}

.screen{

    position:relative;

    width:100%;

    height:340px;

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.02)
        );

    backdrop-filter:blur(28px);

    box-shadow:
        0 40px 100px rgba(0,0,0,.45),
        0 0 80px rgba(0,212,255,.12);

    transform:
        rotateX(10deg);

}

.base{

    width:560px;

    height:20px;

    margin:auto;

    margin-top:-4px;

    border-radius:0 0 24px 24px;

    background:
        linear-gradient(
            180deg,
            #bfc6d3,
            #7d8796
        );

    transform:
        perspective(800px)
        rotateX(72deg);

    box-shadow:

        0 20px 60px rgba(0,0,0,.35);

}

@keyframes laptopFloat{

    50%{

        transform:
            translateY(-16px)
            rotateY(-4deg);

    }

}

.hero-divider{

    position:absolute;

    left:0;

    bottom:-2px;

    width:100%;

    color:#08111f;

    line-height:0;

}

.hero-divider svg{

    display:block;

    width:100%;

    height:140px;

}

.hero-glow{

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(0,212,255,.35),

        transparent);

    filter:blur(60px);

    animation:

        glowMove 12s ease-in-out infinite;

}

.glow-left{

    left:-120px;

    top:220px;

}

.glow-right{

    right:-100px;

    bottom:120px;

}

@keyframes glowMove{

    50%{

        transform:

            translateY(-40px)

            scale(1.15);

    }

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:.03;

    pointer-events:none;

    background-image:

        radial-gradient(

        rgba(255,255,255,.8) 1px,

        transparent 1px);

    background-size:6px 6px;

}

.hero-visual,
.hero-laptop,
.orbit-ring,
.tech-card,
.hero-glow{

    will-change:

        transform;

    transform-style:

        preserve-3d;

    backface-visibility:

        hidden;

}


/* ==========================================================
   CODE EDITOR
========================================================== */

.screen-header{

    display:flex;

    align-items:center;

    gap:10px;

    height:56px;

    padding:0 20px;

    border-bottom:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

}

.screen-header span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.screen-header span:nth-child(1){

    background:#ff5f57;

}

.screen-header span:nth-child(2){

    background:#febc2e;

}

.screen-header span:nth-child(3){

    background:#28c840;

}

.code-lines{

    padding:34px;

}

.code-lines div{

    height:12px;

    margin-bottom:18px;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            rgba(79,124,255,.95),
            rgba(0,212,255,.35)
        );

    animation:codePulse 3s ease-in-out infinite;

}

.code-lines div:nth-child(1){

    width:85%;

}

.code-lines div:nth-child(2){

    width:60%;

}

.code-lines div:nth-child(3){

    width:92%;

}

.code-lines div:nth-child(4){

    width:55%;

}

.code-lines div:nth-child(5){

    width:78%;

}

@keyframes codePulse{

    50%{

        opacity:.45;

    }

}

/* ==========================================================
   TECH CARDS
========================================================== */

.tech-card{

    position:absolute;

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:130px;

    padding:14px 22px;

    border-radius:18px;

    color:#fff;

    font-weight:600;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.28);

}

.tech-card::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    padding:1px;

    background:
        linear-gradient(
            135deg,
            #4F7CFF,
            #00D4FF,
            #8B5CF6
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

}

.html{

    top:10px;

    left:-30px;

    animation:floatOne 5s ease-in-out infinite;

}

.css{

    top:90px;

    right:-50px;

    animation:floatTwo 6s ease-in-out infinite;

}

.js{

    bottom:90px;

    left:-50px;

    animation:floatThree 6.5s ease-in-out infinite;

}

.wp{

    bottom:20px;

    right:-20px;

    animation:floatFour 5.5s ease-in-out infinite;

}

.laravel{

    top:220px;

    right:-90px;

    animation:floatFive 7s ease-in-out infinite;

}

@keyframes floatOne{

    50%{

        transform:
            translateY(-14px);

    }

}

@keyframes floatTwo{

    50%{

        transform:
            translateY(12px);

    }

}

@keyframes floatThree{

    50%{

        transform:
            translate(-8px,-10px);

    }

}

@keyframes floatFour{

    50%{

        transform:
            translateY(-18px);

    }

}

@keyframes floatFive{

    50%{

        transform:
            translate(10px,-12px);

    }

}

/* ==========================================================
   SCROLL DOWN
========================================================== */

.scroll-down{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    width:36px;

    height:64px;

    border-radius:999px;

    border:2px solid rgba(255,255,255,.2);

    display:flex;

    justify-content:center;

    padding-top:10px;

}

.scroll-down span{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#00D4FF;

    animation:scrollDot 2s infinite;

}

@keyframes scrollDot{

    0%{

        transform:translateY(0);

        opacity:1;

    }

    100%{

        transform:translateY(26px);

        opacity:0;

    }

}
/* .hero{

max-width:1200px;

margin:auto;

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

padding:40px 20px;

}

.hero h1{

font-family:'Space Grotesk';

font-size:5rem;

line-height:1;

margin:20px 0;

}

.hero h1 span{

background:
linear-gradient(90deg,
var(--primary),
var(--cyan));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.profile-card{

width:430px;
height:430px;

margin:auto;

border-radius:50%;

background:rgba(255,255,255,.05);

backdrop-filter:blur(30px);

border:1px solid rgba(255,255,255,.08);

position:relative;

display:flex;

justify-content:center;
align-items:center;

}

.profile-card img{

width:80%;

border-radius:50%;

}

.badge{

position:absolute;

padding:10px 18px;

border-radius:40px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

font-size:.8rem;

} */

.html{top:20px;left:-20px;}
.css{right:-20px;top:60px;}
.js{bottom:30px;left:-10px;}
.wp{bottom:50px;right:-30px;}



/* ===========================================================
   ABOUT SECTION
=========================================================== */

.about{
    position:relative;
    padding:140px 0;
    overflow:hidden;
}

.container{
    width:min(1200px,92%);
    margin:auto;
    position:relative;
    z-index:2;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:70px;
    align-items:center;
}

/* ==============================
   SECTION TAG
============================== */

.section-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    border-radius:100px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    color:#8fd9ff;

    font-weight:600;

    font-size:.85rem;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.section-tag::before{

    content:"";

    width:10px;
    height:10px;

    border-radius:50%;

    background:#00d4ff;

    box-shadow:
    0 0 15px #00d4ff,
    0 0 30px #00d4ff;

}

/* ==============================
   TITLE
============================== */

.section-title{

    font-family:"Space Grotesk",sans-serif;

    font-size:clamp(2.7rem,6vw,4.4rem);

    font-weight:700;

    line-height:1.08;

    margin-bottom:28px;

    letter-spacing:-2px;

}

.section-title span{

    background:
    linear-gradient(
    90deg,
    #4f7cff,
    #00d4ff,
    #8b5cf6);

    background-size:300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:gradientMove 8s linear infinite;

}

@keyframes gradientMove{

    0%{
        background-position:left;
    }

    100%{
        background-position:right;
    }

}

/* ==============================
   DESCRIPTION
============================== */

.section-desc{

    color:#9fb1cf;

    font-size:1.05rem;

    line-height:1.9;

    margin-bottom:22px;

    max-width:700px;

}

/* ==============================
   FEATURE LIST
============================== */

.about-list{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-top:45px;

}

.about-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.icon-circle{

    width:52px;
    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
    135deg,
    rgba(79,124,255,.25),
    rgba(0,212,255,.15));

    border:1px solid rgba(255,255,255,.08);

    color:#00d4ff;

    font-weight:700;

    flex-shrink:0;

    transition:.4s;

}

.about-item:hover .icon-circle{

    transform:translateY(-6px) scale(1.05);

    box-shadow:
    0 0 25px rgba(79,124,255,.35);

}

.about-item h4{

    font-size:1.15rem;

    margin-bottom:8px;

}

.about-item p{

    color:#93a7c8;

    line-height:1.8;

}

/* ==============================
   RIGHT COLUMN
============================== */

.about-right{

    display:flex;

    flex-direction:column;

    gap:28px;

}

/* ==============================
   RESPONSIVE
============================== */

@media(max-width:991px){

    .about{

        padding:90px 0;

    }

    .about-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .section-title{

        font-size:2.8rem;

    }

}

@media(max-width:768px){

    .section-title{

        font-size:2.2rem;

    }

    .section-desc{

        font-size:1rem;

    }

    .about-item{

        gap:15px;

    }

}


/* ===========================================================
   GLASS CARD
=========================================================== */

.glass-card{
    position:relative;
    overflow:hidden;

    padding:38px;

    border-radius:28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

/* Aurora Glow */

.glass-card::before{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    top:-130px;
    right:-100px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(79,124,255,.45),
        transparent 70%);

    filter:blur(30px);

    opacity:.7;

    transition:.5s;

}

.glass-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    padding:1px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.20),
            rgba(79,124,255,.35),
            rgba(0,212,255,.35),
            rgba(255,255,255,.08)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    pointer-events:none;

}

/* Hover */

.glass-card:hover{

    transform:
        translateY(-12px);

    border-color:
        rgba(0,212,255,.35);

    box-shadow:
        0 30px 70px rgba(0,0,0,.45),
        0 0 40px rgba(79,124,255,.18);

}

.glass-card:hover::before{

    transform:
        scale(1.2);

    opacity:1;

}

/* =====================================
   MINI TITLE
===================================== */

.mini-title{

    display:inline-block;

    margin-bottom:18px;

    font-size:.82rem;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#8fd9ff;

    font-weight:700;

}

/* =====================================
   EXPERIENCE CARD
===================================== */

.experience-card{

    min-height:280px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.experience-card h3{

    font-family:"Space Grotesk",sans-serif;

    font-size:5.5rem;

    line-height:1;

    margin:15px 0;

    background:
        linear-gradient(
            135deg,
            #4F7CFF,
            #00D4FF,
            #8B5CF6);

    background-size:300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:gradientMove 8s linear infinite;

}

.experience-card p{

    color:#9cb2d2;

    font-size:1rem;

    letter-spacing:1px;

}

/* =====================================
   MY FOCUS
===================================== */

.glass-card h4{

    font-size:1.45rem;

    margin-bottom:22px;

    font-family:"Space Grotesk",sans-serif;

}

.glass-card ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:16px;

}

.glass-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#c9d5eb;

    transition:.35s;

}

.glass-card ul li::before{

    content:"";

    width:10px;
    height:10px;

    border-radius:50%;

    background:#00d4ff;

    box-shadow:
        0 0 12px #00d4ff,
        0 0 24px #00d4ff;

}

.glass-card ul li:hover{

    transform:translateX(8px);

    color:#ffffff;

}

/* =====================================
   FLOAT ANIMATION
===================================== */

.experience-card{

    animation:
        floatCard 6s ease-in-out infinite;

}

@keyframes floatCard{

    0%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(-12px);

    }

    100%{

        transform:
            translateY(0);

    }

}


/* ===========================================================
   PART 2.1.2.3
   AURORA BACKGROUND • FLOATING BLUR • MESH
=========================================================== */

/* About sebagai parent */
.about{
    position: relative;
    isolation: isolate;
}

/* Aurora Layer */
.about::before{
    content:"";
    position:absolute;
    inset:-20%;
    z-index:-3;
    pointer-events:none;

    background:
        radial-gradient(circle at 15% 20%,
            rgba(79,124,255,.18),
            transparent 35%),

        radial-gradient(circle at 85% 10%,
            rgba(0,212,255,.15),
            transparent 35%),

        radial-gradient(circle at 70% 80%,
            rgba(139,92,246,.18),
            transparent 35%),

        radial-gradient(circle at 30% 75%,
            rgba(0,212,255,.08),
            transparent 40%);

    filter:blur(80px);

    animation:auroraAbout 18s ease-in-out infinite alternate;
}

/* Mesh Gradient */

.about::after{

    content:"";

    position:absolute;

    inset:0;

    z-index:-2;

    opacity:.25;

    pointer-events:none;

    background:

    linear-gradient(
        45deg,
        transparent 0%,
        rgba(255,255,255,.02) 50%,
        transparent 100%
    ),

    linear-gradient(
        -45deg,
        transparent 0%,
        rgba(79,124,255,.03) 50%,
        transparent 100%
    );

}

/* =============================
   FLOATING BLUR
============================= */

.section-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    pointer-events:none;

    z-index:-1;

}

.blur-left{

    width:260px;
    height:260px;

    top:80px;
    left:-100px;

    background:rgba(79,124,255,.22);

    animation:blobOne 12s ease-in-out infinite;

}

.blur-right{

    width:340px;
    height:340px;

    right:-120px;
    bottom:40px;

    background:rgba(0,212,255,.15);

    animation:blobTwo 15s ease-in-out infinite;

}

/* =============================
   AMBIENT LIGHT
============================= */

.about-grid{

    position:relative;

}

.about-grid::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:

    radial-gradient(circle,
        rgba(255,255,255,.04),
        transparent 70%);

    filter:blur(60px);

    z-index:-1;

}

/* =============================
   ANIMATION
============================= */

@keyframes auroraAbout{

    0%{

        transform:
        scale(1)
        rotate(0deg);

    }

    50%{

        transform:
        scale(1.08)
        rotate(6deg)
        translateY(-25px);

    }

    100%{

        transform:
        scale(1.15)
        rotate(-5deg)
        translateY(20px);

    }

}

@keyframes blobOne{

    0%{

        transform:
        translate(0,0)
        scale(1);

    }

    50%{

        transform:
        translate(40px,-30px)
        scale(1.15);

    }

    100%{

        transform:
        translate(-20px,20px)
        scale(.95);

    }

}

@keyframes blobTwo{

    0%{

        transform:
        translate(0,0)
        scale(1);

    }

    50%{

        transform:
        translate(-35px,-25px)
        scale(1.12);

    }

    100%{

        transform:
        translate(25px,30px)
        scale(.9);

    }

}

/* =============================
   SOFT PARTICLE
============================= */

.about .particle{

    position:absolute;

    width:6px;
    height:6px;

    border-radius:50%;

    background:#7fdfff;

    box-shadow:
        0 0 12px #7fdfff;

    opacity:.6;

    animation:particleFloat 10s linear infinite;

}

@keyframes particleFloat{

    from{

        transform:
            translateY(20px);

        opacity:0;

    }

    20%{

        opacity:.8;

    }

    80%{

        opacity:.8;

    }

    to{

        transform:
            translateY(-180px);

        opacity:0;

    }

}


/* ===========================================================
   PART 2.1.2.4
   FINAL POLISH • SVG DIVIDER • SCROLL REVEAL
=========================================================== */

/* ==========================
   SVG DIVIDER
========================== */

.wave-divider{
    position:absolute;
    left:0;
    bottom:-2px;
    width:100%;
    line-height:0;
    overflow:hidden;
    z-index:5;
}

.wave-divider svg{
    display:block;
    width:100%;
    height:140px;
}

.wave-divider path{
    fill:#050816;
}

/* Glow tipis di atas divider */
.wave-divider::before{
    content:"";
    position:absolute;
    left:0;
    top:-8px;
    width:100%;
    height:24px;
    background:linear-gradient(
        90deg,
        rgba(79, 123, 255, 0),
        rgba(0, 213, 255, 0),
        rgba(138, 92, 246, 0)
    );
    filter:blur(16px);
    opacity:.75;
}

/* ==========================
   SCROLL REVEAL
========================== */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.8,.2,1);
    will-change:transform,opacity;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* Variasi */

.reveal-left{
    opacity:0;
    transform:translateX(-70px);
    transition:all .9s cubic-bezier(.2,.8,.2,1);
}

.reveal-left.active{
    opacity:1;
    transform:none;
}

.reveal-right{
    opacity:0;
    transform:translateX(70px);
    transition:all .9s cubic-bezier(.2,.8,.2,1);
}

.reveal-right.active{
    opacity:1;
    transform:none;
}

/* ==========================
   MICRO INTERACTION
========================== */

.section-title,
.section-tag,
.about-item,
.glass-card{
    transition:all .35s ease;
}

.about:hover .section-title{
    letter-spacing:-1px;
}

.about:hover .section-title span{
    filter:drop-shadow(0 0 18px rgba(0,212,255,.28));
}

.about-item:hover h4{
    color:#ffffff;
}

.about-item:hover p{
    color:#c8d6f2;
}

/* ==========================
   IMAGE / CARD PARALLAX READY
========================== */

.parallax{
    transform:translate3d(0,0,0);
    transition:transform .2s linear;
    will-change:transform;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:991px){

    .wave-divider svg{
        height:90px;
    }

    .glass-card{
        padding:30px;
    }

    .experience-card{
        min-height:220px;
    }

    .experience-card h3{
        font-size:4.2rem;
    }

}

@media (max-width:768px){

    .about{
        padding:90px 0 70px;
    }

    .wave-divider svg{
        height:70px;
    }

    .glass-card{
        border-radius:22px;
        padding:24px;
    }

    .experience-card h3{
        font-size:3.4rem;
    }

    .glass-card h4{
        font-size:1.2rem;
    }

    .mini-title{
        letter-spacing:2px;
        font-size:.75rem;
    }

}

@media (max-width:480px){

    .section-title{
        font-size:2rem;
    }

    .section-desc{
        line-height:1.8;
    }

    .icon-circle{
        width:46px;
        height:46px;
    }

    .glass-card{
        padding:20px;
    }

}

/* ===========================================================
   PART 3.2.1
   SKILLS SECTION
=========================================================== */

.skills{

    position:relative;

    padding:140px 0;

    overflow:hidden;

}

/* ==========================
   HEADER
========================== */

.skills-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 90px;

}

/* ==========================
   GRID
========================== */

.skills-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    gap:80px;

    align-items:center;

}

/* ==========================
   CENTER
========================== */

.skills-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ==========================
   CORE
========================== */

.skills-core{

    position:relative;

    width:500px;

    height:500px;

}

/* ==========================
   CENTER LOGO
========================== */

.core-logo{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:150px;
    height:150px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:3rem;

    font-family:"Space Grotesk";

    font-weight:700;

    background:

    linear-gradient(
    135deg,
    rgba(79,124,255,.25),
    rgba(0,212,255,.15));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

    box-shadow:

    0 20px 60px rgba(0,0,0,.45),

    0 0 40px rgba(79,124,255,.20);

}

/* ==========================
   RING
========================== */

.core-ring{

    position:absolute;

    left:50%;
    top:50%;

    border-radius:50%;

    transform:translate(-50%,-50%);

    border:1px solid rgba(255,255,255,.08);

}

.ring-1{

    width:220px;
    height:220px;

}

.ring-2{

    width:330px;
    height:330px;

}

.ring-3{

    width:440px;
    height:440px;

}

/* ==========================
   ORBIT
========================== */

.orbit{

    position:absolute;

    left:50%;
    top:50%;

    width:90px;
    height:90px;

    margin-left:-45px;
    margin-top:-45px;

    display:flex;

    justify-content:center;
    align-items:center;

}

.orbit span{

    width:80px;
    height:80px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    font-weight:600;

    transition:.4s;

}

/* posisi */

.orbit-html{

    transform:
    rotate(0deg)
    translateY(-220px);

}

.orbit-css{

    transform:
    rotate(60deg)
    translateY(-220px);

}

.orbit-js{

    transform:
    rotate(120deg)
    translateY(-220px);

}

.orbit-php{

    transform:
    rotate(180deg)
    translateY(-220px);

}

.orbit-wp{

    transform:
    rotate(240deg)
    translateY(-220px);

}

.orbit-ui{

    transform:
    rotate(300deg)
    translateY(-220px);

}

/* hover */

.orbit span:hover{

    transform:scale(1.12);

    box-shadow:

    0 0 25px rgba(0,212,255,.35);

}

/* ==========================================================
   TECH ORBIT
========================================================== */

.hero-visual{

    position:relative;

    isolation:isolate;

}

.orbit{

    position:absolute;

    inset:0;

    animation:orbitRotate 24s linear infinite;

    pointer-events:none;

}

.orbit:nth-child(even){

    animation-direction:reverse;

}

@keyframes orbitRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

.orbit-icon{

    position:absolute;

    width:72px;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

    font-size:2rem;

    color:#fff;

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    background:

        rgba(255,255,255,.06);

    box-shadow:

        0 25px 60px rgba(0,0,0,.35);

    transition:.35s;

}

.orbit-icon:hover{

    transform:

        scale(1.12);

}

.html5{

    color:#ff6b3d;

}

.css3{

    color:#4cc3ff;

}

.js{

    color:#ffd43b;

}

.wordpress{

    color:#4aa7ff;

}

.react{

    color:#61dafb;

}

.laravel{

    color:#ff5b5b;

}

.figma{

    color:#b56cff;

}

.orbit-1 .orbit-icon{

    top:-20px;
    left:50%;

    transform:translateX(-50%);

}

.orbit-2 .orbit-icon{

    right:0;
    top:90px;

}

.orbit-3 .orbit-icon{

    right:30px;
    bottom:60px;

}

.orbit-4 .orbit-icon{

    left:50%;
    bottom:-20px;

    transform:translateX(-50%);

}

.orbit-5 .orbit-icon{

    left:20px;
    bottom:70px;

}

.orbit-6 .orbit-icon{

    left:-10px;
    top:100px;

}

.orbit-7 .orbit-icon{

    top:50%;
    right:-40px;

    transform:translateY(-50%);

}

.orbit-1 .orbit-icon{

    top:-20px;
    left:50%;

    transform:translateX(-50%);

}

.orbit-2 .orbit-icon{

    right:0;
    top:90px;

}

.orbit-3 .orbit-icon{

    right:30px;
    bottom:60px;

}

.orbit-4 .orbit-icon{

    left:50%;
    bottom:-20px;

    transform:translateX(-50%);

}

.orbit-5 .orbit-icon{

    left:20px;
    bottom:70px;

}

.orbit-6 .orbit-icon{

    left:-10px;
    top:100px;

}

.orbit-7 .orbit-icon{

    top:50%;
    right:-40px;

    transform:translateY(-50%);

}

.orbit-icon::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:inherit;

    background:currentColor;

    filter:blur(22px);

    opacity:.18;

    z-index:-1;

}

@media (max-width:992px){

    .hero-wrapper{

        grid-template-columns:1fr;

        gap:60px;

        text-align:center;

    }

    .hero-desc{

        margin-inline:auto;

    }

    .hero-buttons,
    .hero-stats{

        justify-content:center;

    }

    .hero-visual{

        min-height:520px;

    }

    .hero-laptop{

        width:min(100%,440px);

    }

    .base{

        width:calc(100% + 32px);

    }

}

/* ==========================================================
   SINGLE ORBIT
========================================================== */

.orbit-system{

    position:absolute;

    inset:0;

    display:grid;

    place-items:center;

    pointer-events:none;

}

.orbit-ring{

    position:relative;

    width:620px;

    height:620px;

    border-radius:50%;

    animation:orbitSpin 28s linear infinite;

}

.orbit-ring::before{

    content:"";

    position:absolute;

    inset:50% auto auto 50%;

    width:520px;

    height:520px;

    transform:translate(-50%,-50%);

    border-radius:50%;

    border:1px dashed rgba(255,255,255,.08);

}


.orbit-node{

    position:absolute;

    top:50%;

    left:50%;

    width:74px;

    height:74px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

    font-size:2rem;

    color:#fff;

    background:rgba(255,255,255,.07);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    box-shadow:

        0 20px 45px rgba(0,0,0,.28);

    transform:
        rotate(var(--angle))
        translateX(260px)
        rotate(calc(var(--angle) * -1));

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    pointer-events:auto;

}

.orbit-node:hover{

    transform:
        rotate(var(--angle))
        translateX(260px)
        rotate(calc(var(--angle) * -1))
        scale(1.15);

    box-shadow:

        0 20px 60px rgba(0,212,255,.28);

}

/* @keyframes orbitSpin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

} */

@media (max-width:992px){

    .orbit-ring{

        width:460px;
        height:460px;

    }

    .orbit-ring::before{

        width:380px;
        height:380px;

    }

    .orbit-node{

        transform:
            rotate(var(--angle))
            translateX(190px)
            rotate(calc(var(--angle) * -1));

    }

}

/* ==========================================================
   HERO ENTRANCE
========================================================== */

.hero-badge,
.hero-title,
.hero-subtitle,
.hero-desc,
.hero-buttons,
.hero-stats,
.hero-visual{

    opacity:0;

    transform:translateY(40px);

    animation:heroFade .8s forwards;

}

.hero-badge{

    animation-delay:.2s;

}

.hero-title{

    animation-delay:.4s;

}

.hero-subtitle{

    animation-delay:.6s;

}

.hero-desc{

    animation-delay:.8s;

}

.hero-buttons{

    animation-delay:1s;

}

.hero-stats{

    animation-delay:1.2s;

}

.hero-visual{

    animation-delay:1.1s;

}

@keyframes heroFade{

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-glow{

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:

        radial-gradient(circle,

        rgba(0,212,255,.35),

        transparent);

    filter:blur(60px);

    animation:

        glowMove 12s ease-in-out infinite;

}

.glow-left{

    left:-120px;

    top:220px;

}

.glow-right{

    right:-100px;

    bottom:120px;

}

@keyframes glowMove{

    50%{

        transform:

            translateY(-40px)

            scale(1.15);

    }

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:.03;

    pointer-events:none;

    background-image:

        radial-gradient(

        rgba(255,255,255,.8) 1px,

        transparent 1px);

    background-size:6px 6px;

}

.hero-visual,
.hero-laptop,
.orbit-ring,
.tech-card,
.hero-glow{

    will-change:

        transform;

    transform-style:

        preserve-3d;

    backface-visibility:

        hidden;

}
/* ==========================================================
   LIGHT RAYS
========================================================== */

.light-rays{

position:absolute;

width:900px;

height:900px;

right:-250px;

top:-250px;

background:

conic-gradient(

from 180deg,

rgba(0,212,255,.08),

transparent,

rgba(79,124,255,.08),

transparent

);

filter:blur(80px);

animation:rotateLight 25s linear infinite;

z-index:-3;

}

@keyframes rotateLight{

to{

transform:rotate(360deg);

}

}

.particles{

position:absolute;

inset:0;

pointer-events:none;

overflow:hidden;

}

.particles span{

position:absolute;

width:5px;

height:5px;

background:#00D4FF;

border-radius:50%;

opacity:.3;

animation:particleFloat linear infinite;

}

@keyframes particleFloat{

from{

transform:translateY(100vh);

}

to{

transform:translateY(-100px);

}

}

.hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

background:

radial-gradient(circle,

rgba(0,212,255,.12),

transparent 70%);

pointer-events:none;

left:50%;

top:50%;

transform:translate(-50%,-50%);

filter:blur(80px);

animation:pulseGlow 6s infinite;

}

@keyframes pulseGlow{

50%{

transform:

translate(-50%,-50%)

scale(1.3);

}

}

/* ==========================================================
   HERO SPOTLIGHT
========================================================== */

.hero-spotlight{

    position:absolute;

    inset:0;

    pointer-events:none;

    z-index:-1;

    background:

        radial-gradient(

            320px circle at var(--mx,50%) var(--my,50%),

            rgba(0,212,255,.14),

            rgba(79,124,255,.08) 35%,

            transparent 70%

        );

    transition:
        background .08s linear;

}

.hero-buttons .btn{

    transition:

        transform .18s ease,

        box-shadow .35s ease;

}
/* ==========================
   CARD
========================== */

.skills-cards{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.skill-card{

    padding:28px;

    border-radius:24px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    transition:.4s;

}

.skill-card:hover{

    transform:translateY(-10px);

}

.skill-card h3{

    margin-bottom:15px;

    font-size:1.3rem;

}

.skill-card p{

    color:#9db0cf;

    line-height:1.8;

}

.skill-progress{

    margin-top:20px;

    display:flex;

    justify-content:flex-end;

    font-size:2rem;

    font-weight:700;

    color:#00d4ff;

}

/* ===========================================================
   PART 3.2.2
   PREMIUM ANIMATION
=========================================================== */

/* ==========================
   BACKGROUND
========================== */

.skills{

    isolation:isolate;

}

.skills::before{

    content:"";

    position:absolute;

    inset:-10%;

    z-index:-3;

    background: #050816;

    filter:blur(90px);

    animation:skillsAurora 20s ease-in-out infinite alternate;

}

/* ==========================
   FLOATING BLUR
========================== */

.skills-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    z-index:-2;

}

.blur-skill-1{

    width:320px;

    height:320px;

    left:-120px;

    top:120px;

    background:rgba(79,124,255,.18);

    animation:blobLeft 12s ease-in-out infinite;

}

.blur-skill-2{

    width:360px;

    height:360px;

    right:-120px;

    bottom:60px;

    background:rgba(0,212,255,.14);

    animation:blobRight 16s ease-in-out infinite;

}

/* ==========================
   RINGS
========================== */

.core-ring{

    animation:ringPulse 6s ease-in-out infinite;

}

.ring-2{

    animation-delay:1.5s;

}

.ring-3{

    animation-delay:3s;

}

/* ==========================
   CENTER
========================== */

.core-logo{

    animation:

    logoFloat 6s ease-in-out infinite,

    logoGlow 5s linear infinite;

}

/* ==========================
   ROTATE ORBIT
========================== */

.skills-core{

    animation:

    rotateOrbit 60s linear infinite;

}

/* icon tetap tegak */

.orbit span{

    animation:

    counterRotate 60s linear infinite;

}

/* ==========================
   CARD
========================== */

.skill-card{

    position:relative;

    overflow:hidden;

}

.skill-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-80px;

    top:-80px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(79,124,255,.35),

    transparent 70%);

    filter:blur(20px);

    transition:.4s;

}

.skill-card:hover::before{

    transform:scale(1.4);

}

/* ==========================
   PROGRESS
========================== */

.skill-progress{

    position:relative;

}

.skill-progress span{

    background:

    linear-gradient(

    90deg,

    #4F7CFF,

    #00D4FF);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* ==========================
   KEYFRAMES
========================== */

@keyframes rotateOrbit{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes counterRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(-360deg);

    }

}

@keyframes ringPulse{

    0%{

        transform:

        translate(-50%,-50%)

        scale(1);

        opacity:.35;

    }

    50%{

        transform:

        translate(-50%,-50%)

        scale(1.04);

        opacity:.8;

    }

    100%{

        transform:

        translate(-50%,-50%)

        scale(1);

        opacity:.35;

    }

}

@keyframes logoFloat{

    0%{

        transform:

        translate(-50%,-50%)

        translateY(0);

    }

    50%{

        transform:

        translate(-50%,-50%)

        translateY(-12px);

    }

    100%{

        transform:

        translate(-50%,-50%)

        translateY(0);

    }

}

@keyframes logoGlow{

    0%{

        box-shadow:

        0 0 30px rgba(79,124,255,.25);

    }

    50%{

        box-shadow:

        0 0 70px rgba(0,212,255,.30);

    }

    100%{

        box-shadow:

        0 0 30px rgba(139,92,246,.25);

    }

}

@keyframes blobLeft{

    50%{

        transform:

        translate(50px,-30px)

        scale(1.15);

    }

}

@keyframes blobRight{

    50%{

        transform:

        translate(-40px,40px)

        scale(1.1);

    }

}

@keyframes skillsAurora{

    50%{

        transform:

        scale(1.1)

        rotate(8deg);

    }

}

/* ===========================================================
   PART 3.3.1
   ATOMIC ORBIT
=========================================================== */

.skills-core{

    position:relative;

    width:560px;
    height:560px;

    margin:auto;

    animation:none;

}

/* ===================================
   CENTER
=================================== */

.core-logo{

    width:170px;
    height:170px;

    border-radius:50%;

    z-index:30;

    background:
    linear-gradient(
        135deg,
        rgba(79,124,255,.18),
        rgba(0,212,255,.10)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

}

/* ===================================
   ORBIT LINE
=================================== */

.atomic{

    position:absolute;

    left:50%;
    top:50%;

    width:420px;
    height:170px;

    margin-left:-210px;
    margin-top:-85px;

    border-radius:50%;

    border:

    1px solid rgba(255,255,255,.08);

}

.atomic.one{

    animation:
    spinOne 18s linear infinite;

}

.atomic.two{

    transform:

    rotate(60deg);

    animation:

    spinTwo 20s linear infinite;

}

.atomic.three{

    transform:

    rotate(120deg);

    animation:

    spinThree 24s linear infinite;

}


/* =====================================================
   PART 3.2.3
   RESPONSIVE LAYOUT
===================================================== */

/* ===================================
   Large Desktop
=================================== */

@media (max-width:1400px){

.skills-core{

    width:500px;
    height:500px;

}

.atomic{

    width:390px;
    height:160px;

    margin-left:-195px;
    margin-top:-80px;

}

}

/* ===================================
   Laptop
=================================== */

@media (max-width:1200px){

.skills-grid{

    grid-template-columns:1fr;

    gap:80px;

}

.skills-center{

    order:1;

}

.skills-cards{

    order:2;

    max-width:700px;

    margin:auto;

}

.skills-core{

    width:470px;
    height:470px;

}

.atomic{

    width:360px;
    height:150px;

    margin-left:-180px;
    margin-top:-75px;

}

}

/* ===================================
   Tablet
=================================== */

@media (max-width:992px){

.skills{

    padding:100px 0;

}

.skills-header{

    margin-bottom:70px;

}

.skills-core{

    width:420px;
    height:420px;

}

.core-logo{

    width:135px;
    height:135px;

    font-size:2.4rem;

}

.atomic{

    width:320px;
    height:130px;

    margin-left:-160px;
    margin-top:-65px;

}

.skill-card{

    padding:28px;

}

}

/* ===================================
   Mobile
=================================== */

@media (max-width:768px){

.skills{

    padding:90px 0;

}

.skills-core{

    width:340px;
    height:340px;

}

.core-logo{

    width:115px;
    height:115px;

    font-size:2rem;

}

.atomic{

    width:250px;
    height:100px;

    margin-left:-125px;
    margin-top:-50px;

}

.skill-node{

    width:64px;
    height:64px;

    font-size:.8rem;

}

.skill-card{

    border-radius:20px;

}

.skill-progress{

    font-size:1.5rem;

}

}

/* ===================================
   Small Mobile
=================================== */

@media (max-width:480px){

.skills-core{

    width:280px;
    height:280px;

}

.core-logo{

    width:90px;
    height:90px;

    font-size:1.4rem;

}

.atomic{

    width:210px;
    height:80px;

    margin-left:-105px;
    margin-top:-40px;

}

.skill-node{

    width:52px;
    height:52px;

    font-size:.7rem;

}

.skills-header{

    margin-bottom:45px;

}

.skill-card{

    padding:22px;

}

.skill-card h3{

    font-size:1.15rem;

}

}


/* ==========================================================
   PART 3.2.4
   PREMIUM GLASS FINISH
========================================================== */

/* ===============================
   Skill Card
================================ */

.skill-card{
    position:relative;
    overflow:hidden;
    isolation:isolate;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

/* Animated Border */

.skill-card::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    padding:1px;

    background:

    linear-gradient(
        135deg,
        rgba(79,124,255,.7),
        rgba(0,212,255,.5),
        rgba(139,92,246,.7),
        rgba(79,124,255,.7)
    );

    background-size:300%;

    animation:borderMove 6s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    pointer-events:none;

}

/* Reflection */

.skill-card::after{

    content:"";

    position:absolute;

    width:180px;
    height:300px;

    top:-120px;
    left:-120px;

    transform:rotate(-35deg);

    background:

    linear-gradient(

        transparent,

        rgba(255,255,255,.14),

        transparent

    );

    transition:1s;

}

.skill-card:hover::after{

    left:130%;

}

/* Hover */

.skill-card:hover{

    transform:

        translateY(-12px);

    border-color:

        rgba(0,212,255,.35);

    box-shadow:

        0 30px 80px rgba(0,0,0,.45),

        0 0 40px rgba(0,212,255,.12);

}

/* =================================
   Progress Number
================================= */

.skill-progress span{

    position:relative;

}

.skill-progress span::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-4px;

    width:100%;

    height:2px;

    background:

        linear-gradient(

        90deg,

        #4F7CFF,

        #00D4FF);

    transform:scaleX(.3);

    transform-origin:left;

    transition:.4s;

}

.skill-card:hover .skill-progress span::after{

    transform:scaleX(1);

}

/* =================================
   Orbit Badge
================================= */

.skill-node{

    overflow:hidden;

}

.skill-node::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:

    radial-gradient(

        circle at 30% 30%,

        rgba(255,255,255,.18),

        transparent 65%

    );

}

.skill-node:hover{

    background:

    linear-gradient(

        135deg,

        rgba(79,124,255,.25),

        rgba(0,212,255,.18)

    );

}

/* =================================
   Core Logo
================================= */

.core-logo{

    overflow:hidden;

}

.core-logo::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:

    radial-gradient(

        circle at 30% 30%,

        rgba(255,255,255,.18),

        transparent 70%

    );

}

/* =================================
   Animation
================================= */

@keyframes borderMove{

    0%{

        background-position:left;

    }

    100%{

        background-position:right;

    }

}


/* ==========================================================
   PART 3.3.2
   ATOMIC ORBIT SYSTEM
========================================================== */

.orbit-system{

    position:relative;

    width:560px;
    height:560px;

    margin:auto;

}

/* ===========================
   CENTER
=========================== */

.core-logo{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:170px;
    height:170px;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    justify-content:center;
    align-items:center;

    z-index:50;

    background:
    linear-gradient(
        135deg,
        rgba(79,124,255,.15),
        rgba(0,212,255,.08)
    );

    backdrop-filter:blur(30px);

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

}

.core-logo h2{

    font-size:3rem;

    margin:0;

}

.core-logo small{

    opacity:.7;

    letter-spacing:2px;

}

.core-glow{

    position:absolute;

    inset:-20px;

    border-radius:50%;

    background:

    radial-gradient(circle,

    rgba(0,212,255,.35),

    transparent 70%);

    filter:blur(40px);

    z-index:-1;

}

/* ===========================
   RING
=========================== */

.orbit-ring{

    position:absolute;

    left:50%;
    top:50%;

    border-radius:50%;

    transform-origin:center;

    border:

    1px solid rgba(255,255,255,.08);

}

.orbit-ring-1{

    width:420px;
    height:170px;

    margin-left:-210px;
    margin-top:-85px;

}

.orbit-ring-2{

    width:420px;
    height:170px;

    margin-left:-210px;
    margin-top:-85px;

    transform:
    rotate(60deg);

}

.orbit-ring-3{

    width:420px;
    height:170px;

    margin-left:-210px;
    margin-top:-85px;

    transform:
    rotate(120deg);

}

/* ===========================
   BADGE
=========================== */

.orbit-item{

    position:absolute;

    width:84px;
    height:84px;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:

    linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    overflow:hidden;

}

.orbit-item span{

    font-size:.85rem;

    font-weight:600;

}

/* kiri */

.html,
.js,
.wp{

    left:-42px;

    top:43px;

}

/* kanan */

.css,
.php,
.ui{

    right:-42px;

    top:43px;

}

/* hover */

.orbit-item:hover{

    transform:scale(1.15);

    border-color:#00d4ff;

    box-shadow:

    0 0 35px rgba(0,212,255,.25);

}


/* ==========================================================
   PART 3.3.3
   ORBIT ANIMATION
========================================================== */

/* ===============================
   ORBIT ROTATION
================================ */

/* .orbit-ring-1{
    animation:orbitRotate1 18s linear infinite;
}

.orbit-ring-2{
    animation:orbitRotate2 24s linear infinite;
}

.orbit-ring-3{
    animation:orbitRotate3 30s linear infinite;
} */

/* Badge tetap tegak */

.orbit-item{
    animation:badgeCounterRotate 18s linear infinite;
}

.orbit-ring-2 .orbit-item{
    animation-duration:24s;
}

.orbit-ring-3 .orbit-item{
    animation-duration:30s;
}

/* ===================================
   RING GLOW
=================================== */

.orbit-ring::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(79,124,255,.6),
            rgba(0,212,255,.6),
            transparent
        );

    filter:blur(12px);

    opacity:.35;

    animation:ringGlow 6s linear infinite;

}

/* ===================================
   CORE PULSE
=================================== */

.core-logo{

    animation:
        coreFloat 6s ease-in-out infinite;

}

.core-logo::after{

    content:"";

    position:absolute;

    inset:-12px;

    border-radius:50%;

    border:1px solid rgba(0,212,255,.25);

    animation:corePulse 3s ease-out infinite;

}

/* ===================================
   BADGE EFFECT
=================================== */

.orbit-item{

    box-shadow:

        0 12px 35px rgba(0,0,0,.35);

}

.orbit-item::before{

    content:"";

    position:absolute;

    width:120%;

    height:120%;

    left:-10%;

    top:-10%;

    border-radius:50%;

    background:

        radial-gradient(

            circle at 30% 30%,

            rgba(255,255,255,.18),

            transparent 65%

        );

}

.orbit-item:hover{

    transform:scale(1.12);

    background:

        linear-gradient(

            135deg,

            rgba(79,124,255,.25),

            rgba(0,212,255,.20)

        );

}

/* ===================================
   KEYFRAMES
=================================== */

@keyframes orbitRotate1{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes orbitRotate2{

    from{
        transform:rotate(60deg);
    }

    to{
        transform:rotate(420deg);
    }

}

@keyframes orbitRotate3{

    from{
        transform:rotate(120deg);
    }

    to{
        transform:rotate(480deg);
    }

}

/* badge tetap tegak */

@keyframes badgeCounterRotate{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(-360deg);

    }

}

@keyframes coreFloat{

    0%{

        transform:translate(-50%,-50%) translateY(0);

    }

    50%{

        transform:translate(-50%,-50%) translateY(-10px);

    }

    100%{

        transform:translate(-50%,-50%) translateY(0);

    }

}

@keyframes corePulse{

    0%{

        transform:scale(.9);

        opacity:.8;

    }

    100%{

        transform:scale(1.35);

        opacity:0;

    }

}

@keyframes ringGlow{

    0%{

        opacity:.2;

    }

    50%{

        opacity:.65;

    }

    100%{

        opacity:.2;

    }

}




/* ==========================================================
   PART 3.3.4
   PARTICLE SYSTEM
========================================================== */

.orbit-particles{

    position:absolute;

    inset:0;

    pointer-events:none;

}

/* particle */

.particle{

    position:absolute;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#00d4ff;

    filter:blur(.4px);

    box-shadow:

        0 0 10px #00d4ff,

        0 0 25px rgba(0,212,255,.8);

}

/* posisi */

.p1{

    left:15%;

    top:20%;

    animation:floatParticle1 9s linear infinite;

}

.p2{

    right:18%;

    top:22%;

    animation:floatParticle2 12s linear infinite;

}

.p3{

    left:12%;

    bottom:22%;

    animation:floatParticle3 11s linear infinite;

}

.p4{

    right:14%;

    bottom:20%;

    animation:floatParticle4 10s linear infinite;

}

.p5{

    left:50%;

    top:8%;

    animation:floatParticle5 8s linear infinite;

}

.p6{

    left:48%;

    bottom:8%;

    animation:floatParticle6 13s linear infinite;

}

/* =====================================
   ENERGY LINE
===================================== */

.atomic::after{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(0,212,255,.6),

            transparent

        );

    filter:blur(10px);

    animation:energyRun 5s linear infinite;

}

/* =====================================
   CORE GLOW
===================================== */

.core-glow{

    animation:

        glowPulse 4s ease-in-out infinite;

}

/* =====================================
   KEYFRAME
===================================== */

@keyframes glowPulse{

    0%{

        transform:scale(1);

        opacity:.5;

    }

    50%{

        transform:scale(1.25);

        opacity:1;

    }

    100%{

        transform:scale(1);

        opacity:.5;

    }

}

@keyframes energyRun{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes floatParticle1{

    50%{

        transform:

        translate(25px,-30px);

    }

}

@keyframes floatParticle2{

    50%{

        transform:

        translate(-20px,35px);

    }

}

@keyframes floatParticle3{

    50%{

        transform:

        translate(30px,-15px);

    }

}

@keyframes floatParticle4{

    50%{

        transform:

        translate(-30px,-30px);

    }

}

@keyframes floatParticle5{

    50%{

        transform:

        translate(0,30px);

    }

}

@keyframes floatParticle6{

    50%{

        transform:

        translate(0,-25px);

    }

}


/* ===========================================================
   PART 4.2
   PORTFOLIO SECTION
=========================================================== */

.portfolio{
    position:relative;
    padding:140px 0;
    overflow:hidden;
}

.portfolio-head{
    max-width:760px;
    margin:0 auto 80px;
    text-align:center;
}

/* =====================================
   BACKGROUND BLUR
===================================== */

.portfolio-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:-1;
}

.blur-one{
    width:340px;
    height:340px;
    left:-120px;
    top:120px;
    background:rgba(79,124,255,.18);
}

.blur-two{
    width:380px;
    height:380px;
    right:-140px;
    bottom:80px;
    background:rgba(0,212,255,.14);
}

/* =====================================
   FEATURED CARD
===================================== */

.featured-project{

    position:relative;

    display:grid;

    grid-template-columns:1.15fr .85fr;

    gap:60px;

    align-items:center;

    padding:40px;

    border-radius:32px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    overflow:hidden;

}

/* Animated Border */

.featured-project::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    padding:1px;

    background:

        linear-gradient(
            135deg,
            #4F7CFF,
            #00D4FF,
            #8B5CF6,
            #4F7CFF
        );

    background-size:300%;

    animation:borderMove 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;

}

/* =====================================
   IMAGE
===================================== */

.featured-image{

    position:relative;

    border-radius:26px;

    overflow:hidden;

}

.featured-image img{

    width:100%;

    display:block;

    transition:
        transform .8s ease,
        filter .8s ease;

}

.featured-project:hover img{

    transform:scale(1.08);

    filter:brightness(.9);

}

.featured-overlay{

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,0),
            rgba(0,0,0,.45)
        );

}

/* =====================================
   BADGE
===================================== */

.badge{

    position:absolute;

    top:20px;
    left:20px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    font-size:.8rem;

    letter-spacing:1px;

    border:1px solid rgba(255,255,255,.15);

}

/* =====================================
   CONTENT
===================================== */

.project-category{

    color:#00D4FF;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.8rem;

}

.featured-content h3{

    margin:18px 0;

    font-size:2.2rem;

}

.featured-content p{

    color:#9fb2cf;

    line-height:1.9;

    margin-bottom:30px;

}

/* =====================================
   STACK
===================================== */

.project-stack{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:35px;

}

.project-stack span{

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.project-stack span:hover{

    background:#00D4FF;

    color:#08111f;

    transform:translateY(-5px);

}

/* =====================================
   BUTTON
===================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 32px;

    border-radius:50px;

    background:

        linear-gradient(
            135deg,
            #4F7CFF,
            #00D4FF
        );

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:

        0 15px 40px rgba(0,212,255,.25);

}


.btn-outline{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 32px;

    border-radius:50px;
    
    border:3px solid #00D4FF;

    background:transparent;

    color:#00D4FF;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.btn-outline:hover{

    transform:translateY(-6px);

    box-shadow:

        0 15px 40px rgba(0,212,255,.25);

}

/* ==========================================================
   PART 4.4
   BENTO PORTFOLIO GRID
========================================================== */

.portfolio-grid{

    display:grid;

    grid-template-columns:
        repeat(12,1fr);

    grid-auto-rows:120px;

    gap:28px;

    margin-top:80px;

}

/* ===================================
   CARD
=================================== */

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    background:

    linear-gradient(
        180deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    transition:
        transform .45s,
        box-shadow .45s;

}

/* Layout */

.project-card:nth-child(1){

    grid-column:span 7;

    grid-row:span 4;

}

.project-card:nth-child(2){

    grid-column:span 5;

    grid-row:span 2;

}

.project-card:nth-child(3){

    grid-column:span 5;

    grid-row:span 2;

}

.project-card:nth-child(4){

    grid-column:span 7;

    grid-row:span 4;

}

/* ===================================
   IMAGE
=================================== */

.project-image{

    position:relative;

    height:60%;

    overflow:hidden;

}

.project-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .8s ease,
        filter .8s ease;

}

.project-card:hover img{

    transform:scale(1.1);

    filter:brightness(.85);

}

/* Overlay */

.project-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        180deg,
        transparent,
        rgba(5,8,22,.55)
    );

}

/* ===================================
   CONTENT
=================================== */

.project-info{

    padding:28px;

}

.project-top{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

}

.project-type{

    color:#00D4FF;

    text-transform:uppercase;

    font-size:.75rem;

    letter-spacing:2px;

}

.project-year{

    opacity:.55;

}

.project-info h3{

    font-size:1.7rem;

    margin-bottom:15px;

}

.project-info p{

    color:#9fb2cf;

    line-height:1.8;

}

/* ===================================
   TECH
=================================== */

.project-tech{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:28px;

}

.project-tech span{

    padding:10px 16px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.project-tech span:hover{

    background:#00D4FF;

    color:#08111f;

}

/* ===================================
   NUMBER
=================================== */

.project-number{

    position:absolute;

    right:30px;

    top:25px;

    font-size:4rem;

    font-weight:700;

    color:rgba(255,255,255,.08);

    transition:.5s;

}

.project-card:hover .project-number{

    transform:translateY(-8px);

    color:rgba(255,255,255,.18);

}

/* ===================================
   HOVER
=================================== */

.project-card:hover{

    transform:

    translateY(-12px);

    box-shadow:

    0 30px 80px rgba(0,0,0,.45),

    0 0 40px rgba(0,212,255,.12);

}



/* ==========================================================
   PART 4.5.2
   PREMIUM HOVER EFFECT
========================================================== */

/* ===================================
   LIGHT
=================================== */

.project-light{

    position:absolute;

    inset:0;

    opacity:0;

    pointer-events:none;

    background:

        radial-gradient(

            circle at center,

            rgba(0,212,255,.18),

            transparent 65%

        );

    transition:.5s;

}

.project-card:hover .project-light{

    opacity:1;

}

/* ===================================
   REFLECTION
=================================== */

.project-reflection{

    position:absolute;

    top:-40%;

    left:-60%;

    width:50%;

    height:180%;

    transform:rotate(-25deg);

    background:

        linear-gradient(

            transparent,

            rgba(255,255,255,.18),

            transparent

        );

    opacity:0;

    transition:1s;

}

.project-card:hover .project-reflection{

    left:140%;

    opacity:1;

}

/* ===================================
   BORDER GLOW
=================================== */

.project-card::after{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    background:

        linear-gradient(

            135deg,

            rgba(79,124,255,.35),

            rgba(0,212,255,.35),

            rgba(139,92,246,.35)

        );

    opacity:0;

    filter:blur(24px);

    z-index:-1;

    transition:.45s;

}

.project-card:hover::after{

    opacity:1;

}

/* ===================================
   IMAGE SCALE
=================================== */

.project-card:hover .project-image img{

    transform:

        scale(1.08)

        rotate(.6deg);

}

/* ===================================
   TEXT
=================================== */

.project-card h3{

    transition:.35s;

}

.project-card:hover h3{

    color:#ffffff;

}

.project-card:hover p{

    color:#cfd9ea;

}

/* ===================================
   TECH TAG
=================================== */

.project-tech span{

    position:relative;

    overflow:hidden;

}

.project-tech span::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.18),

            transparent

        );

    transform:translateX(-100%);

}

.project-tech span:hover::before{

    transform:translateX(200%);

    transition:.8s;

}


/* ==========================================================
   PART 5.2
   SERVICES SECTION
========================================================== */

.services{

    position:relative;

    padding:140px 0;

    overflow:hidden;

}

/* ===================================
   HEADER
=================================== */

.services-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 90px;

}

/* ===================================
   GRID
=================================== */

.services-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:32px;

}

/* ===================================
   CARD
=================================== */

.service-card{

    position:relative;

    overflow:hidden;

    padding:42px;

    border-radius:30px;

    background:

        linear-gradient(

            180deg,

            rgba(255,255,255,.08),

            rgba(255,255,255,.03)

        );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    transition:

        transform .45s,

        box-shadow .45s;

}

/* Animated Border */

.service-card::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    padding:1px;

    background:

        linear-gradient(

            135deg,

            #4F7CFF,

            #00D4FF,

            #8B5CF6,

            #4F7CFF

        );

    background-size:300%;

    animation:borderMove 8s linear infinite;

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

}

/* ===================================
   ICON
=================================== */

.service-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    background:

        linear-gradient(

            135deg,

            rgba(79,124,255,.18),

            rgba(0,212,255,.15)

        );

    margin-bottom:28px;

    box-shadow:

        0 15px 35px rgba(0,0,0,.30);

    transition:.4s;

}

/* ===================================
   TITLE
=================================== */

.service-card h3{

    font-size:1.55rem;

    margin-bottom:18px;

}

.service-card p{

    color:#9fb2cf;

    line-height:1.9;

}

/* ===================================
   NUMBER
=================================== */

.service-number{

    position:absolute;

    top:30px;

    right:30px;

    font-size:3.8rem;

    font-weight:700;

    color:rgba(255,255,255,.06);

    transition:.45s;

}

/* ===================================
   HOVER
=================================== */

.service-card:hover{

    transform:

        translateY(-12px);

    box-shadow:

        0 25px 70px rgba(0,0,0,.45),

        0 0 35px rgba(0,212,255,.10);

}

.service-card:hover .service-icon{

    transform:

        rotate(-8deg)

        scale(1.08);

    box-shadow:

        0 0 35px rgba(0,212,255,.20);

}

.service-card:hover .service-number{

    color:rgba(255,255,255,.18);

    transform:translateY(-8px);

}


/* ==========================================================
   PART 5.3
   SERVICES INTERACTIVE
========================================================== */

/* ===================================
   Background Aurora
=================================== */

.services::before{

    content:"";

    position:absolute;

    inset:-15%;

    z-index:-3;

    background:

        radial-gradient(circle at 20% 25%,
        rgba(79,124,255,.18),
        transparent 35%),

        radial-gradient(circle at 80% 20%,
        rgba(0,212,255,.16),
        transparent 35%),

        radial-gradient(circle at 50% 90%,
        rgba(139,92,246,.16),
        transparent 40%);

    filter:blur(90px);

    animation:servicesAurora 18s ease-in-out infinite alternate;

}

/* ===================================
   Mouse Light
=================================== */

.service-light{

    position:absolute;

    inset:0;

    opacity:0;

    pointer-events:none;

    background:

        radial-gradient(

            circle at center,

            rgba(0,212,255,.20),

            transparent 65%

        );

    transition:.45s;

}

.service-card:hover .service-light{

    opacity:1;

}

/* ===================================
   Reflection
=================================== */

.service-reflection{

    position:absolute;

    top:-50%;

    left:-60%;

    width:45%;

    height:220%;

    transform:rotate(-25deg);

    background:

        linear-gradient(

            transparent,

            rgba(255,255,255,.18),

            transparent

        );

    opacity:0;

}

.service-card:hover .service-reflection{

    left:140%;

    opacity:1;

    transition:1s;

}

/* ===================================
   Icon Ring
=================================== */

.service-icon{

    position:relative;

}

.service-icon::after{

    content:"";

    position:absolute;

    inset:-8px;

    border-radius:26px;

    border:1px solid rgba(0,212,255,.15);

    animation:ringPulse 4s ease-in-out infinite;

}

/* ===================================
   Noise
=================================== */

.service-card::after{

    content:"";

    position:absolute;

    inset:0;

    opacity:.04;

    pointer-events:none;

    background-image:

        radial-gradient(circle,
        #fff 1px,
        transparent 1px);

    background-size:18px 18px;

}

/* ===================================
   Keyframes
=================================== */

@keyframes servicesAurora{

    50%{

        transform:

            scale(1.08)

            rotate(5deg);

    }

}

/* ==========================================================
   PART 6.2
   EXPERIENCE TIMELINE
========================================================== */

.experience{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

/* ===========================
   HEADER
=========================== */

.experience-header{
    max-width: 760px;
    margin: 0 auto 90px;
    text-align: center;
}

/* ===========================
   BACKGROUND
=========================== */

.experience-blur{
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.experience .blur-left{
    left: -140px;
    top: 120px;
    background: rgba(79,124,255,.16);
}

.experience .blur-right{
    right: -140px;
    bottom: 80px;
    background: rgba(0,212,255,.15);
}

/* ===========================
   TIMELINE
=========================== */

.timeline{
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

/* Vertical Line */

.timeline-line{

    position: absolute;

    left: 50%;

    top: 0;

    width: 4px;

    height: 100%;

    transform: translateX(-50%);

    border-radius: 50px;

    background: linear-gradient(
        to bottom,
        rgba(79,124,255,.2),
        rgba(0,212,255,.8),
        rgba(139,92,246,.2)
    );

    box-shadow:
        0 0 30px rgba(0,212,255,.25);

}

/* ===========================
   ITEM
=========================== */

.timeline-item{

    position: relative;

    width: 50%;

    padding: 20px 50px;

    margin-bottom: 70px;

}

.timeline-item.left{

    left: 0;

    text-align: right;

}

.timeline-item.right{

    left: 50%;

}

/* ===========================
   DOT
=========================== */

.timeline-dot{

    position: absolute;

    top: 55px;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: #00D4FF;

    border: 4px solid #08111f;

    box-shadow:
        0 0 20px rgba(0,212,255,.5);

    animation: timelinePulse 2.8s infinite;

}

.timeline-item.left .timeline-dot{

    right: -11px;

}

.timeline-item.right .timeline-dot{

    left: -11px;

}

/* ===========================
   CARD
=========================== */

.timeline-card{

    position: relative;

    padding: 35px;

    border-radius: 28px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(24px);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    overflow: hidden;

}

/* Gradient Border */

.timeline-card::before{

    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    padding: 1px;

    background: linear-gradient(
        135deg,
        #4F7CFF,
        #00D4FF,
        #8B5CF6,
        #4F7CFF
    );

    background-size: 300%;

    animation: borderMove 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;

}

/* ===========================
   TEXT
=========================== */

.timeline-card .year{

    display: inline-block;

    margin-bottom: 12px;

    color: #00D4FF;

    font-size: .9rem;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.timeline-card h3{

    font-size: 1.55rem;

    margin-bottom: 18px;

}

.timeline-card p{

    color: #9fb2cf;

    line-height: 1.9;

}

/* ===========================
   HOVER
=========================== */

.timeline-card:hover{

    transform: translateY(-10px);

    box-shadow:
        0 25px 70px rgba(0,0,0,.45),
        0 0 35px rgba(0,212,255,.12);

}

.timeline-card:hover h3{

    color: #ffffff;

}

/* ===========================
   ANIMATION
=========================== */

@keyframes timelinePulse{

    0%{

        transform: scale(1);

        box-shadow:
            0 0 10px rgba(0,212,255,.5);

    }

    50%{

        transform: scale(1.25);

        box-shadow:
            0 0 28px rgba(0,212,255,.8);

    }

    100%{

        transform: scale(1);

        box-shadow:
            0 0 10px rgba(0,212,255,.5);

    }

}

/* ==========================================================
   PART 6.3
   CAREER STATS
========================================================== */

.career-stats{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:28px;

    margin-bottom:120px;

}

/* Card */

.stat-card{

    position:relative;

    overflow:hidden;

    padding:42px;

    text-align:center;

    border-radius:28px;

    background:

    linear-gradient(

        180deg,

        rgba(255,255,255,.08),

        rgba(255,255,255,.03)

    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    transition:.45s;

}

.stat-card::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    padding:1px;

    background:

    linear-gradient(

        135deg,

        #4F7CFF,

        #00D4FF,

        #8B5CF6

    );

    background-size:300%;

    animation:borderMove 8s linear infinite;

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

}

/* Icon */

.stat-icon{

    width:74px;
    height:74px;

    margin:auto;

    border-radius:22px;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:2rem;

    margin-bottom:25px;

    background:

    linear-gradient(

        135deg,

        rgba(79,124,255,.18),

        rgba(0,212,255,.18)

    );

}

/* Number */

.stat-card h3{

    font-size:3rem;

    margin-bottom:12px;

}

.stat-card p{

    color:#9fb2cf;

}

/* Hover */

.stat-card:hover{

    transform:

        translateY(-10px);

    box-shadow:

        0 25px 70px rgba(0,0,0,.45),

        0 0 35px rgba(0,212,255,.12);

}

/* ==========================================================
   PART 7.2
   TESTIMONIAL SECTION
========================================================== */

.testimonials{

    position:relative;

    padding:150px 0;

    overflow:hidden;

}

/* ======================================
   HEADER
====================================== */

.testimonials-header{

    max-width:760px;

    margin:auto;

    text-align:center;

    margin-bottom:80px;

}

/* ======================================
   BACKGROUND
====================================== */

.testimonials-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(130px);

    z-index:-2;

}

.testimonials .blur-left{

    width:420px;
    height:420px;

    left:-150px;
    top:120px;

    background:
    rgba(79,124,255,.16);

}

.testimonials .blur-right{

    width:380px;
    height:380px;

    right:-120px;
    bottom:40px;

    background:
    rgba(0,212,255,.15);

}

/* ======================================
   SLIDER
====================================== */

.testimonial-slider{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

}

/* ======================================
   CARD
====================================== */

.testimonial-card{

    position:relative;

    width:380px;

    padding:42px;

    overflow:hidden;

    border-radius:30px;

    background:

    linear-gradient(

        180deg,

        rgba(255,255,255,.08),

        rgba(255,255,255,.03)

    );

    border:

    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(25px);

    transition:.45s;

}

/* Border */

.testimonial-card::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    padding:1px;

    background:

    linear-gradient(

        135deg,

        #4F7CFF,

        #00D4FF,

        #8B5CF6

    );

    background-size:300%;

    animation:borderMove 8s linear infinite;

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

}

/* ======================================
   QUOTE
====================================== */

.quote-icon{

    font-size:5rem;

    line-height:1;

    color:

    rgba(0,212,255,.18);

}

/* ======================================
   TEXT
====================================== */

.testimonial-text{

    margin:20px 0 30px;

    line-height:2;

    color:#b8c6dd;

}

/* ======================================
   RATING
====================================== */

.testimonial-rating{

    color:#FFD34D;

    font-size:1.2rem;

    letter-spacing:4px;

    margin-bottom:30px;

}

/* ======================================
   USER
====================================== */

.testimonial-user{

    display:flex;

    align-items:center;

    gap:18px;

}

.testimonial-user img{

    width:70px;

    height:70px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid rgba(255,255,255,.08);

}

.testimonial-user h4{

    margin-bottom:6px;

}

.testimonial-user span{

    color:#8da2c0;

    font-size:.9rem;

}

/* ======================================
   ACTIVE
====================================== */

.testimonial-card.active{

    transform:

    scale(1.05);

    box-shadow:

        0 25px 70px rgba(0,0,0,.45),

        0 0 35px rgba(0,212,255,.18);

}

/* ======================================
   HOVER
====================================== */

.testimonial-card:hover{

    transform:

    translateY(-12px);

}


/* ==========================================================
   PART 7.3
   COVERFLOW
========================================================== */

.testimonial-wrapper{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.testimonial-slider{

    position:relative;

    width:100%;

    max-width:1200px;

    height:520px;

    perspective:1800px;

    overflow:hidden;

}

/* ==========================
   CARD
========================== */

.testimonial-card{

    position:absolute;

    width:420px;

    left:50%;

    top:50%;

    transform-style:preserve-3d;

    transition:

        transform .8s cubic-bezier(.22,.61,.36,1),

        opacity .6s;

}

/* center */

.testimonial-card.active{

    transform:

    translate(-50%,-50%)

    scale(1);

    z-index:30;

}

/* left */

.testimonial-card.prev{

    transform:

    translate(-155%,-48%)

    rotateY(30deg)

    scale(.85);

    opacity:.45;

    z-index:20;

}

/* right */

.testimonial-card.next{

    transform:

    translate(55%,-48%)

    rotateY(-30deg)

    scale(.85);

    opacity:.45;

    z-index:20;

}

/* hidden */

.testimonial-card.hidden{

    opacity:0;

    pointer-events:none;

}

/* ==========================
   BUTTON
========================== */

.testimonial-nav{

    width:64px;

    height:64px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:#fff;

    font-size:1.4rem;

    background:

    linear-gradient(

        135deg,

        rgba(79,124,255,.18),

        rgba(0,212,255,.18)

    );

    backdrop-filter:blur(20px);

    transition:.35s;

}

.testimonial-nav:hover{

    transform:scale(1.1);

}

/* ==========================================================
   PART 8.2
   CLIENT LOGO MARQUEE
========================================================== */

.clients{
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.clients-header{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

/* ===========================
   MARQUEE
=========================== */

.logo-marquee{
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}

.logo-track{

    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;

    animation: marqueeLeft 30s linear infinite;

}

.logo-marquee.reverse .logo-track{

    animation: marqueeRight 30s linear infinite;

}

/* Pause saat hover */

.logo-marquee:hover .logo-track{

    animation-play-state: paused;

}

/* ===========================
   LOGO CARD
=========================== */

.logo-item{

    flex: 0 0 auto;

    width: 180px;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 24px;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.08),
        rgba(255,255,255,.03)
    );

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    transition: all .35s ease;

}

.logo-item img{

    max-width: 110px;
    max-height: 40px;

    opacity: .45;

    filter: grayscale(100%);

    transition: all .35s ease;

}

/* Hover */

.logo-item:hover{

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        0 0 30px rgba(0,212,255,.12);

}

.logo-item:hover img{

    opacity: 1;

    filter: grayscale(0);

    transform: scale(1.08);

}

/* ===========================
   EDGE MASK
=========================== */

.logo-marquee::before,
.logo-marquee::after{

    content:"";

    position:absolute;

    top:0;

    width:140px;

    height:100%;

    z-index:5;

    pointer-events:none;

}

.logo-marquee::before{

    left:0;

    background:linear-gradient(
        to right,
        var(--bg-color),
        transparent
    );

}

.logo-marquee::after{

    right:0;

    background:linear-gradient(
        to left,
        var(--bg-color),
        transparent
    );

}

/* ===========================
   KEYFRAMES
=========================== */

@keyframes marqueeLeft{

    from{

        transform: translateX(0);

    }

    to{

        transform: translateX(-50%);

    }

}

@keyframes marqueeRight{

    from{

        transform: translateX(-50%);

    }

    to{

        transform: translateX(0);

    }

}

/* ==========================================================
   PART 9.2
   FAQ
========================================================== */

.faq{

    position:relative;

    padding:150px 0;

}

.faq-header{

    text-align:center;

    max-width:720px;

    margin:auto;

    margin-bottom:70px;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:24px;

    border-radius:24px;

    overflow:hidden;

    background:

    linear-gradient(

        180deg,

        rgba(255,255,255,.08),

        rgba(255,255,255,.03)

    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

}

.faq-question{

    width:100%;

    padding:28px;

    border:none;

    background:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#fff;

    cursor:pointer;

    font-size:1.1rem;

}

.faq-question i{

    transition:.35s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 28px 28px;

    color:#9fb2cf;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active i{

    transform:rotate(45deg);

}


/* ==========================================================
   PART 10.2
   CONTACT
========================================================== */

.contact{

    position:relative;

    padding:160px 0;

    overflow:hidden;

}

/* ======================================
   HEADER
====================================== */

.contact-header{

    max-width:760px;

    margin:auto;

    text-align:center;

    margin-bottom:90px;

}

/* ======================================
   WRAPPER
====================================== */

.contact-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:40px;

    align-items:start;

}

/* ======================================
   GLASS CARD
====================================== */

.contact-form-card,
.info-card,
.map-card{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    padding:40px;

    background:

    linear-gradient(

        180deg,

        rgba(255,255,255,.08),

        rgba(255,255,255,.03)

    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

}

/* Gradient Border */

.contact-form-card::before,
.info-card::before,
.map-card::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:inherit;

    padding:1px;

    background:

    linear-gradient(

        135deg,

        #4F7CFF,

        #00D4FF,

        #8B5CF6,

        #4F7CFF

    );

    background-size:300%;

    animation:borderMove 8s linear infinite;

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

}

/* ======================================
   INPUT
====================================== */

.input-group{

    position:relative;

    margin-bottom:30px;

}

.input-group input,
.input-group textarea{

    width:100%;

    padding:22px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    background:

    rgba(255,255,255,.04);

    color:#fff;

    outline:none;

    transition:.35s;

    resize:none;

}

.input-group label{

    position:absolute;

    left:22px;

    top:20px;

    color:#9fb2cf;

    transition:.35s;

    pointer-events:none;

}

/* Floating */

.input-group input:focus,
.input-group textarea:focus{

    border-color:#00D4FF;

    box-shadow:

    0 0 25px rgba(0,212,255,.15);

}

.input-group input:focus+label,
.input-group textarea:focus+label,
.input-group input:valid+label,
.input-group textarea:valid+label{

    top:-12px;

    left:18px;

    font-size:.75rem;

    padding:0 10px;

    background:#08111f;

    color:#00D4FF;

}

/* ======================================
   BUTTON
====================================== */

.contact-form-card .btn{

    width:100%;

    padding:18px;

    border-radius:18px;

    font-size:1rem;

}

/* ======================================
   INFO
====================================== */

.contact-info{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.info-card h3{

    margin-bottom:25px;

}

.info-card ul{

    display:flex;

    flex-direction:column;

    gap:18px;

    list-style:none;

}

.info-card li{

    display:flex;

    align-items:center;

    gap:14px;

    color:#b9c7de;

}

/* ======================================
   MAP
====================================== */

.map-card{

    padding:0;

    overflow:hidden;

    height:360px;

}

.map-card iframe{

    width:100%;

    height:100%;

    border:none;

}

/* ======================================
   HOVER
====================================== */

.contact-form-card:hover,
.info-card:hover,
.map-card:hover{

    transform:

        translateY(-10px);

    transition:.45s;

    box-shadow:

        0 25px 70px rgba(0,0,0,.45),

        0 0 35px rgba(0,212,255,.12);

}


/* ======================================
   TOAST
====================================== */

.toast{

    position:fixed;

    right:30px;

    bottom:30px;

    padding:18px 24px;

    display:flex;

    align-items:center;

    gap:12px;

    border-radius:18px;

    color:#fff;

    background:

    rgba(18,25,45,.92);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transform:translateY(120px);

    opacity:0;

    transition:.45s;

    z-index:9999;

}

.toast.show{

    transform:translateY(0);

    opacity:1;

}

.toast i{

    color:#00D4FF;

    font-size:1.3rem;

}


.spin{

    animation:spin 1s linear infinite;

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


/* ==========================================================
   CTA
========================================================== */

.cta{

    position:relative;

    padding:120px 0;

    overflow:hidden;

}

.cta-box{

    position:relative;

    overflow:hidden;

    padding:80px;

    border-radius:40px;

    text-align:center;

    background:

    linear-gradient(

        135deg,

        rgba(79,124,255,.12),

        rgba(0,212,255,.08),

        rgba(139,92,246,.12)

    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

}

.cta-box::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    padding:2px;

    background:

    linear-gradient(

        90deg,

        #4F7CFF,

        #00D4FF,

        #8B5CF6,

        #4F7CFF

    );

    background-size:300%;

    animation:borderMove 8s linear infinite;

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

}

.cta h2{

    font-size:clamp(2.5rem,5vw,4.5rem);

    margin:20px 0;

}

.cta p{

    max-width:760px;

    margin:auto;

    color:#b9c7de;

    line-height:2;

}

.cta-action{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta .btn{

    min-width:220px;

}

.cta-bg{

    position:absolute;

    inset:-20%;

    z-index:-2;

    background:

    radial-gradient(circle at 15% 20%,

    rgba(79,124,255,.22),

    transparent 35%),

    radial-gradient(circle at 80% 25%,

    rgba(0,212,255,.18),

    transparent 35%),

    radial-gradient(circle at 50% 90%,

    rgba(139,92,246,.18),

    transparent 40%);

    filter:blur(120px);

    animation:auroraCTA 16s ease-in-out infinite alternate;

}

@keyframes auroraCTA{

    50%{

        transform:

        scale(1.15)

        rotate(5deg);

    }

}

.cta-grid{

    position:absolute;

    inset:0;

    opacity:.05;

    background-image:

        linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),

        linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);

    background-size:50px 50px;

}

/* ==========================================================
   FOOTER
========================================================== */

.footer{

    position:relative;

    overflow:hidden;

    padding:100px 0 40px;

    border-top:

    1px solid rgba(255,255,255,.08);

}

/* ======================================
   TOP
====================================== */

.footer-top{

    display:grid;

    grid-template-columns:

        2fr
        1fr
        1fr
        1.2fr;

    gap:60px;

    margin-bottom:60px;

}

/* ======================================
   LOGO
====================================== */

.footer-logo{

    font-size:3rem;

    font-weight:700;

    text-decoration:none;

    background:

    linear-gradient(

        135deg,

        #4F7CFF,

        #00D4FF

    );

    -webkit-background-clip:text;

    color:transparent;

}

.footer-brand p{

    margin:30px 0;

    line-height:2;

    color:#a8b8d5;

}

/* ======================================
   STATUS
====================================== */

.footer-status{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:30px;

    background:

    rgba(255,255,255,.05);

}

.status-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#00FF85;

    animation:pulse 2s infinite;

}

/* ======================================
   LINKS
====================================== */

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links h4{

    margin-bottom:20px;

}

.footer-links a{

    margin-bottom:14px;

    color:#9fb2cf;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#00D4FF;

    transform:translateX(8px);

}

/* ======================================
   BUTTON
====================================== */

.footer-button{

    display:inline-flex;

    margin-top:20px;

    padding:14px 24px;

    border-radius:50px;

    text-decoration:none;

    background:

    linear-gradient(

        135deg,

        #4F7CFF,

        #00D4FF

    );

}

/* ======================================
   SOCIAL
====================================== */

.footer-social{

    display:flex;

    gap:18px;

}

.footer-social a{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#fff;

    background:

    rgba(255,255,255,.05);

    transition:.35s;

}

.footer-social a:hover{

    transform:

    translateY(-8px);

    background:#00D4FF;

    color:#08111f;

}

/* ======================================
   BOTTOM
====================================== */

.footer-bottom{

    padding-top:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:

    1px solid rgba(255,255,255,.08);

}

.footer-glow{

    position:absolute;

    inset:-20%;

    z-index:-2;

    filter:blur(150px);

    background:

    radial-gradient(circle,

    rgba(0,212,255,.12),

    transparent 70%);

}


/* ==========================================================
   PREMIUM NAVBAR
========================================================== */

.header{

    position:fixed;

    top:20px;

    left:0;

    width:100%;

    z-index:9999;

    transition:.45s ease;

}

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

    max-width:1320px;

    margin:auto;

    padding:0 28px;

    border-radius:22px;

    background:rgba(8,17,31,.45);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}


.logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

}

.logo-dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#00D4FF;

    box-shadow:

    0 0 25px #00D4FF;

}

.logo-text{

    font-size:1.45rem;

    font-weight:800;

    letter-spacing:1px;

    color:#fff;

}

.logo-text span{

    background:linear-gradient(
        135deg,
        #4F7CFF,
        #00D4FF
    );

    -webkit-background-clip:text;

    color:transparent;

}

.nav-menu{

    display:flex;

    gap:40px;

    list-style:none;

}

.nav-link{

    position:relative;

    text-decoration:none;

    color:#b8c6dd;

    font-weight:500;

    transition:.35s;

}

.nav-link:hover{

    color:#fff;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:2px;

    background:#00D4FF;

    transform:translateX(-50%);

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.nav-link.active{

    color:#fff;

}

.nav-actions{

    display:flex;

    align-items:center;

    gap:16px;

}

.theme-toggle{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    color:#fff;

    background:rgba(255,255,255,.05);

    transition:.35s;

}

.theme-toggle:hover{

    transform:rotate(180deg);

    background:#00D4FF;

    color:#08111f;

}

.nav-btn{

    padding:14px 24px;

}

.menu-toggle{

    display:none;

}

/* ==========================================================
   NAVBAR GRADIENT BORDER
========================================================== */

.navbar{
    position: relative;
    overflow: hidden;
}

.navbar::before{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:22px;

    padding:1px;

    background:linear-gradient(
        90deg,
        #4F7CFF,
        #00D4FF,
        #8B5CF6,
        #4F7CFF
    );

    background-size:300% 300%;

    animation:navBorder 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;
}

@keyframes navBorder{

    0%{
        background-position:0% 50%;
    }

    100%{
        background-position:300% 50%;
    }

}

/* ==========================================================
   SCROLL PROGRESS
========================================================== */

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:3px;

    z-index:10000;

    background:transparent;

}

.scroll-progress-bar{

    display:block;

    width:0;

    height:100%;

    background:linear-gradient(
        90deg,
        #4F7CFF,
        #00D4FF,
        #8B5CF6
    );

    box-shadow:
        0 0 12px rgba(0,212,255,.45);

}


/* ==========================================================
   SCROLLED STATE
========================================================== */

.header.scrolled .navbar{

    background:rgba(8,17,31,.82);

    backdrop-filter:blur(28px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.35);

    transform:translateY(-4px);

}


/* ==========================================================
   MOBILE MENU
========================================================== */

.mobile-menu{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(8,17,31,.92);

    backdrop-filter:blur(30px);

    opacity:0;

    visibility:hidden;

    transition:.45s ease;

    z-index:9990;

}

.mobile-menu.active{

    opacity:1;

    visibility:visible;

}

.mobile-menu ul{

    list-style:none;

    text-align:center;

}

.mobile-menu li{

    margin:28px 0;

}

.mobile-link{

    color:#fff;

    font-size:2rem;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.mobile-link:hover{

    color:#00D4FF;

}


.menu-toggle{

    width:52px;

    height:52px;

    display:none;

    position:relative;

    border:none;

    background:none;

    cursor:pointer;

}

.menu-toggle span{

    position:absolute;

    left:12px;

    width:28px;

    height:2px;

    background:#fff;

    transition:.35s;

}

.menu-toggle span:nth-child(1){

    top:17px;

}

.menu-toggle span:nth-child(2){

    top:25px;

}

.menu-toggle span:nth-child(3){

    top:33px;

}

.menu-toggle.active span:nth-child(1){

    transform:rotate(45deg);

    top:25px;

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:rotate(-45deg);

    top:25px;

}

@media(max-width:992px){

    .nav-menu{

        display:none;

    }

    .nav-btn{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

}


/* ==========================================================
   NAV OVERLAY
========================================================== */

.nav-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(6px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9988;

}

.nav-overlay.active{

    opacity:1;

    visibility:visible;

}

.mobile-menu li{

    opacity:0;

    transform:translateY(20px);

    transition:
        transform .45s ease,
        opacity .45s ease;

}

.mobile-menu.active li{

    opacity:1;

    transform:translateY(0);

}

.mobile-menu.active li:nth-child(1){transition-delay:.08s;}
.mobile-menu.active li:nth-child(2){transition-delay:.14s;}
.mobile-menu.active li:nth-child(3){transition-delay:.20s;}
.mobile-menu.active li:nth-child(4){transition-delay:.26s;}
.mobile-menu.active li:nth-child(5){transition-delay:.32s;}
.mobile-menu.active li:nth-child(6){transition-delay:.38s;}



.header.hide{

    transform:translateY(-140%);

}

.header{

    transition:
        transform .4s ease,
        opacity .4s ease;

}