*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: gilroy;
}
html,body{
    height: 100%;
    width: 100%;
}
#main{
    position: relative;
    overflow: hidden;
}
#page{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1), transparent),
                      radial-gradient(circle at 80% 80%, rgba(74, 47, 189, 0.1), transparent);
}
#page1{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: radial-gradient(circle at 70% 30%, rgba(255, 71, 133, 0.08), transparent),
                      radial-gradient(circle at 30% 70%, rgba(58, 123, 213, 0.08), transparent);
}
#page2{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(139, 233, 253, 0.08), transparent);
}
#page3{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: radial-gradient(circle at 80% 20%, rgba(249, 168, 212, 0.08), transparent),
                      radial-gradient(circle at 20% 80%, rgba(167, 139, 250, 0.08), transparent);
}
canvas{
    position: relative;
    z-index: 9;
    max-width: 100vw;
    max-height: 100vh;
}
#loop{
    display: flex;
    position: absolute;
    top: 30%;
    height: 25%;
    width: 100%;
    font-size: 100px;
    white-space: nowrap;
    font-family: gilroy;
}
#loop>h1{
    font-weight: 400;
    animation-name: anim;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
#loop>h1>span{
    -webkit-text-stroke: 1.2px #00f5ff;
    color: transparent;
    font-weight: 500;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
}
#loop>h1>b{
    color: #00f5ff;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
}
#loop>h1>i{
    color: #ff006e;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.6);
}
@keyframes anim{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}
#nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7%;
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 0px 30px;
}
#nav>h3{
    font-family: gilroy;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}
#nav>button{
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
    transition: all 0.3s ease;
}
#nav>button:hover{
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
    transform: translateY(-2px);
}
#page>h3{
    position: absolute;
    top: 55%;
    font-family: gilroy;
    font-weight: 400;
    color: #b4b4b4;
    left: 5%;
    text-shadow: 0 0 10px rgba(180, 180, 180, 0.5);
}
#page>h4{
    position: absolute;
    top: 62%;
    left: 25%;
    font-family: gilroy;
    font-weight: 500;
    color: #00f5ff;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
}
#page1>#right-text{
    position: absolute;
    top: 30%;
    left: 10%;
}
#page1>#right-text>h3{
    font-weight: 400;
    color: #00f5ff;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
}
#page1>#right-text>h1{
    line-height: 1.5;
    font-size: 50px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
#page1>#left-text{
    position: absolute;
    top: 50%;
    right: 10%;
    text-align: end;
}
#page1>#left-text>h1{
    font-size: 50px;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
#page1>#left-text>h3{
    color: #ff006e;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
}
#page2>#text1{
    position: absolute;
    top: 30%;
    left: 10%;
}
#page2>#text1>h3{
    color: #8b5cf6;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}
#page2>#text1>h1{
    font-size: 60px;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}
#page2>#text2{
    position: absolute;
    top: 55%;
    right: 10%;
    text-align: end;
}
#page2>#text2>p{
    color: #d1d1d1;
    font-weight: 400;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(209, 209, 209, 0.3);
}
#page3>#text3{
    position: absolute;
    top: 40%;
    right: 10%;
    text-align: end;
}
#page3>#text3>h3{
    color: #10b981;
    font-weight: 400;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.8);
}
#page3>#text3>h1{
    font-size: 70px;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* PAGE 4 - ABOUT ME */
#page4{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(147, 51, 234, 0.15), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.15), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#page4::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3), transparent);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    filter: blur(100px);
    animation: float 8s ease-in-out infinite;
}

#page4::after{
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    filter: blur(100px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

/* ENCRYPTED TEXT ANIMATION */
[data-encrypted-text] {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit;
}

.encrypted-text {
    font-family: 'Courier New', monospace !important;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
}

.revealed-text {
    font-family: gilroy !important;
    letter-spacing: normal;
}

#about-text{
    max-width: 900px;
    padding: 0 50px;
    color: #fff;
    position: relative;
    z-index: 2;
}

#about-text h3{
    color: #a78bfa;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
    letter-spacing: 2px;
}

#about-text h1{
    font-size: 55px;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

#about-text h1 b{
    background: linear-gradient(135deg, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

#about-text p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d1d5db;
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.2);
}

/* PAGE 5 - SKILLS */
#page5{
    position: relative;
    min-height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0;
}

#page5::before{
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent);
    border-radius: 50%;
    top: -250px;
    right: -200px;
    filter: blur(120px);
}

#skills-text{
    max-width: 1000px;
    width: 100%;
    padding: 0 50px;
    color: #fff;
    position: relative;
    z-index: 10;
}

#skills-text h3{
    color: #60a5fa;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
    letter-spacing: 2px;
    font-size: 18px;
}

#skills-text h1{
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 50px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    color: #fff;
}

#skills-text ul{
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
    display: block !important;
    width: 100%;
}

#skills-text ul li{
    font-size: 12px !important;
    line-height: 2 !important;
    padding: 10px 10px 10px 20px !important;
    position: relative !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-left: 4px solid #ffffff !important;
    border-radius: 8px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#skills-text ul li b{
    color: #1a74e2 !important;
    font-weight: 700 !important;
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.8) !important;
}

#skills-text ul li:hover{
    background: rgba(13, 23, 210, 0.25) !important;
    transform: translateX(15px) scale(1.03) !important;
    box-shadow: 0 8px 35px rgba(17, 51, 221, 0.6), 
                0 0 50px rgba(5, 0, 149, 0.4) !important;
    border-left-color: #60a5fa !important;
    border-left-width: 6px !important;
    z-index: 10 !important;
}

/* PAGE 7 - PROFESSIONAL EXPERIENCE */
#page7{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(251, 146, 60, 0.15), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(234, 88, 12, 0.12), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#page7::before{
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.18), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(140px);
    animation: pulse 7s ease-in-out infinite;
}

#experience-text{
    max-width: 900px;
    padding: 0 50px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

#experience-text h3{
    color: #fb923c;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.6);
    letter-spacing: 2px;
    font-size: 18px;
}

#experience-text h1{
    font-size: 65px;
    line-height: 1.3;
    margin-bottom: 40px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fff, #fb923c, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#experience-text p{
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d1d5db;
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.2);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 146, 60, 0.2);
}



/* PAGE 8 - PHILOSOPHY */
#page8{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.15), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#page8::before{
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(150px);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

#philosophy-text{
    max-width: 900px;
    padding: 0 50px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

#philosophy-text h3{
    color: #38bdf8;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
    letter-spacing: 2px;
}

#philosophy-text h1{
    font-size: 65px;
    line-height: 1.3;
    margin-bottom: 40px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fff, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#philosophy-text p{
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d1d5db;
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.2);
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* PAGE 9 - PERSONAL */
#page9{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(251, 146, 60, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.15), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* PAGE 6 - SOFT SKILLS */
#page6{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.15), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.15), transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#page9::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.25), transparent);
    border-radius: 50%;
    bottom: -200px;
    left: 10%;
    filter: blur(120px);
    animation: float 7s ease-in-out infinite;
}

#page9::after{
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25), transparent);
    border-radius: 50%;
    top: -150px;
    right: 10%;
    filter: blur(120px);
    animation: float 9s ease-in-out infinite reverse;
}

#page6::before{
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
    border-radius: 50%;
    top: -200px;
    left: -150px;
    filter: blur(130px);
    animation: float 8s ease-in-out infinite;
}

#page6::after{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    filter: blur(130px);
    animation: float 10s ease-in-out infinite reverse;
}

#personal-text{
    max-width: 900px;
    padding: 0 50px;
    color: #fff;
    position: relative;
    z-index: 2;
}

#personal-text h3{
    color: #fbbf24;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    letter-spacing: 2px;
}

#personal-text h1{
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fff, #fbbf24, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#personal-text p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #d1d5db;
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.2);
}

#personal-text h3:last-child{
    margin-top: 40px;
    font-size: 24px;
    color: #fb923c;
    text-shadow: 0 0 25px rgba(251, 146, 60, 0.8);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 25px rgba(251, 146, 60, 0.8); }
    50% { text-shadow: 0 0 40px rgba(251, 146, 60, 1); }
}

#soft-skills-text{
    max-width: 1100px;
    width: 100%;
    padding: 0 50px;
    color: #fff !important;
    position: relative;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

#soft-skills-text h3{
    color: #a78bfa !important;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
    letter-spacing: 2px;
    font-size: 18px;
    visibility: visible !important;
    opacity: 1 !important;
}

#soft-skills-text h1{
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 50px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fff, #a78bfa, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    visibility: visible !important;
    opacity: 1 !important;
}

.soft-skills-grid{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    margin-top: 30px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.skill-category{
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(167, 139, 250, 0.5) !important;
    border-radius: 15px !important;
    padding: 25px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.skill-category::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.skill-category:hover::before{
    opacity: 1;
}

.skill-category:hover{
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 15px 50px rgba(167, 139, 250, 0.4),
                0 0 60px rgba(236, 72, 153, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.skill-category h2{
    font-size: 22px !important;
    margin-bottom: 15px !important;
    color: #ec4899 !important;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.6) !important;
    font-weight: 600 !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.skill-category p{
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.3) !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* SOCIAL MEDIA BUTTONS */
.social-buttons{
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    /* LEFT CORNER QUICK NAV */
    .left-menu{
        position: fixed;
        left: 14px;
        top: 20%;
        z-index: 110;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .left-menu-item{
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 10px;
        background: rgba(255,255,255,0.03);
        color: #fff;
        text-decoration: none;
        transition: all 0.18s ease;
        box-shadow: 0 6px 18px rgba(0,0,0,0.45);
        backdrop-filter: blur(6px);
    }
    .left-menu-item:focus, .left-menu-item:hover{
        transform: translateX(6px);
        background: linear-gradient(90deg, rgba(34,211,238,0.12), rgba(236,72,153,0.08));
        box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 18px rgba(34,211,238,0.06);
    }
    .left-menu-icon{
        width: 26px;
        height: 26px;
        display: block;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
        opacity: 0.95;
    }
    .left-menu-label{
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: #e6eefc;
    }

    /* Responsive: collapse labels on smaller screens to save space */
    @media (max-width: 768px){
        .left-menu{
            left: 10px;
            top: 10px;
            gap: 8px;
        }
        .left-menu-label{ display: none; }
        .left-menu-item{ padding: 8px; border-radius: 8px; }
    }

.social-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover{
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-btn.linkedin{
    background-color: #0076b500;
    color: #fff;
}

.social-btn.github{
    background-color: #33333300;
    color: #fff;
}

.social-btn.medium{
    background-color: #00000000;
    color: #fff;
}
.social-btn.stack{
    background-color: #00000000;
    color: #fff;
}
.social-btn.facebook{
    background-color: #1876f200;
    color: #fff;
}

.social-btn.instagram{
    background-color: #1876f200;
    color: #fff;
}

.social-btn.researchgate{
    background-color: #00d0b500;
    color: #fff;
}

.social-btn.researchgate:hover{
    background-color: #00d0b500;
}

.social-btn.cv{
    background-color: #1876f200;
    color: #fff;
}

.social-btn.cv:hover{
    background-color: #1876f200;
}

/* CV BUTTON FIXED BOTTOM */
.cv-button-container{
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cv-button{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #000000, #000000);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: cvPulse 3s ease-in-out infinite;
}

.services-button{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #001165, #001ec9);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: cvPulse 3s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(0, 8, 255, 0.4);
}

.services-button:hover{
    transform: translateY(-5px);
    color: #ffffff;
    background: linear-gradient(135deg, #031890, #010e50);
    box-shadow: 0 12px 40px rgba(1, 5, 255, 0.6);
}

.cv-button:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 245, 255, 0.6);
    color: #000000;
    background: linear-gradient(135deg, #ffffff, #ffffff);
}

.cv-icon{
    font-size: 24px;
    animation: bounce 2s ease-in-out infinite;
}

.cv-text{
    letter-spacing: 1px;
}

@keyframes cvPulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(0, 245, 255, 0.4);
    }
    50% { 
        box-shadow: 0 8px 40px rgba(255, 0, 110, 0.6);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px){
    #loop{
        font-size: 40px;
        top: 25%;
    }
    
    #loop>h1{
        font-size: 40px;
    }
    
    #page>h3{
        font-size: 14px;
        left: 5%;
        right: 5%;
        top: 60%;
        line-height: 1.6;
    }
    
    #page>h4{
        font-size: 14px;
        left: 50%;
        transform: translateX(-50%);
        top: 75%;
    }
    
    #page1>#right-text{
        left: 5%;
        top: 20%;
    }
    
    #page1>#right-text>h3{
        font-size: 12px;
    }
    
    #page1>#right-text>h1{
        font-size: 28px;
    }
    
    #page1>#left-text{
        right: 5%;
        top: 55%;
    }
    
    #page1>#left-text>h1{
        font-size: 28px;
    }
    
    #page1>#left-text>h3{
        font-size: 12px;
    }
    
    #page2>#text1{
        left: 5%;
        top: 25%;
    }
    
    #page2>#text1>h3{
        font-size: 12px;
    }
    
    #page2>#text1>h1{
        font-size: 35px;
    }
    
    #page2>#text2{
        right: 5%;
        top: 60%;
    }
    
    #page2>#text2>p{
        font-size: 14px;
    }
    
    #page3>#text3{
        right: 5%;
        top: 35%;
    }
    
    #page3>#text3>h3{
        font-size: 12px;
    }
    
    #page3>#text3>h1{
        font-size: 40px;
    }
    
    #about-text{
        padding: 0 20px;
    }
    
    #about-text h3{
        font-size: 12px;
    }
    
    #about-text h1{
        font-size: 28px;
    }
    
    #about-text p{
        font-size: 15px;
    }
    
    #page5{
        height: auto !important;
        min-height: 100vh;
        padding: 100px 0 80px 0;
    }

    #page5::before{
        width: 400px;
        height: 400px;
        top: -150px;
        right: -100px;
    }

    #skills-text{
        padding: 0 20px;
        max-width: 100%;
    }
    
    #skills-text h3{
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    #skills-text h1{
        font-size: 32px;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    #skills-text ul{
        margin: 15px 0 !important;
    }

    #skills-text ul li{
        font-size: 11px !important;
        padding: 10px 12px 10px 15px !important;
        line-height: 1.8 !important;
        margin-bottom: 12px !important;
        border-left-width: 3px !important;
        border-radius: 6px !important;
    }

    #skills-text ul li:hover{
        transform: translateX(10px) scale(1.02) !important;
    }

    #skills-text ul li b{
        font-size: 12px !important;
    }

    #page6{
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    #philosophy-text{
        padding: 0 20px;
    }
    
    #philosophy-text h3{
        font-size: 12px;
    }
    
    #philosophy-text h1{
        font-size: 35px;
    }
    
    #philosophy-text p{
        font-size: 15px;
        padding: 15px;
    }
    
    #personal-text{
        padding: 0 20px;
    }
    
    #personal-text h3{
        font-size: 12px;
    }
    
    #personal-text h1{
        font-size: 35px;
    }
    
    #personal-text p{
        font-size: 15px;
    }
    
    #personal-text h3:last-child{
        font-size: 18px;
    }
    
    #experience-text{
        padding: 0 20px;
    }
    
    #experience-text h3{
        font-size: 12px;
    }
    
    #experience-text h1{
        font-size: 35px;
    }
    
    #experience-text p{
        font-size: 15px;
        padding: 15px;
    }
    
    #nav{
        padding: 0 15px;
    }
    
    #nav>h3{
        font-size: 18px;
    }
    
    #nav>button{
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .social-buttons{
        right: 10px;
        gap: 10px;
    }
    
    .social-btn{
        width: 45px;
        height: 45px;
    }
    
    .social-btn img{
        height: 30px !important;
        width: 30px !important;
    }
    
    .cv-button-container{
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        gap: 10px;
        width: 90%;
    }
    
    .cv-button{
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .services-button{
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .cv-text{
        font-size: 13px;
    }

    #soft-skills-text{
        padding: 0 20px;
    }

    #soft-skills-text h3{
        font-size: 12px;
    }

    #soft-skills-text h1{
        font-size: 32px;
        margin-bottom: 30px;
    }

    .soft-skills-grid{
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .skill-category{
        padding: 20px !important;
    }

    .skill-category h2{
        font-size: 18px !important;
    }

    .skill-category p{
        font-size: 13px !important;
    }
    
    canvas{
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw;
        max-height: 100vh;
        object-fit: contain;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px){
    #loop{
        font-size: 28px;
        top: 20%;
    }
    
    #loop>h1{
        font-size: 28px;
    }
    
    #page>h3{
        font-size: 11px;
        top: 55%;
    }
    
    #page>h4{
        font-size: 12px;
        top: 70%;
    }
    
    #page1>#right-text>h1,
    #page1>#left-text>h1{
        font-size: 24px;
    }
    
    #page2>#text1>h1{
        font-size: 28px;
    }
    
    #page3>#text3>h1{
        font-size: 32px;
    }
    
    #about-text h1{
        font-size: 24px;
    }

    #page5{
        padding: 80px 0 60px 0 !important;
    }

    #page5::before{
        width: 300px;
        height: 300px;
    }
    
    #skills-text{
        padding: 0 15px;
    }

    #skills-text h3{
        font-size: 11px;
    }

    #skills-text h1{
        font-size: 26px;
        margin-bottom: 20px;
    }

    #skills-text ul{
        margin: 10px 0 !important;
    }
    
    #skills-text ul li{
        font-size: 10px !important;
        padding: 8px 10px 8px 12px !important;
        margin-bottom: 10px !important;
        line-height: 1.7 !important;
        border-left-width: 2px !important;
        border-radius: 5px !important;
    }

    #skills-text ul li:hover{
        transform: translateX(8px) scale(1.01) !important;
    }

    #skills-text ul li b{
        font-size: 11px !important;
    }

    #page6{
        padding: 60px 0;
    }
    
    #philosophy-text h1{
        font-size: 28px;
    }
    
    #personal-text h1{
        font-size: 28px;
    }
    
    #experience-text h1{
        font-size: 28px;
    }

    #soft-skills-text h1{
        font-size: 28px;
    }

    .soft-skills-grid{
        gap: 15px !important;
    }

    .skill-category{
        padding: 15px !important;
    }

    .skill-category h2{
        font-size: 16px !important;
    }

    .skill-category p{
        font-size: 12px !important;
    }
    
    .social-buttons{
        right: 5px;
        gap: 8px;
    }
    
    .social-btn{
        width: 40px;
        height: 40px;
    }
    
    .social-btn img{
        height: 25px !important;
        width: 25px !important;
    }
    
    .cv-button{
        padding: 10px 15px;
        font-size: 11px;
    }

    .services-button{
        padding: 10px 15px;
        font-size: 11px;
    }

    .cv-button-container{
        width: 95%;
        gap: 8px;
    }
    
    canvas{
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw;
        max-height: 100vh;
        object-fit: contain;
    }
}