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

:root {
    --gold: #00F2FE;
    --gold-light: #4FACFE;
    --gold-dark: #0061FF;
    --accent: #7000FF;

    --bg: #020617;
    --bg2: #0B1120;
    --bg3: #1E293B;

    --text: #F1F5F9;
    --text-muted: #94A3B8;

    --surface: rgba(0, 242, 254, 0.05);
    --surface2: rgba(0, 242, 254, 0.1);
    --border: rgba(0, 242, 254, 0.2);

    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body::before {
    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='1'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9999;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold-dark), var(--gold));
    border-radius: 3px;
}

/* ===================== CURSOR ===================== */
#cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--gold), 0 0 24px var(--gold);
    transition: width .2s, height .2s, background .2s;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width .35s cubic-bezier(.25, .46, .45, .94),
        height .35s cubic-bezier(.25, .46, .45, .94),
        border-color .35s, left .08s linear, top .08s linear;
}

body:hover #cursor-dot {
    background: var(--gold-light);
    box-shadow: 0 0 12px var(--gold-light), 0 0 24px var(--gold-light);
}

/* ===================== LOADING SCREEN ===================== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-initials {
    font-family: var(--font-head);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--accent));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradShift 2s ease infinite;
    letter-spacing: -2px;
}

.loader-bar-wrap {
    margin-top: 2.5rem;
    width: min(300px, 80vw);
    height: 3px;
    background: var(--surface2);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 99px;
    animation: loadFill 2s ease forwards;
}

@keyframes loadFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.loader-text {
    margin-top: 1rem;
    font-size: .85rem;
    letter-spacing: .2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

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

/* ===================== NAVBAR ===================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, .75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    animation: navSlideDown .8s .3s cubic-bezier(.25, .46, .45, .94) forwards;
}

@keyframes navSlideDown {
    to {
        transform: translateY(0);
    }
}

.nav-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.25rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transition: width .3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

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

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

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s;
}

/* ===================== SECTION BASE ===================== */
section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* ===================== HERO ===================== */
#hero {
    min-height: 100vh;
    padding-top: 68px;
    display: flex;
    align-items: center;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-avail {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 99px;
    padding: .35rem .9rem;
    font-size: .8rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-avail-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

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

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.hero-name {
    font-family: var(--font-head);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #F5F0E8 0%, var(--gold-light) 30%, var(--gold) 60%, var(--gold-dark) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerName 4s ease infinite;
}

@keyframes shimmerName {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.hero-title {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-top: .75rem;
    letter-spacing: .02em;
}

.hero-title span {
    color: var(--gold);
    font-weight: 600;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform .25s, box-shadow .25s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #020617;
    box-shadow: 0 4px 24px rgba(0, 242, 254, .35);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .3), transparent);
    transform: translateX(-100%);
}

.btn-primary:hover::after {
    animation: shine 0.8s;
}

@keyframes shine {
    to {
        transform: translateX(200%);
    }
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(0, 242, 254, .6);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 24px rgba(201, 168, 76, .2);
}

/* Hero Card */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-wrap {
    position: relative;
    width: 300px;
    height: 350px;
    animation: float3d 6s ease-in-out infinite;
}

@keyframes float3d {

    0%,
    100% {
        transform: translateY(0) rotateX(5deg) rotateY(-8deg)
    }

    33% {
        transform: translateY(-12px) rotateX(-3deg) rotateY(5deg)
    }

    66% {
        transform: translateY(-6px) rotateX(8deg) rotateY(-3deg)
    }
}

.hero-card-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(0, 242, 254, .25) 0%, transparent 70%);
    animation: glowPulse 3s ease infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.hero-card-ring {
    position: absolute;
    inset: -20px;
    border: 2px dashed rgba(0, 242, 254, 0.5);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
    border-radius: 50%;
    animation: spinRing 8s linear infinite;
}

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

.hero-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, .08), rgba(0, 97, 255, .05));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, .6), 0 1px 0 rgba(232, 213, 163, .08) inset;
}

.card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0A0A0A;
    box-shadow: 0 0 30px rgba(0, 242, 254, .4);
}

#profile-image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0A0A0A;
    box-shadow: 0 0 30px rgba(0, 242, 254, .4);
}

.card-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

.card-role {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    margin-top: 1.5rem;
}

.card-stat {
    background: rgba(255, 255, 255, .05);
    border-radius: 10px;
    padding: .6rem;
    text-align: center;
    border: 1px solid var(--border);
}

.card-stat-num {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}

.card-stat-lbl {
    font-size: .62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ===================== MARQUEE ===================== */
.marquee-section {
    padding: 2.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: .05em;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ===================== SKILLS ===================== */
#skills {
    padding: 7rem 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-bar-wrap {}

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.skill-bar-name {
    font-weight: 600;
    font-size: .9rem;
}

.skill-bar-pct {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.skill-bar-bg {
    height: 8px;
    background: var(--surface2);
    border-radius: 99px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    border-radius: 99px;
    width: 0;
    transition: width 1.4s cubic-bezier(.25, .46, .45, .94);
    position: relative;
    overflow: hidden;
}

.skill-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .4) 50%, transparent 100%);
    transform: translateX(-100%);
}

.skill-bar-fill.animated::after {
    animation: shimmerSweep 1.2s .8s ease forwards;
}

@keyframes shimmerSweep {
    to {
        transform: translateX(200%);
    }
}

.skill-bar-fill.c1 {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.skill-bar-fill.c2 {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.skill-bar-fill.c3 {
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.skill-bar-fill.c4 {
    background: linear-gradient(90deg, var(--gold-dark), var(--accent));
}

.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.tech-chip {
    padding: .45rem 1rem;
    border-radius: 99px;
    border: 1px solid var(--border);
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--surface);
    cursor: default;
    transition: transform .3s, border-color .3s, color .3s, box-shadow .3s;
}

.tech-chip:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(0, 242, 254, .3);
}

/* ===================== EXPERIENCE ===================== */
#experience {
    padding: 7rem 0;
    background: var(--bg2);
}

.timeline {
    position: relative;
    margin-top: 3.5rem;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2.95rem;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 2px solid var(--bg2);
    box-shadow: 0 0 12px var(--gold);
}

.exp-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, .05), transparent);
    transition: opacity .3s;
}

.exp-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 40px rgba(0, 242, 254, .15);
}

.exp-card:hover::before {
    opacity: 1;
}

.exp-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.exp-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
}

.exp-badge {
    background: rgba(201, 168, 76, .15);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .75rem;
    border-radius: 99px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.exp-company {
    color: var(--gold);
    font-weight: 600;
    font-size: .9rem;
    margin-top: .25rem;
}

.exp-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: .5rem;
    font-size: .8rem;
    color: var(--text-muted);
}

.exp-desc {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.exp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}

.exp-chip {
    padding: .25rem .75rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(201, 168, 76, .12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .22);
}

/* ===================== PROJECTS ===================== */
#projects {
    padding: 7rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.proj-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.25, .46, .45, .94), box-shadow .35s;
}

.proj-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transition: left .5s ease, right .5s ease;
}

.proj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.proj-card:hover::after {
    left: 0;
    right: 0;
}

.proj-emoji {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.proj-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.proj-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.proj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.proj-tag {
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 5px;
    background: rgba(201, 168, 76, .1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .2);
}

/* ===================== EDUCATION ===================== */
#education {
    padding: 7rem 0;
    background: var(--bg2);
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.edu-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.edu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.edu-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.edu-degree {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
}

.edu-school {
    color: var(--gold);
    font-weight: 500;
    font-size: .9rem;
    margin-top: .25rem;
}

.edu-meta {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .5rem;
}

.lang-section {
    margin-top: 4rem;
}

.lang-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lang-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lang-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: .9rem;
    animation: langFloat 3s ease-in-out infinite;
}

.lang-badge:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes langFloat {

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

    50% {
        transform: translateY(-5px)
    }
}

.lang-flag {
    font-size: 1.5rem;
}

.lang-level {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: .1rem;
}

/* ===================== CERTIFICATIONS ===================== */
#certifications {
    padding: 7rem 0;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.cert-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: transform .3s, border-color .3s;
}

.cert-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.cert-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cert-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .95rem;
}

.cert-issuer {
    font-size: .85rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: .2rem;
}

.cert-year {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

/* ===================== CONTACT ===================== */
#contact {
    padding: 7rem 0;
    background: var(--bg2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    margin-top: 3.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateX(8px);
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(0, 242, 254, .2);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-icon.email {
    background: rgba(201, 168, 76, .2);
}

.contact-icon.phone {
    background: rgba(212, 169, 106, .2);
}

.contact-icon.loc {
    background: rgba(232, 213, 163, .15);
}

.contact-icon.avail {
    background: rgba(139, 105, 20, .25);
}

.contact-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-weight: 600;
    font-size: .9rem;
}

.contact-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.contact-ripple {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    animation: rippleOut 2.5s ease-out infinite;
}

.contact-ripple:nth-child(1) {
    width: 110px;
    height: 110px;
    border-color: rgba(0, 242, 254, .65);
    box-shadow: 0 0 15px rgba(0, 242, 254, .25);
    animation-delay: 0s;
}

.contact-ripple:nth-child(2) {
    width: 160px;
    height: 160px;
    border-color: rgba(79, 172, 254, .5);
    box-shadow: 0 0 20px rgba(79, 172, 254, .2);
    animation-delay: .6s;
}

.contact-ripple:nth-child(3) {
    width: 210px;
    height: 210px;
    border-color: rgba(112, 0, 255, .35);
    box-shadow: 0 0 25px rgba(112, 0, 255, .15);
    animation-delay: 1.2s;
}

@keyframes rippleOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.8)
    }

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

.contact-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 800;
    color: #0A0A0A;
    box-shadow: 0 0 40px rgba(201, 168, 76, .4);
}

.contact-avatar #profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

/* ===================== FOOTER ===================== */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    font-size: .85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

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

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.from-bottom {
    transform: translateY(40px);
}

.reveal.from-left {
    transform: translateX(-40px);
}

.reveal.from-right {
    transform: translateX(40px);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===================== GRADIENT TEXT ===================== */
@keyframes gradShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

/* ===================== MOBILE NAV ===================== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, .97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform .35s ease;
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .skills-grid,
    .edu-grid,
    .certs-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-avatar-wrap {
        display: none;
    }
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================== SECTION DIVIDER ===================== */
.divider {
    width: 60px;
    height: 3px;
    margin-top: 1rem;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 99px;
}