/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    background: #050505;
    color: #e0e0e0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s, visibility 0.8s;
    overflow: hidden;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Dark wave/curve background shapes */
.loading-wave {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.loading-wave-1 {
    width: 900px;
    height: 900px;
    top: -30%;
    right: -20%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    animation: waveFloat 8s ease-in-out infinite;
}

.loading-wave-2 {
    width: 700px;
    height: 700px;
    bottom: -25%;
    left: -15%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: waveFloat 10s ease-in-out infinite reverse;
}

@keyframes waveFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -15px) scale(1.05);
    }
}

/* Glass bubble spheres */
.glass-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.05) 30%,
            rgba(255, 255, 255, 0.02) 50%,
            transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.glass-bubble::before {
    content: '';
    position: absolute;
    width: 35%;
    height: 20%;
    top: 15%;
    left: 20%;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    filter: blur(1px);
}

.glass-bubble-1 {
    width: 220px;
    height: 220px;
    bottom: 10%;
    left: 5%;
    animation: bubbleFloat1 7s ease-in-out infinite;
}

.glass-bubble-2 {
    width: 160px;
    height: 160px;
    top: 15%;
    right: 12%;
    animation: bubbleFloat2 9s ease-in-out infinite;
}

.glass-bubble-3 {
    width: 100px;
    height: 100px;
    top: 55%;
    right: 25%;
    animation: bubbleFloat3 6s ease-in-out infinite;
}

@keyframes bubbleFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(15px, -25px) rotate(3deg);
    }

    66% {
        transform: translate(-10px, -10px) rotate(-2deg);
    }
}

@keyframes bubbleFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, 15px) rotate(-4deg);
    }
}

@keyframes bubbleFloat3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -20px);
    }
}

.loading-content {
    text-align: center;
    z-index: 1;
}

.loading-title {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    font-style: normal;
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.loading-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0 20px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.loading-bar-container {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
    border-radius: 4px;
    transition: width 0.1s;
}

.loading-percent {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(58, 12, 163, 0.3);
    transition: all 0.3s;
}

#navbar.scrolled {
    padding: 8px 40px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(58, 12, 163, 0.2);
}

.nav-logo {
    font-family: 'Outfit';
    font-size: 1.5rem;
    font-weight: 700;
    color: #00D4FF;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #999;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #00D4FF;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* ===== SECTIONS ===== */
.section {
    min-height: 100vh;
    padding: 100px 60px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

/* ===== PARTICLES ===== */
#particles-container {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(58, 12, 163, 0.4);
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ===== HERO ===== */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-left: 8%;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(5, 5, 5, 0.9) 0%,
            rgba(5, 5, 5, 0.6) 40%,
            rgba(5, 5, 5, 0.2) 70%,
            transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 40%, transparent 70%);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Light Streaks */
.hero-light-streak {
    position: absolute;
    border-radius: 100px;
    filter: blur(2px);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero-streak-1 {
    width: 700px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00D4FF, #a855f7, #ec4899, transparent);
    top: 60%;
    right: -5%;
    transform: rotate(-25deg);
    animation: streakGlow 3s ease-in-out infinite alternate;
}

.hero-streak-2 {
    width: 500px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ec4899, #a855f7, #00D4FF, transparent);
    top: 45%;
    right: 5%;
    transform: rotate(-15deg);
    animation: streakGlow 4s 1s ease-in-out infinite alternate;
}

.hero-streak-3 {
    width: 600px;
    height: 2.5px;
    background: linear-gradient(90deg, transparent, #8b5cf6, #00D4FF, #06b6d4, transparent);
    bottom: 25%;
    right: -2%;
    transform: rotate(-35deg);
    animation: streakGlow 3.5s 0.5s ease-in-out infinite alternate;
}

@keyframes streakGlow {
    0% {
        opacity: 0.3;
        filter: blur(2px);
    }

    100% {
        opacity: 0.7;
        filter: blur(1px);
    }
}

/* Glass Spheres */
.hero-sphere {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 30% 30%,
            rgba(0, 212, 255, 0.4),
            rgba(120, 80, 255, 0.2),
            rgba(236, 72, 153, 0.15),
            rgba(0, 0, 0, 0.3));
    box-shadow:
        inset 0 0 30px rgba(0, 212, 255, 0.2),
        inset -10px -10px 20px rgba(120, 80, 255, 0.15),
        0 0 40px rgba(0, 212, 255, 0.15),
        0 0 80px rgba(120, 80, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px);
}

.hero-sphere::before {
    content: '';
    position: absolute;
    width: 40%;
    height: 25%;
    top: 15%;
    left: 20%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    filter: blur(2px);
}

.hero-sphere::after {
    content: '';
    position: absolute;
    width: 20%;
    height: 12%;
    bottom: 20%;
    right: 20%;
    background: rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    filter: blur(4px);
}

.hero-sphere-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    right: 12%;
    animation: sphereFloat1 8s ease-in-out infinite;
}

.hero-sphere-2 {
    width: 120px;
    height: 120px;
    top: 55%;
    right: 25%;
    animation: sphereFloat2 10s 1s ease-in-out infinite;
}

.hero-sphere-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 8%;
    animation: sphereFloat3 7s 2s ease-in-out infinite;
}

.hero-sphere-4 {
    width: 50px;
    height: 50px;
    top: 25%;
    right: 35%;
    animation: sphereFloat2 9s 0.5s ease-in-out infinite;
}

@keyframes sphereFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 15px) rotate(-3deg);
    }

    75% {
        transform: translate(20px, 10px) rotate(4deg);
    }
}

@keyframes sphereFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-15px, 20px) rotate(-5deg);
    }

    66% {
        transform: translate(10px, -15px) rotate(3deg);
    }
}

@keyframes sphereFloat3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -25px) rotate(8deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-title {
    font-family: 'Outfit';
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    opacity: 0;
    animation: heroFadeUp 1s 0.3s forwards;
}

.highlight {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 900;
    color: #00D4FF;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    letter-spacing: 1px;
}

.hero-desc {
    max-width: 550px;
    margin: 25px 0 35px;
    color: #999;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0;
    animation: heroFadeUp 1s 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeUp 1s 0.9s forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF, #020024);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: #e0e0e0;
    padding: 12px 10px;
}

.btn-text:hover {
    color: #00D4FF;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #00D4FF, #020024);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Outfit';
    font-size: 2.5rem;
    font-weight: 800;
}

.section-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #009ec4, #00D4FF);
    border-radius: 3px;
    margin-top: 10px;
}

.section-underline.center {
    margin: 10px auto 40px;
}

/* ===== ABOUT ===== */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: wrapperFloat 6s ease-in-out infinite;
}

@keyframes wrapperFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.about-image-wrapper:hover {
    transform: scale(1.08) perspective(600px) rotateY(5deg);
    animation-play-state: paused;
}

/* === Outer Rotating Gradient Ring === */
.about-ring {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    background: conic-gradient(from 0deg, #00D4FF, #0ff, #00D4FF, transparent 30%, #a855f7 50%, #ec4899 60%, transparent 70%, #00D4FF) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 4s linear infinite;
    transition: all 0.4s ease;
}

/* Inner dashed ring — counter rotation */
.about-ring::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 212, 255, 0.25);
    animation: ringRotateReverse 6s linear infinite;
}

/* Pulsing neon aura */
.about-ring::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(168, 85, 247, 0.05) 40%, transparent 70%);
    animation: auraBreath 3s ease-in-out infinite;
    z-index: -1;
}

.about-image-wrapper:hover .about-ring {
    inset: -20px;
    border-width: 3px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    animation: ringRotate 2s linear infinite;
}

.about-image-wrapper:hover .about-ring::after {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(168, 85, 247, 0.1) 40%, transparent 70%);
}

@keyframes ringRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ringRotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes auraBreath {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

/* === Profile Image Container === */
.about-image {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a0540, #050505);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0 25px rgba(0, 212, 255, 0.15),
        0 0 60px rgba(0, 212, 255, 0.05),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.5s ease;
}

/* Holographic scanline overlay */
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 212, 255, 0.03) 45%,
            rgba(0, 212, 255, 0.08) 50%,
            rgba(0, 212, 255, 0.03) 55%,
            transparent 100%);
    background-size: 100% 200%;
    animation: scanline 3s linear infinite;
    pointer-events: none;
    z-index: 2;
}

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

    100% {
        background-position: 0 200%;
    }
}

.about-image-wrapper:hover .about-image {
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(0, 212, 255, 0.12),
        0 0 120px rgba(168, 85, 247, 0.06),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

/* === Avatar Image === */
.about-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
    filter: brightness(0.95) saturate(1.05);
}

.about-image-wrapper:hover .about-avatar-img {
    transform: scale(1.1);
    filter: brightness(1.15) saturate(1.2) contrast(1.05);
}

/* === Orbiting Particles with Comet Trails === */
.about-dot {
    position: absolute;
    border-radius: 50%;
    background: #00D4FF;
    box-shadow:
        0 0 8px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.4),
        0 0 40px rgba(0, 212, 255, 0.15);
    transition: all 0.4s ease;
}

/* Comet trail effect */
.about-dot::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.5), transparent);
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border-radius: 10px;
}

.about-image-wrapper:hover .about-dot {
    box-shadow:
        0 0 12px rgba(0, 212, 255, 1),
        0 0 30px rgba(0, 212, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.2);
}

.about-dot-1 {
    width: 10px;
    height: 10px;
    top: 8%;
    left: -8%;
    animation: particleOrbit1 5s ease-in-out infinite;
}

.about-dot-2 {
    width: 6px;
    height: 6px;
    top: 55%;
    right: -12%;
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.8), 0 0 20px rgba(168, 85, 247, 0.4);
    animation: particleOrbit2 6s ease-in-out infinite;
    animation-delay: -2s;
}

.about-dot-2::after {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.5), transparent);
}

.about-dot-3 {
    width: 8px;
    height: 8px;
    bottom: 3%;
    left: 25%;
    background: #ec4899;
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.8), 0 0 20px rgba(236, 72, 153, 0.4);
    animation: particleOrbit3 5.5s ease-in-out infinite;
    animation-delay: -3.5s;
}

.about-dot-3::after {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.5), transparent);
}

@keyframes particleOrbit1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    25% {
        transform: translate(12px, -18px) scale(1.3);
        opacity: 1;
    }

    50% {
        transform: translate(-5px, -28px) scale(0.8);
        opacity: 0.5;
    }

    75% {
        transform: translate(-12px, -8px) scale(1.15);
        opacity: 1;
    }
}

@keyframes particleOrbit2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translate(-14px, -12px) scale(1.4);
        opacity: 1;
    }

    50% {
        transform: translate(-8px, 14px) scale(0.7);
        opacity: 0.4;
    }

    75% {
        transform: translate(8px, 6px) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes particleOrbit3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    33% {
        transform: translate(15px, -10px) scale(1.3);
        opacity: 1;
    }

    66% {
        transform: translate(-8px, -18px) scale(0.8);
        opacity: 0.5;
    }
}

.about-text p {
    color: #aaa;
    line-height: 1.8;
    margin: 15px 0;
    font-size: 0.95rem;
}

.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.badge {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    font-size: 0.85rem;
    color: #80eaff;
    font-weight: 500;
    transition: all 0.3s;
}

.badge:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== SKILLS ===== */
.skills-section {
    z-index: 1;
    position: relative;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-card {
    background: rgba(58, 12, 163, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.skill-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.2);
}

.skill-card-banner {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.skill-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.skill-card:hover .skill-card-banner img {
    transform: scale(1.08);
}

.skill-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(20, 5, 50, 0.4) 50%, transparent 100%);
}

.skill-card-content {
    padding: 20px 24px 24px;
    position: relative;
}

.skill-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 212, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00D4FF;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.skill-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.skill-card-tagline {
    font-size: 0.82rem;
    color: rgba(0, 212, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Skill Detail Modal */
.skill-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s;
    padding: 20px;
}

.skill-modal.active {
    opacity: 1;
    visibility: visible;
}

.skill-modal-content {
    background: linear-gradient(145deg, rgba(20, 5, 50, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 22px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.08);
    position: relative;
}

.skill-modal.active .skill-modal-content {
    transform: translateY(0) scale(1);
}

.skill-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.skill-modal-close:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.skill-modal-banner {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.skill-modal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skill-modal-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 5, 25, 1) 0%, rgba(20, 5, 50, 0.4) 50%, transparent 100%);
}

.skill-modal-body {
    padding: 28px 32px 36px;
}

.skill-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 212, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #00D4FF;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.skill-modal-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.skill-modal-body p {
    color: #b0b8c8;
    line-height: 1.85;
    font-size: 0.95rem;
}


/* ===== CONTACT ===== */
.contact-section {
    z-index: 1;
    position: relative;
}

.contact-subtitle {
    text-align: center;
    color: #888;
    max-width: 600px;
    margin: -20px auto 40px;
    font-size: 0.95rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-family: 'Inter';
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00D4FF;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.contact-form textarea {
    resize: vertical;
}

.contact-info h3 {
    font-family: 'Outfit';
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-info>p {
    color: #888;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.contact-detail:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 158, 196, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D4FF;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail div {
    font-size: 0.88rem;
}

.contact-detail strong {
    color: #fff;
}

.social-links {
    margin-top: 25px;
}

.social-links h4 {
    margin-bottom: 12px;
    font-weight: 600;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1rem;
    transition: all 0.3s;
}

.socials a:hover {
    background: #009ec4;
    color: #fff;
    border-color: #009ec4;
    transform: translateY(-3px);
}

/* ===== CHAT BUTTON ===== */
.chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D4FF, #020024);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 25px rgba(0, 158, 196, 0.5);
    transition: all 0.3s;
    animation: chatPulse 2s infinite;
}

.chat-btn:hover {
    transform: scale(1.1);
}

@keyframes chatPulse {

    0%,
    100% {
        box-shadow: 0 4px 25px rgba(0, 158, 196, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(0, 158, 196, 0.8);
    }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s;
}

.scroll-indicator.hidden {
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: #00D4FF;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 26px;
    }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 25px;
    }

    #navbar {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s;
    }

    .nav-links.open {
        display: flex;
        right: 0;
    }

    .nav-hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-badges {
        justify-content: center;
    }

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

    .skill-modal-banner {
        height: 160px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-underline {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .skill-card-banner {
        height: 140px;
    }

    .skill-modal-body {
        padding: 20px 20px 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}