@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
:root {
    --c1: #0F172A;
    --c2:#7E4DDB;
    --c3:#4F4DDB;
    --c4:#4DA5DB;
    --c5: #AC4DDB;
    --c6: #9796DB;

    --cp1:#00ecff;
    --cp2:#4D78DB;
    --cp3:#324E8F;
    --cp4:#263B6D;
    --cp5:#1A294B;
    --cp6: #EDEDED;

    --txt: #94a3b8
}
body {
    background: linear-gradient(135deg, #0C0E16 0%, #12172A 100%);
    font-family: "Alata", sans-serif;
    overflow-x: hidden;
}
*,h1,h2,h3,h4,h5,h6,p {
    color: white;
}
.img-full {
    width: 100%;
    height: auto;
}

.right-navbar {
    justify-content: end;
}
.nav-link {
    color: white;
    font-size: 18px;
}
.nav-link:hover {
    color: var(--cp1);
}

a {
    position: relative;
    color: #A5A7B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4B6FFF, #FF4F81);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

a:hover {
    color: #EDEDED;
}

a:hover::after {
    width: 100%;
    box-shadow: 0 0 6px rgba(75, 111, 255, 0.5);
}


ul {
    padding: 0;
    list-style: none;
}
ul li {
    color: var(--txt);
}

.text {
    color: var(--txt);
}
.text-cp1 {
    color: var(--cp1);
}
.text-cp2 {
    color: var(--cp1);
}
.text-cp3 {
    color: var(--cp3);
}
.text-cp4 {
    color: var(--cp4);
}
.text-cp5 {
    color: var(--cp5);
}
.text-cp6 {
    color: var(--cp6);
}
strong {

}
footer {
    padding: 10px 0;
    border-top: 1px solid var(--cp5);
}

section {
    padding: 100px 0;
    position: relative;
}
/*Buttons*/
button {
    transition: 0.3s;
}
.button-primary {
    background: var(--cp1);
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 0 19px -5px var(--cp2);
}
.button-secondary {
    background: var(--cp2);
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
}
.button-secondary:hover {
    background: var(--c3);
}
.button-primary:hover {
    background: var(--c1);
}
/* Bubbles */
.bubble {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}
.bubble-1 {
    background: var(--c3);
    animation: bubble1 10s infinite;
    top:250px;
}
.bubble-2 {
    background: var(--c4);
    right: 0;
    bottom: 0;
    animation: bubble2 10s infinite;
}
.bubble-3 {
    background: var(--c5);
    right: 0;
    bottom: 0;
    animation: bubble3 10s infinite;
}
@keyframes bubble1 {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.5;
    }
    100% {
        scale: 1;
    }
}
@keyframes bubble2 {
    0% {
        scale: 1;
    }
    50% {
        scale: 1.5;
    }
    100% {
        scale: 1;
    }
}
@keyframes bubble3 {
    0% {
        transform: translateY(0);
        scale: 1;
    }
    50% {
        transform: translateY(-100px);
        scale: 1.5;
    }
    100% {
        transform: translateY(0);
        scale: 1;
    }
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: transparent;
    transition: 0.3s;
    border: 1px solid transparent;
}
.menu-fixed {
    border-bottom: 1px solid var(--cp5);
    background: var(--c1);
}
/* Hero */
.hero {

    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 60px 0;
}/*
.hero:before {
    content: "";
    position: absolute;
    right: 0;
    background: #3F5EFB;
    background: linear-gradient(94deg, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    filter: blur(100px);
    border-radius: 9999px;
    z-index: -1;
    width: 150px;
    height: 150px;
    pointer-events: none;
    opacity: 1;
    animation: 10s ease-in-out infinite hero-glow;
}
.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3F5EFB;
    background: linear-gradient(94deg, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    filter: blur(100px);
    border-radius: 9999px;
    z-index: -1;
    width: 150px;
    height: 150px;
    pointer-events: none;
    opacity: 1;
    animation: 10s ease-in-out infinite hero-glow;
}*/
@keyframes hero-glow {
    0%, 100% {
        filter: blur(100px);
    }
    50% {
        filter: blur(75px);
    }
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}
.hero-title::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #3F5EFB;
    background: linear-gradient(94deg, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    filter: blur(20px);
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.2;
}
.line {
    width: 50px;
    height: 2px;
    background-color: var(--cp6);
    margin-left: 10px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .nmobile {
        display: none;
    }
    .hero {
        min-height: 0;
        padding: 0;
        padding-top: 200px;
        padding-bottom: 50px;
    }
    .navbar {
        border-bottom: 1px solid var(--cp5);
        background: var(--c1);
    }
}
.social-icon {
    display: block;
}
.hero-skills {
    text-align: center;
}

.skill-badge {
    display: inline-block;
    background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(0,0,0,0.15));
    border: 1px solid rgba(255,255,255,0.05);
    color: #A5A7B0;
    border-radius: 9999px;
    padding: 4px 10px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    margin: 6px;
}
.skill-badge:hover {
    color: #EDEDED;
    border-color: #4B6FFF;
    background: rgba(75, 111, 255, 0.08);
    transform: translateY(-1px);
}
/* Section */
.text-line {
    position: relative;
    padding-left: 70px;
}
.ls2 {
    letter-spacing: 2px;
}
.wfc {
    width: fit-content;
}

.text-line::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: var(--cp2);
    top: 10%;
    bottom: 0;
    left: 0;
}

/* Skills */
.skill-icon {
    font-size: 48px;
}
.skill {
    border: 1px solid var(--cp4);
    border-radius: 20px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px;
    background: var(--cp5);
}
.skills {
    position: relative;
}

/* Work experience */
.work-history {
    list-style: none;
    padding: 0;
}

.work-history li {
    padding-left: 150px;
    position: relative;
}


.work-year {
    left: 2%;
    position: absolute;
    text-align: center;
    color: var(--cp6);
}
@media (max-width: 768px) {
    .work-history li {
        padding-left: 0;
    }
    .work-year {
        position: relative;
        text-align: left;
        left: 0;
    }
    section {
        padding: 50px 0;
    }
}
/* Projects */
.project {
    padding: 30px;
    border: 1px solid var(--cp4);
    background: var(--cp5);
    border-radius: 20px;
    margin-bottom: 20px;
}
.technology-badge {
    background: var(--cp4);
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--cp1);
    margin-right: 5px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 5px;
}