html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: y proximity;
}

html::-webkit-scrollbar {
    display: none;
}

body{
   /* background-image: url('assets/images/background.webp');*/
   background-color: rgb(19, 19, 19);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #3c5fed;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.custom-cursor.active {
    transform: translate(-50%, -50%) scale(1);
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #91ceff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.cursor-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #91ceff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: particle-burst 0.6s ease-out forwards;
}

@keyframes particle-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}
.custom-cursor.hover {
    width: 30px;
    height: 30px;
    border-color: rgb(255, 255, 255);
    transform: translate(-50%, -50%) scale(1);
}
.custom-cursor.hover .cursor-dot {
    width: 8px;
    height: 8px;
}
.custom-cursor.hidden {
    transform: translate(-50%, -50%) scale(0) !important;
    opacity: 0 !important;
}
* {
   font-family: 'Poppins', sans-serif;
   will-change: transform, opacity;
   user-select: none;
   cursor: none !important;
}

.skeleton-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(27, 27, 27);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.skeleton-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.skeleton-nav {
    position: absolute;
    top: 15px;
    left: 50px;
    right: 50px;
    height: 50px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 0.2s;
    border-radius: 25px;
}



.skeleton-title {
    width: min(600px, 85vw);
    height: 120px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 0.3s;
    border-radius: 10px;
    margin-bottom: 30px;
}

.skeleton-line {
    width: 229px;
    height: 4px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 0.5s;
    border-radius: 42px;
    margin-bottom: 20px;
}

.skeleton-text {
    width: min(400px, 75vw);
    height: 24px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 0.7s;
    border-radius: 5px;
    margin-bottom: 40px;
}

.skeleton-button {
    width: 150px;
    height: 50px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 0.9s;
    border-radius: 60px;
    margin-bottom: 60px;
}

.skeleton-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.skeleton-about-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 1.1s;
}

.skeleton-about-image {
    width: min(300px, 70vw);
    height: 200px;
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite 1.3s;
    border-radius: 15px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
    .skeleton-nav {
        left: 15px;
        right: 15px;
        height: 40px;
    }
    
    .skeleton-title {
        height: 80px;
    }
    
    .skeleton-text {
        height: 20px;
    }
    
    .skeleton-button {
        width: 120px;
        height: 40px;
    }
    
    .skeleton-about-image {
        height: 150px;
    }
}
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: hsl(40, 83%, 58%);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-sizing: border-box;
    margin: 0;
}

.nav-bar.show {
    opacity: 1;
    transform: translateY(0);
}

.nav-left,
.nav-right {
    display: flex;
    gap: 40px;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-bar a:hover {
    color: rgb(27, 27, 27);
}

.nav-bar .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    animation: none;
    cursor: none !important;
}

.circle{ 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color:hsl(40, 83%, 58%);
    margin: 50px auto 0px auto;
    animation: float 3s ease-in-out infinite;
    cursor: none !important;
}

#home {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.space-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 17px 23px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 73px 89px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 134px 41px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 56px 167px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 189px 78px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 23px 145px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 167px 12px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 98px 134px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 250px 180px;
    transition: all 0.3s ease;
}

.stars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 67px 156px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1.5px 1.5px at 145px 34px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 34px 87px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 178px 123px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 89px 67px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 156px 189px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 220px 200px;
    animation: twinkle-2 8s ease-in-out infinite alternate;
}

.stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 45%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 55%, 
        transparent 100%);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

@keyframes twinkle-2 {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.planet {
    position: absolute;
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}

.planet-1 {
    width: 60px;
    height: 60px;
    background: #61dafb;
    top: 20%;
    left: 10%;
    animation: orbit 25s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #282c34;
    font-weight: bold;
}

.planet-1::before {
    content: '⚛️';
}

.planet-2 {
    width: 50px;
    height: 50px;
    background: #f7df1e;
    top: 60%;
    right: 15%;
    animation: orbit 30s linear infinite reverse;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #323330;
    font-weight: bold;
}

.planet-2::before {
    content: 'JS';
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.asteroid {
    position: absolute;
    border-radius: 4px;
    animation: drift 15s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.asteroid-1 {
    width: 24px;
    height: 24px;
    background: #e34c26;
    top: 30%;
    left: -30px;
    animation: drift-1 12s linear infinite;
}

.asteroid-1::before {
    content: '<>';
    font-size: 10px;
}

.asteroid-2 {
    width: 20px;
    height: 20px;
    background: #1572b6;
    top: 70%;
    left: -25px;
    animation: drift-2 18s linear infinite;
}

.asteroid-2::before {
    content: '{}';
    font-size: 8px;
}

.asteroid-3 {
    width: 28px;
    height: 28px;
    background: #68217a;
    top: 50%;
    left: -35px;
    animation: drift-3 15s linear infinite;
}

.asteroid-3::before {
    content: '#';
    font-size: 14px;
}

@keyframes drift-1 {
    0% { left: -20px; transform: rotate(0deg); }
    100% { left: 100vw; transform: rotate(360deg); }
}

@keyframes drift-2 {
    0% { left: -15px; transform: rotate(0deg); }
    100% { left: 100vw; transform: rotate(-360deg); }
}

@keyframes drift-3 {
    0% { left: -25px; transform: rotate(0deg); }
    100% { left: 100vw; transform: rotate(180deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
h1 {
    color: #FFF7E3;
    font-size: 128px;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-family: 'Soria', sans-serif;
    font-weight: 100;
}
.opening{
    color:#C6C1B1;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}
.rectangle {
      width: 229px;
      height: 4px;
      background-color: #3c45ed;
      border-radius: 42px;
      margin: 30px auto 20px auto;
      animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px #3c45ed; }
    50% { box-shadow: 0 0 20px #3c45ed, 0 0 30px #3c45ed; }
}


.dive-button {
            position: relative;
            background: rgba(255, 255, 255, 0.056);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #ffffff;
            font-size: 20px;
            font-weight: 300;
            padding: 16px 40px;
            border: 1px solid rgb(255, 255, 255);
            border-radius: 60px;
            cursor: none !important;
            transition: all 0.3s ease, transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            outline: none;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 32px rgba(113, 113, 113, 0.3),
                        inset 0 -2.1px 10px rgb(236, 236, 236);
            overflow: hidden;
            display: block;
            margin: 100px auto 50px auto;
            transform: scale(1);
        }

        .dive-button::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border-radius: 58px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 60%);
            filter: blur(8px);
            pointer-events: none;
            opacity: 0.8;
        }

        .dive-button:hover {
            background: rgba(255, 255, 255, 0.018);
            border-color: rgb(255, 255, 255);
            transform: translateY(-12px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.123),
                        inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .dive-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }



.circle_two{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #3c45ed;
    margin: 70px auto 35px auto;
    animation: float 2.5s ease-in-out infinite;
}

#aboutme {
    min-height: 100vh;
    padding: 50px;
    color: #C6C1B1;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    transform: scale(0.3);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transform-origin: center center;
    background: rgb(19, 19, 19);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.about-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(60, 69, 237, 0.3);
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation: floatSlow 6s ease-in-out infinite;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 8%;
    animation: floatSlow 8s ease-in-out infinite reverse;
}

.floating-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.triangle-1 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(141, 211, 255, 0.2);
    top: 25%;
    right: 15%;
    animation: rotate 15s linear infinite;
}

.triangle-2 {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(60, 69, 237, 0.3);
    bottom: 20%;
    left: 15%;
    animation: rotate 20s linear infinite reverse;
}

.floating-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 2px;
}

.line-1 {
    width: 150px;
    height: 2px;
    top: 40%;
    left: 5%;
    transform: rotate(45deg);
    animation: pulse 4s ease-in-out infinite;
}

.line-2 {
    width: 100px;
    height: 1px;
    bottom: 35%;
    right: 10%;
    transform: rotate(-30deg);
    animation: pulse 5s ease-in-out infinite 2s;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(141, 211, 255, 0.6);
    border-radius: 50%;
}

.dot-1 {
    top: 30%;
    left: 20%;
    animation: twinkle 3s ease-in-out infinite;
}

.dot-2 {
    top: 60%;
    left: 80%;
    animation: twinkle 4s ease-in-out infinite 1s;
}

.dot-3 {
    bottom: 25%;
    left: 25%;
    animation: twinkle 5s ease-in-out infinite 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

#aboutme > img {
    max-width: 700px;
    width: 100%;
    display: block;
    margin: 5px auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation: floatSlow 4s ease-in-out infinite;
}

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

.rect_vert{
    height: 0;
    width: 8px;
    background-color: #3c45ed;
    border-radius: 42px;
    margin: -110px auto 5px auto;
    transition: height 0.3s ease-out;
    transform: translateZ(0);
    will-change: height;
}

.circle_three{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #3c45ed;
    margin: 50px auto 0px auto;
    cursor: none !important;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid white;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.intro{
    color:#C6C1B1;
    text-align: center;
    font-size: 18px;
    margin: 20px auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 1s ease;
    max-width: 1000px;
}

.intro.show {
    opacity: 1;
}

#profile {
    min-height: 100vh;
    background: rgb(19, 19, 19);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#profile::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(60, 69, 237, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

#profile::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(141, 211, 255, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.profile-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 17px 23px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 73px 89px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 134px 41px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1.5px 1.5px at 56px 167px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 189px 78px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 23px 145px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 167px 12px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 98px 134px, rgba(255,255,255,0.9), transparent);
    background-repeat: repeat;
    background-size: 250px 180px;
    transition: all 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.profile-stars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 67px 156px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1.5px 1.5px at 145px 34px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 34px 87px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 178px 123px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 89px 67px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 156px 189px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 220px 200px;
    animation: twinkle-2 8s ease-in-out infinite alternate;
}

.profile-stars.warp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255,255,255,0.1) 45%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 55%, 
        transparent 100%);
    opacity: 1;
    transform: translateY(100%);
    animation: warpSpeed 0.5s ease-out;
}

@keyframes warpSpeed {
    0% { 
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: translateY(100%);
        opacity: 0;
    }
}

.new-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 1;
}

.new-layout.show {
    opacity: 1;
    visibility: visible;
}

.profile-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(60, 69, 237, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none !important;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

.arrow-down-profile {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid white;
}

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

.left-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin: 0;
    color: #C6C1B1;
    font-family: 'Soria', sans-serif;
    transform: translateX(-200px);
    transition: transform 0.4s ease-in;
}

.left-content h2.animate {
    transform: translateX(0);
}

.left-content .name {
    font-size: 72px;
    color: rgb(0, 62, 176);
    margin: 10px 0;
    text-align: left;
    margin-left: 10%;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(-200px);
    transition: transform 0.8s ease;
}

.left-content .name.animate {
    transform: translateX(0);
}

.experience {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    transform: translateX(-200px);
    transition: transform 0.8s ease;
}

.experience.animate {
    transform: translateX(0);
}

.experience .number {
    font-size: 120px;
    font-weight: bold;
    color: rgb(141, 211, 255);
    margin-top: 45%;
    margin-left: 15%;
    animation: pulse 3s ease-in-out infinite;
}

.exp-text {
    text-align: left;
    margin-top: 45%;
}

.exp-text p {
    margin: 0;
    font-size: 14px;
    color: #C6C1B1;
}

.center-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-pic {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    border: 3px solid #C6C1B1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color:rgb(141, 211, 255);
    z-index: 1;
}


.right-content {
    text-align: right;
}

.tagline-top {
    font-size: 16px;
    color: rgb(141, 211, 255);
    margin-bottom: 40px;
    margin-right: 15%;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(200px);
    transition: transform 0.8s ease;
}

.tagline-top.animate {
    transform: translateX(0);
}

.creative {
    font-size: 48px;
    font-style: italic;
    margin: 0;
    color: #C6C1B1;
    margin-top: 70%;
    margin-right: 15%;
    transform: translateX(200px);
    transition: transform 0.8s ease;
}

.creative.animate {
    transform: translateX(0);
}

.designer {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: rgb(0, 62, 176);
    margin-right: 35%;
    transform: translateX(200px);
    transition: transform 0.8s ease;
}

.designer.animate {
    transform: translateX(0);
}


.masked-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -50px;
  margin: 50px auto;
  transform: translateY(-150px);
}

.masked {
  width: 180px;
  height: 600px;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  margin-top: 100px;
  z-index: 1;
}

.masked2 {
  width: 180px;
  height: 650px;
  background-image: url('assets/images/');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 0 -30px;
  z-index: 2;
  filter: drop-shadow(rgb(0, 0, 0));
}

.masked3 {
  width: 180px;
  height: 600px;
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 200px;
  z-index: 1;
}

.masked::after,
.masked2::after,
.masked3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.5));
  mix-blend-mode: multiply;
}

.cv-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 12px;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.3s ease, transform 0.8s ease;
}

.cv-circle.show {
  transform: translate(-50%, -50%) scale(1);
}

.download-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(60, 69, 237, 0.9);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.download-notification.show {
  transform: translateX(0);
}

#skills {
  min-height: 100vh;
  padding: 100px 50px;
  background-color: rgb(19, 19, 19);
  background-image: url('assets/images/skills.png');
  background-repeat: no-repeat;
  position: relative;
}

.skills-square {
  position: absolute;
  right: 20%;
  top: 140px;
  width: 300px;
  height: 300px;
  background: rgba(22, 22, 22, 0.76);
  border: 50px solid rgb(54, 54, 54);
  border-radius: 25px;
  transform: rotate(45deg);
  animation: floatSlow 6s ease-in-out infinite;
}
.skills-square-two {
  position: absolute;
  left: 20%;
  top: 700px;
  width: 300px;
  height: 300px;
  background: rgba(22, 22, 22, 0.76);
  border: 50px solid rgb(54, 54, 54);
  border-radius: 25px;
  transform: rotate(45deg);
  animation: floatSlow 6s ease-in-out infinite;
}

.skills-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.skill-card {
  position: relative;
  padding: 60px 40px;
  color: #C6C1B1;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.develop-card {
  transform: translateX(-100%);
}

.develop-card.show {
  opacity: 1;
  transform: translateX(0);
}

.design-card.show {
  opacity: 1;
  transform: translateX(0);
}

.corner-bracket {
  position: absolute;
  width: 40px;
  height: 40px;
}

.corner-bracket::before,
.corner-bracket::after {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
}

.corner-bracket.top-left::before {
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  animation: drawVerticalTL 6s ease-in-out infinite;
}

.corner-bracket.top-left::after {
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  animation: drawHorizontalTL 6s ease-in-out infinite 1.5s;
}

.corner-bracket.bottom-right::before {
  bottom: 0;
  right: 0;
  width: 2px;
  height: 0;
  animation: drawVerticalBR 6s ease-in-out infinite 3s;
}

.corner-bracket.bottom-right::after {
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  animation: drawHorizontalBR 6s ease-in-out infinite 4.5s;
}

@keyframes drawVerticalTL {
  0% { height: 0; }
  50% { height: 40px; }
  100% { height: 0; }
}

@keyframes drawHorizontalTL {
  0% { width: 0; }
  50% { width: 40px; }
  100% { width: 0; }
}

@keyframes drawVerticalBR {
  0% { height: 0; }
  50% { height: 40px; }
  100% { height: 0; }
}

@keyframes drawHorizontalBR {
  0% { width: 0; }
  50% { width: 40px; }
  100% { width: 0; }
}

.corner-bracket.top-left {
  top: 36px;
  left: 0px;
  border-right: none;
  border-bottom: none;
}

.corner-bracket.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.develop-card .corner-bracket.bottom-right {
  bottom: 470px;
}

.design-card .corner-bracket.bottom-right {
  bottom: 20px;
}

.skill-card h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: #C6C1B1;
  letter-spacing: 2px;
}

.skill-description {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 30px;
  font-weight: 300;
  text-align: justify;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.skill-tag {
  position: relative;
  padding: 12px 24px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 25px;
  font-size: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.056);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 32px rgba(113, 113, 113, 0.1), inset 0 -2.1px 10px rgba(236, 236, 236, 0.48);
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 60%);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.8;
}

.skill-tag:hover {
  background: rgba(255, 255, 255, 0.018);
  border-color: rgb(255, 255, 255);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.123), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.card-bg {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 400px;
  height: 350px;
  background: rgba(60, 60, 60, 0.3);
  border-radius: 20px;
  z-index: 1;
}

.develop-card .card-bg {
  right: -50px;
}

.design-card {
  margin-top: 550px;
  transform: translateX(100%);
}

.design-card .card-bg {
  left: -50px;
  top: 50%;
}

#ojt {
  min-height: 100vh;
  padding: 0;
  background-color: rgb(19, 19, 19);
}

.concentrix-container {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 170px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}

.concentrix-text {
  text-align: center;
}

.concentrix-text h2 {
  font-family: 'Soria', sans-serif;
  font-size: 64px;
  font-weight: 100;
  color: #FFF7E3;
  margin: 0;
}

.concentrix-text p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
}

.ojt-image {
  width: 600px;
  height: auto;
  object-fit: contain;
  margin-right: 15%;
  margin-top: 100px;
}

.concentrix-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: center;
}

.concentrix-divider::before {
  
  content: '';
  width: 8px;
  height: 540px;
  background-color: #FFF7E3;
  border-radius: 12px;
}



.ojt_circle{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #FFF7E3;
    animation: float 2.5s ease-in-out infinite;
}

.internship-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  gap: 50px;
}

.internship-title {
  font-family: 'Le Murmure', serif;
  font-size: 550px;
  color: #B98D34;
  margin-right: -35%;
}
.internship-title-two {
  font-family: 'Le Murmure', serif;
  font-size: 550px;
  color: #B98D34;
  margin-top: -10%;
  margin-left: -35%;
}

.intern-description {
  margin-top: -20%;
}
.concentrix-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
  
  * {
    cursor: auto !important;
  }
  
  .planet {
    display: none;
  }
  
  .asteroid {
    width: 4px !important;
    height: 6px !important;
  }
  
  .nav-bar {
    padding: 8px 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-left, .nav-right {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-bar a {
    font-size: 12px;
  }
  
  .nav-bar .circle {
    width: 35px;
    height: 35px;
    order: -1;
    margin-bottom: 10px;
  }
  
 
  
  h1 {
    font-size: 36px;
    margin-top: 40px;
    padding: 0 15px;
  }
  
  .rectangle {
    width: 150px;
  }
  
  .opening {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .dive-button {
    font-size: 14px;
    padding: 10px 25px;
    margin: 40px auto 30px auto;
  }
  
  #aboutme {
    padding: 20px 15px;
    padding-top: 50px;
  }
  
  #aboutme > img {
    max-width: 90%;
  }
  
  .about-decorations {
    display: none;
  }
  
  .circle_two {
    width: 30px;
    height: 30px;
    margin: 40px auto 25px auto;
  }
  
  .circle_three {
    width: 20px;
    height: 20px;
  }
  
  .intro {
    font-size: 14px;
    padding: 15px;
  }
  
  .new-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 150px;
    padding: 0 15px;
  }
  
  .left-content h2 {
    font-size: 28px;
    text-align: center;
  }
  
  .left-content .name {
    font-size: 40px;
    text-align: center;
    margin-left: 0;
    white-space: normal;
  }
  
  .experience {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .experience .number {
    font-size: 60px;
    margin: 0;
  }
  
  .exp-text {
    margin: 0;
    text-align: center;
  }
  
  .center-content {
    flex-direction: column;
  }
  
  .profile-pic {
    width: 200px;
    height: 200px;
  }
  
  .masked, .masked2, .masked3 {
    display: none;
  }
  
  .right-content {
    text-align: center;
  }
  
  .tagline-top {
    font-size: 12px;
    margin-right: 0;
    text-align: center;
    white-space: normal;
  }
  
  .creative {
    font-size: 28px;
    margin-right: 0;
    margin-top: 20px;
    text-align: center;
    color: #C6C1B1;

  }
  
  .designer {
    font-size: 28px;
    margin-right: 0;
    margin-top: 10px;
    text-align: center;
  }
  
  #skills {
    padding: 50px 15px;
  }
  
  .skills-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .skill-card {
    padding: 30px 20px;
  }
  
  .skill-card h2 {
    font-size: 32px;
  }
  
  .skill-description {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .skill-tags {
    gap: 10px;
  }
  
  .skill-tag {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .design-card {
    margin-top: 0;
  }
  
  .card-bg {
    display: none;
  }
  
  .corner-bracket {
    width: 30px;
    height: 30px;
  }
  
  .skills-square {
    display: none;
  }
  
  #concentrix {
    padding: 50px 15px;
  }
  
  .concentrix-container {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
    padding: 50px 15px;
  }
  
  .concentrix-text h2 {
    font-size: 40px;
  }
  
  .concentrix-text p {
    font-size: 14px;
  }
  
  .concentrix-container {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
    padding: 50px 15px;
  }
  
  .ojt-image {
    width: 100px;
  }
  
  .internship-section {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  
  .internship-title {
    font-size: 80px;
    margin-right: 0;
    text-align: center;
  }
  
  .internship-title-two {
    font-size: 80px;
    margin-left: 0;
    margin-top: 0;
    text-align: center;
  }
  
  .concentrix-divider {
    width: 100%;
    height: 4px;
  }
  
  .concentrix-image img {
    max-width: 100%;
  }
  
  .skeleton-title {
    width: 85%;
    height: 60px;
  }
  
  .skeleton-text {
    width: 75%;
    height: 20px;
  }
  
  .skeleton-button {
    width: 120px;
    height: 40px;
  }
}


.skills-arrow-up {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(60, 69, 237, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none !important;
  animation: bounce 2s ease-in-out infinite;
  z-index: 10;
}

.arrow-up-skills {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid white;
}

.skills-stars {position: absolute; width: 100%;height: 100%; z-index: 0; pointer-events: none;}

.skills-stars.warp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
      transparent 0%, 
      rgba(255,255,255,0.1) 45%, 
      rgba(255,255,255,0.3) 50%, 
      rgba(255,255,255,0.1) 55%, 
      transparent 100%);
  opacity: 1;
  transform: translateY(100%);
  animation: warpSpeed 0.5s ease-out;
}
