 /* ── RESET & ROOT ── */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg: #060d1a;
            --bg2: #081426;
            --card: #0c1628;
            --card2: #0f1c35;
            --accent: #7c3aed;
            --accent2: #06b6d4;
            --accent-glow: rgba(124, 58, 237, 0.35);
            --cyan-glow: rgba(6, 182, 212, 0.35);
            --muted: #8899b4;
            --muted2: #6a7d97;
            --white: #f0f4ff;
            --glass: rgba(255, 255, 255, 0.028);
            --glass-border: rgba(255, 255, 255, 0.055);
            --glass-hover: rgba(255, 255, 255, 0.05);
            --radius: 18px;
            --radius-sm: 12px;
            --font-display: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.45);
            --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.12);
        }

        html { scroll-behavior: smooth; }

        body {
            background: var(--bg);
            font-family: var(--font-body);
            min-height: 100vh;
            overflow-x: hidden;
            color: var(--white);
        }

        /* ── ANIMATED BACKGROUND ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 50% at 20% -10%, rgba(124, 58, 237, 0.13) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 80% 10%, rgba(6, 182, 212, 0.08) 0%, transparent 55%),
                radial-gradient(ellipse 50% 60% at 50% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        /* Grain texture overlay */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
            background-size: 180px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.4;
        }

        /* ── FLOATING ORBS ── */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
            z-index: 0;
            animation: orbFloat 14s ease-in-out infinite alternate;
        }

        .orb-1 {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.09), transparent 70%);
            top: 30%;
            right: -80px;
            animation-delay: -5s;
        }

        .orb-3 {
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
            bottom: 10%;
            left: 10%;
            animation-delay: -9s;
        }

        @keyframes orbFloat {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, 40px) scale(1.08); }
        }

        /* All sections above z-index 0 */
        .navbar, .box, .section-card, footer, .progress-bar { position: relative; z-index: 1; }

        /* ── SCROLL PROGRESS BAR ── */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            z-index: 9999;
            transition: width 0.1s linear;
            box-shadow: 0 0 12px var(--cyan-glow);
        }

        /* ── NAVBAR ── */
        .navbar {
            width: 100%;
            height: 86px;
            background: rgba(6, 13, 26, 0.82);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(6, 13, 26, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        }

        .logo img {
            height: 42px;
            width: auto;
            filter: brightness(0) invert(1);
            cursor: pointer;
            display: block;
            transition: opacity 0.2s;
        }

        .logo img:hover { opacity: 0.8; }

        .menu-toggle {
            display: none;
            font-size: 26px;
            color: var(--white);
            cursor: pointer;
            background: none;
            border: none;
            line-height: 1;
            transition: color 0.2s;
        }

        .menu-toggle:hover { color: var(--accent2); }

        .nav ul {
            list-style: none;
            display: flex;
            gap: 4px;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav ul li a {
            font-family: var(--font-display);
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding: 8px 14px;
            border-radius: 8px;
            transition: color 0.25s ease, background 0.25s ease;
            display: inline-block;
            position: relative;
        }

        .nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            transition: width 0.3s ease, left 0.3s ease;
            border-radius: 2px;
        }

        .nav ul li a:hover {
            color: var(--white);
            background: var(--glass-hover);
        }

        .nav ul li a:hover::after {
            width: calc(100% - 28px);
            left: 14px;
        }

        /* ── PROFILE BOX ── */
        .box {
            width: 90%;
            max-width: 500px;
            background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
            border-radius: 28px;
            margin: 70px auto 0;
            border: 1px solid var(--glass-border);
            padding: 44px 28px 36px;
            text-align: center;
            box-shadow: var(--shadow-card), var(--shadow-glow);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: box-shadow 0.4s ease;
        }

        .box:hover {
            box-shadow: var(--shadow-card), 0 0 80px rgba(124, 58, 237, 0.18);
        }

        /* Profile image ring */
        .img {
            width: 148px;
            height: 148px;
            border-radius: 50%;
            margin: 0 auto 22px;
            position: relative;
        }

        .img::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, var(--accent2), var(--accent), var(--accent2));
            animation: ringRotate 4s linear infinite;
            z-index: 0;
        }

        .img::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, var(--accent2), var(--accent), var(--accent2));
            filter: blur(10px);
            opacity: 0.5;
            z-index: 0;
            animation: ringRotate 4s linear infinite;
        }

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

        .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--bg);
            display: block;
            position: relative;
            z-index: 1;
        }

        .name {
            font-family: var(--font-display);
            font-size: clamp(26px, 5.5vw, 38px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .badge {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 11px;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #fff;
            padding: 5px 12px;
            border-radius: 6px;
            font-weight: 700;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            cursor: default;
            vertical-align: middle;
            margin-left: 10px;
            box-shadow: 0 0 16px var(--cyan-glow);
        }

        /* ── TYPING ANIMATION ── */
        .typing-wrapper {
            min-height: 30px;
            margin: 8px 0 16px;
        }

        .typing-text {
            color: var(--accent2);
            font-family: var(--font-display);
            font-size: clamp(14px, 3.5vw, 17px);
            font-weight: 600;
            letter-spacing: 0.4px;
        }

        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: var(--accent2);
            vertical-align: middle;
            margin-left: 2px;
            animation: blink 0.7s step-end infinite;
            box-shadow: 0 0 8px var(--accent2);
        }

        @keyframes blink { 50% { opacity: 0; } }

        .role {
            color: var(--muted);
            font-size: 14px;
            letter-spacing: 0.2px;
            margin-bottom: 24px;
        }

        /* ── BUTTONS ── */
        .cta {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .btn {
            padding: 11px 22px;
            border-radius: 12px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.3px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
            cursor: pointer;
        }

        .btn.email {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.2);
            color: var(--white);
            backdrop-filter: blur(8px);
        }

        .btn.email:hover {
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .btn.whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            border: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
        }

        .btn.whatsapp:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
        }

        /* generic outline btn used in contact */
        .btn-outline {
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.2);
            color: var(--white);
            padding: 11px 22px;
            border-radius: 12px;
            font-family: var(--font-display);
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            backdrop-filter: blur(8px);
            transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .btn-outline:hover {
            border-color: var(--accent2);
            color: var(--accent2);
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 24px rgba(6, 182, 212, 0.2);
        }

        /* ── SOCIALS ── */
        .socials {
            margin-top: 22px;
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .socials a {
            color: var(--muted);
            text-decoration: none;
            padding: 9px 18px;
            border-radius: 10px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            font-size: 13px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .socials a:hover { transform: translateY(-3px); }

        .socials a.instagram:hover {
            background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
            color: white;
            border-color: transparent;
            box-shadow: 0 6px 20px rgba(214, 41, 118, 0.4);
        }

        .socials a.linkedin:hover {
            background: linear-gradient(135deg, #0A66C2, #004182);
            color: white;
            border-color: transparent;
            box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
        }

        /* ── SECTION CARDS ── */
        .section-card {
            width: 90%;
            max-width: 740px;
            padding: 36px 34px;
            margin: 36px auto 0;
            border-radius: var(--radius);
            background: linear-gradient(145deg, rgba(255,255,255,0.038), rgba(255,255,255,0.014));
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-card);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            opacity: 0;
            transform: translateY(28px);
        }

        .section-card.visible {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
        }

        .section-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(124, 58, 237, 0.1);
            border-color: rgba(124, 58, 237, 0.18);
        }

        /* Section heading style */
        .section-card h2 {
            font-family: var(--font-display);
            color: var(--white);
            font-size: clamp(19px, 4vw, 24px);
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: -0.3px;
        }

        .section-card h2 .highlight {
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-card p {
            color: var(--muted);
            line-height: 1.8;
            font-size: 15px;
        }

        /* ── SKILLS CARD ── */
        .skills-card h2 {
            text-align: center;
        }

        .skill-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            padding: 10px 12px;
            border-radius: 10px;
            transition: background 0.25s ease;
        }

        .skill-row:last-child { margin-bottom: 0; }

        .skill-row:hover {
            background: rgba(255,255,255,0.03);
        }

        .skill-label {
            font-family: var(--font-display);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.3px;
            width: 100px;
            flex-shrink: 0;
            text-align: right;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .skill-label i {
            margin-right: 7px;
            font-size: 14px;
            vertical-align: middle;
            display: inline-block;
            width: 16px;
            text-align: center;
            flex-shrink: 0;
        }

        .skill-bar-wrap {
            flex: 1;
            height: 7px;
            background: rgba(255,255,255,0.07);
            border-radius: 20px;
            overflow: hidden;
        }

        .skill-bar-fill {
            height: 100%;
            border-radius: 20px;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            width: 0 !important;
            transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
            position: relative;
        }

        .skill-bar-fill::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: white;
            box-shadow: 0 0 8px var(--accent2), 0 0 16px var(--accent2);
            opacity: 0;
            transition: opacity 0.3s ease 1.2s;
        }

        .skill-bar-fill.animated::after { opacity: 1; }

        .skill-bar-fill.animated {
            width: var(--target-width) !important;
        }

        .skill-pct {
            font-family: var(--font-display);
            color: var(--muted);
            font-size: 12px;
            font-weight: 600;
            width: 36px;
            text-align: right;
            flex-shrink: 0;
        }

        /* ── PROJECTS ── */
        .project-grid {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 6px;
        }

        .project-item {
            padding: 22px 20px;
            border-radius: 14px;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--glass-border);
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .project-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), transparent 60%);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .project-item:hover::before { opacity: 1; }

        .project-item:hover {
            transform: translateX(6px);
            border-color: rgba(124, 58, 237, 0.3);
            background: rgba(124, 58, 237, 0.04);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3), -4px 0 20px rgba(124, 58, 237, 0.15);
        }

        .project-item h3 {
            font-family: var(--font-display);
            color: var(--white);
            font-size: clamp(15px, 3.5vw, 18px);
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }

        .project-item p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
        }

        /* ── EDUCATION ── */
        .edu-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 6px;
        }

        .edu-item {
            padding: 20px 16px;
            border-left: 2px solid rgba(255,255,255,0.07);
            margin-left: 16px;
            position: relative;
            transition: border-color 0.3s ease;
        }

        .edu-item:hover { border-color: var(--accent2); }

        .edu-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 24px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent2);
            border: 2px solid var(--bg);
            box-shadow: 0 0 12px var(--cyan-glow);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
        }

        .edu-item:hover::before {
            transform: scale(1.3);
            box-shadow: 0 0 20px var(--cyan-glow);
        }

        .edu-item h4 {
            font-family: var(--font-display);
            color: var(--white);
            font-size: clamp(14px, 3.5vw, 17px);
            font-weight: 700;
            margin-bottom: 6px;
        }

        .edu-item p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.65;
        }

        /* ── CONTACT ── */
        .contact-info p {
            color: var(--white);
            font-size: 15px;
            margin-bottom: 12px;
            line-height: 1.7;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info p strong {
            color: var(--accent2);
            font-family: var(--font-display);
            font-weight: 700;
            min-width: 80px;
        }

        .contact-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        /* ── FOOTER ── */
        footer {
            text-align: center;
            margin: 50px 0 28px;
            color: var(--muted2);
            font-size: 13px;
            font-family: var(--font-display);
            letter-spacing: 0.3px;
        }

        footer span { color: var(--accent2); }

        /* ── SCROLL TO TOP ── */
        .scroll-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent2), var(--accent));
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            z-index: 900;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 20px var(--accent-glow);
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            box-shadow: 0 8px 30px var(--accent-glow);
            transform: translateY(-3px);
        }

        /* ── RESPONSIVE: TABLET ── */
        @media (max-width: 900px) {
            .section-card {
                max-width: 92%;
                padding: 28px 24px;
            }
        }

        /* ── RESPONSIVE: MOBILE ── */
        @media (max-width: 768px) {
            .navbar {
                padding: 0 20px;
                flex-wrap: wrap;
                height: auto;
                min-height: 70px;
                position: relative;
            }

            .navbar .logo { padding: 14px 0; }

            .menu-toggle { display: block; }

            .nav {
                display: none;
                width: 100%;
                padding: 8px 0 16px;
                border-top: 1px solid var(--glass-border);
            }

            .nav.active { display: block; }

            .nav ul {
                flex-direction: column;
                gap: 0;
                align-items: center;
            }

            .nav ul li a {
                display: block;
                padding: 12px 20px;
                font-size: 15px;
                width: 100%;
                text-align: center;
            }

            .nav ul li a::after { display: none; }

            .box { margin-top: 28px; }

            /* FIX: Skill icons + label stay on one line */
            .skill-label {
                width: 90px;
                font-size: 12.5px;
                white-space: nowrap;
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 5px;
            }

            .skill-label i {
                margin-right: 0;
                font-size: 13px;
                flex-shrink: 0;
            }

            .skill-row { padding: 8px 6px; gap: 10px; }

            .section-card { padding: 24px 18px; }

            .contact-btns {
                flex-direction: column;
            }

            .contact-btns a { text-align: center; width: 100%; justify-content: center; }

            .project-item:hover, .section-card:hover {
                transform: none;
            }

            .btn:hover, .btn-outline:hover {
                transform: none;
                box-shadow: none;
            }

            .socials a:hover { transform: none; }
        }

        @media (max-width: 400px) {
            .cta {
                flex-direction: column;
                align-items: center;
            }

            .cta a {
                width: 85%;
                text-align: center;
                justify-content: center;
            }
        }

        /* ── SECTION DIVIDER ── */
        .section-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent2), var(--accent));
            border-radius: 3px;
            margin-bottom: 22px;
            box-shadow: 0 0 12px var(--cyan-glow);
        }