/* =====================================================
   SATHPRANAY BOMBOTHULA â€” PORTFOLIO CSS
   Galaxy Black Theme + Azure Data Engineering Aesthetics
   ===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    background: #000000;
    color: #e2e8f0;
    overflow-x: hidden;
    cursor: none;
}

/* ===== CSS VARIABLES ===== */
:root {
    --azure-blue: #0089d6;
    --azure-light: #0078d4;
    --azure-glow: rgba(0, 137, 214, 0.4);
    --purple: #7c3aed;
    --purple-glow: rgba(124, 58, 237, 0.35);
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.3);
    --orange: #f97316;
    --green: #10b981;
    --gold: #f59e0b;

    --bg-primary: #000000;
    --bg-card: rgba(8, 8, 14, 0.75);
    --bg-card-hover: rgba(12, 12, 22, 0.88);
    --border: rgba(0, 137, 214, 0.15);
    --border-hover: rgba(0, 137, 214, 0.4);

    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --gradient-main: linear-gradient(135deg, #0089d6, #7c3aed);
    --gradient-glow: linear-gradient(135deg, rgba(0,137,214,0.15), rgba(124,58,237,0.15));
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --nav-h: 72px;
    --section-pad: 100px;
    --radius: 16px;
    --radius-sm: 8px;
}

/* ===== GALAXY CANVAS ===== */
#galaxy-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== CUSTOM CURSOR â€” SUN THEME ===== */
#cursor-glow {
    position: fixed;
    width: 9px; height: 9px;
    background: #ffcc00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease;
    box-shadow:
        0 0 5px 2px rgba(255, 204, 0, 0.95),
        0 0 14px 5px rgba(255, 170, 0, 0.65),
        0 0 28px 10px rgba(255, 100, 0, 0.25);
    mix-blend-mode: screen;
}
#cursor-trail {
    display: none; /* tail handled by JS canvas particles */
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #020408; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0089d6, #7c3aed);
    border-radius: 3px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: all 0.3s ease;
}
#navbar.scrolled {
    background: rgba(2, 4, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0,137,214,0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--azure-blue);
    text-shadow: 0 0 20px var(--azure-glow);
    flex-shrink: 0;
}
.logo-bracket { color: var(--purple); opacity: 0.8; }
.logo-text { color: var(--text-primary); margin: 0 2px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%; right: 50%;
    height: 2px;
    background: var(--azure-blue);
    border-radius: 1px;
    transition: all 0.25s ease;
    box-shadow: 0 0 8px var(--azure-blue);
}
.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(0,137,214,0.08);
}
.nav-link:hover::after,
.nav-link.active::after {
    left: 14px;
    right: 14px;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--azure-blue);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* ===== SECTION BASE ===== */
.section {
    position: relative;
    z-index: 1;
    padding: var(--section-pad) 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cyan);
    letter-spacing: 0.1em;
    opacity: 0.8;
    display: block;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}
.section-subtitle {
    margin-top: 16px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.highlight {
    color: var(--azure-blue);
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 0 24px rgba(0,137,214,0.3), 0 4px 20px rgba(0,0,0,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,137,214,0.5), 0 8px 32px rgba(0,0,0,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
    background: rgba(0,137,214,0.08);
    border-color: var(--azure-blue);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 0 clamp(24px, 5vw, 80px);
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeSlideUp 0.6s ease forwards;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
    animation: fadeSlideUp 0.7s 0.1s ease both;
}
.title-greeting {
    display: block;
    font-size: 0.45em;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.title-name {
    display: block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-surname {
    display: block;
    color: var(--text-primary);
}

.hero-role {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.7s 0.2s ease both;
}
.role-icon { font-size: 1.4rem; }
.role-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--azure-blue);
    text-shadow: 0 0 20px var(--azure-glow);
    font-family: var(--font-mono);
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    animation: fadeSlideUp 0.7s 0.3s ease both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeSlideUp 0.7s 0.4s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeSlideUp 0.7s 0.5s ease both;
}
.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--azure-blue);
    text-shadow: 0 0 20px var(--azure-glow);
    font-family: var(--font-mono);
    line-height: 1;
}
.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--azure-blue);
    line-height: 1;
    vertical-align: top;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ===== 3D PIPELINE VISUAL ===== */
.hero-visual {
    flex: 0 0 auto;
    width: clamp(320px, 40vw, 480px);
    z-index: 2;
    animation: fadeSlideUp 0.7s 0.6s ease both;
}
.pipeline-3d {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 80px rgba(0,137,214,0.1), 0 40px 80px rgba(0,0,0,0.4);
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
}
@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-12px) rotateX(-2deg) rotateY(2deg); }
}
.pipeline-3d::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: var(--gradient-main);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.pipeline-3d:hover::before { opacity: 0.3; }

.pipeline-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.pipeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.pipeline-node:hover { transform: translateY(-8px) scale(1.05); }
.node-inner {
    position: relative;
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.node-icon {
    font-size: 1.8rem;
    z-index: 2;
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.3));
}
.node-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid;
    animation: ringRotate 4s linear infinite;
}
.pipeline-node.bronze .node-ring { border-color: rgba(180, 120, 60, 0.6); }
.pipeline-node.silver .node-ring { border-color: rgba(150, 160, 180, 0.6); }
.pipeline-node.gold .node-ring { border-color: rgba(250, 180, 40, 0.6); }
.ring-2 {
    inset: 8px;
    animation: ringRotate 3s linear infinite reverse;
    opacity: 0.4;
}
.node-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}
@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.pipeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    max-width: 60px;
}
.conn-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,137,214,0.3), rgba(0,137,214,0.8), rgba(0,137,214,0.3));
    position: relative;
    overflow: hidden;
}
.conn-flow {
    position: absolute;
    top: 0; left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--azure-blue), transparent);
    animation: flowMove 1.5s ease-in-out infinite;
}
@keyframes flowMove {
    0% { left: -30%; }
    100% { left: 130%; }
}
.conn-label {
    font-size: 0.6rem;
    color: var(--azure-blue);
    text-align: center;
    font-family: var(--font-mono);
    opacity: 0.7;
    white-space: nowrap;
}

.pipeline-label {
    text-align: center;
    font-size: 0.82rem;
    color: var(--cyan);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Tech badges floating */
.tech-badge {
    position: absolute;
    background: rgba(0,137,214,0.12);
    border: 1px solid rgba(0,137,214,0.3);
    color: var(--azure-blue);
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-mono);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    pointer-events: none;
}
.tb-1 { top: 14px; right: 20px; animation: floatBadge 3s 0s ease-in-out infinite; }
.tb-2 { top: 50px; right: -10px; animation: floatBadge 3s 0.5s ease-in-out infinite; }
.tb-3 { bottom: 50px; right: -15px; animation: floatBadge 3s 1s ease-in-out infinite; }
.tb-4 { bottom: 14px; left: 20px; animation: floatBadge 3s 1.5s ease-in-out infinite; }
.tb-5 { top: 50px; left: -10px; animation: floatBadge 3s 2s ease-in-out infinite; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--azure-blue);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(12px); opacity: 0; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: transparent; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

/* Avatar */
.avatar-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
}
.avatar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0,137,214,0.3);
    animation: ringRotate 8s linear infinite;
}
.avatar-ring.ring-2 {
    inset: 12px;
    border-color: rgba(124,58,237,0.3);
    animation-duration: 6s;
    animation-direction: reverse;
}
.avatar-ring.ring-3 {
    inset: 24px;
    border-color: rgba(6,182,212,0.2);
    animation-duration: 10s;
}
.avatar-inner {
    position: absolute;
    inset: 36px;
    background: linear-gradient(135deg, rgba(0,137,214,0.15), rgba(124,58,237,0.15));
    border: 2px solid var(--border-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}
.avatar-initials {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}
.avatar-orbit {
    position: absolute;
    inset: -36px;
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}
.orbit-dot {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: var(--color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: orbitDot 10s var(--delay) linear infinite;
}
@keyframes orbitDot {
    from { transform: rotate(0) translateX(70px); }
    to { transform: rotate(360deg) translateX(70px); }
}

.about-info-cards { display: flex; flex-direction: column; gap: 12px; }
.info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}
.info-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}
.info-icon { font-size: 1.3rem; }
.info-label { display: block; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.info-value { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }

/* SQL Visual */
.sql-visual {
    margin-top: 28px;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--font-mono);
    box-shadow: 0 0 40px rgba(0,137,214,0.08), inset 0 0 40px rgba(0,0,0,0.3);
}
.sql-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--border);
}
.sql-dot { width: 12px; height: 12px; border-radius: 50%; }
.sql-dot.red { background: #ff5f57; }
.sql-dot.yellow { background: #febc2e; }
.sql-dot.green { background: #28c840; }
.sql-title { margin-left: 8px; font-size: 0.78rem; color: var(--text-muted); }
.sql-body { padding: 18px; font-size: 0.82rem; line-height: 2; }
.sql-line { display: block; }
.sql-indent { padding-left: 32px; }
.sql-kw { color: #569cd6; font-weight: 600; }
.sql-col { color: #9cdcfe; }
.sql-tbl { color: #4ec9b0; }
.sql-op { color: #d4d4d4; }
.sql-str { color: #ce9178; }
.sql-punct { color: #d4d4d4; }
.sql-result {
    margin-top: 12px;
    border-top: 1px solid rgba(0,137,214,0.2);
    padding-top: 12px;
    font-size: 0.78rem;
}
.result-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 6px 10px;
    background: rgba(0,137,214,0.08);
    border-radius: 4px;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 4px;
}
.result-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 6px 10px;
    color: var(--text-primary);
}

.about-text-block { margin-bottom: 8px; }
.about-para {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ===== SKILLS SECTION ===== */
.skills-section { background: rgba(0,0,0,0.25); }

/* ========== 3D CYBER-HEX MATRIX (SKILLS) ========== */
.honeycomb-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: visible;
    padding-bottom: 60px;
}
.honeycomb-matrix {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1200px;
    transform-style: preserve-3d;
    /* Subtle breathing animation for the entire matrix */
    animation: matrixBreathe 10s ease-in-out infinite alternate;
    overflow: visible;
}
@keyframes matrixBreathe {
    0% { transform: rotateX(5deg) scale(0.98); }
    100% { transform: rotateX(-2deg) scale(1.02); }
}

.hex-row {
    display: flex;
    justify-content: center;
    margin-top: -44px; /* Pull rows up to interlock hexagons (adjust based on height) */
    transform-style: preserve-3d;
    overflow: visible;
}
.hex-row:first-child { margin-top: 0; }

.hex-wrapper {
    position: relative;
    width: 140px;
    height: 162px; /* Standard hex ratio w:h = 1:1.1547 */
    margin: 0 -6px;
    perspective: 1000px;
    z-index: 1;
    /* drop-shadow on wrapper enables outer glow because clip-path hides box-shadow */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* The actual physical 3D block */
.hex-inner {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.95), rgba(10, 15, 30, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Faux 3D shading inside the clip-path */
    box-shadow: 
        inset 0 10px 20px rgba(255,255,255,0.05),
        inset 0 -15px 30px rgba(0,0,0,0.9);
}

/* Inner glow ring to act as a border since clip-path cuts off normal borders */
.hex-inner::before {
    content: '';
    position: absolute;
    inset: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.hex-icon {
    width: 56px;
    height: 56px;
    color: var(--hex-color, #0ea5e9);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
    transform: translateZ(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hex-icon svg { width: 100%; height: 100%; }

.hex-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateZ(30px);
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--hex-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.9), 0 0 15px color-mix(in srgb, var(--hex-color) 40%, transparent);
    pointer-events: none;
    white-space: nowrap;
}

/* Hover Interaction - The Pop Out */
.hex-wrapper:hover {
    z-index: 100;
    filter: drop-shadow(0 20px 40px var(--hex-color, rgba(0, 255, 255, 0.6)));
    transform: scale(1.15) translateZ(50px) rotateX(10deg);
    cursor: crosshair;
}
.hex-wrapper:hover .hex-inner {
    background: linear-gradient(135deg, rgba(40, 55, 75, 0.95), rgba(20, 30, 50, 0.98));
    box-shadow: 
        inset 0 15px 30px rgba(255,255,255,0.1),
        inset 0 -20px 40px rgba(0,0,0,0.9),
        inset 0 0 50px color-mix(in srgb, var(--hex-color) 30%, transparent);
}
.hex-wrapper:hover .hex-inner::before {
    border-color: var(--hex-color);
    border-width: 3px;
}
.hex-wrapper:hover .hex-icon {
    transform: translateZ(60px) scale(1.2);
    color: #fff;
    filter: drop-shadow(0 0 20px var(--hex-color));
}
.hex-wrapper:hover .hex-label {
    opacity: 1;
    transform: translateX(-50%) translateZ(80px) translateY(-5px);
}

/* Dim adjacent hexes when matrix is hovered */
.honeycomb-matrix:hover .hex-wrapper:not(:hover) {
    opacity: 0.3;
    transform: scale(0.95) translateZ(-30px);
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.8));
}

/* Colors for specific skills */
.skill-python { --hex-color: #3b82f6; }   
.skill-sql { --hex-color: #0ea5e9; }      
.skill-db { --hex-color: #14b8a6; }       
.skill-api { --hex-color: #6366f1; }      
.skill-azure { --hex-color: #0ea5e9; }    
.skill-adf { --hex-color: #0284c7; }      
.skill-databricks { --hex-color: #f97316;}
.skill-pyspark { --hex-color: #eab308; }  
.skill-delta { --hex-color: #94a3b8; }    
.skill-ml { --hex-color: #10b981; }       
.skill-genai { --hex-color: #f43f5e; }    
.skill-llm { --hex-color: #8b5cf6; }      
.skill-rag { --hex-color: #ec4899; }      
.skill-langchain { --hex-color: #22c55e; }
.skill-langraph { --hex-color: #3b82f6; } 
.skill-prompt { --hex-color: #d946ef; }   
.skill-docker { --hex-color: #0284c7; }   
.skill-cicd { --hex-color: #84cc16; }     
.skill-devops { --hex-color: #0284c7; }   
.skill-terraform { --hex-color: #8b5cf6; }
.skill-git { --hex-color: #f43f5e; }      
.skill-github { --hex-color: #ffffff; }   
.skill-pbi { --hex-color: #f59e0b; }      
.skill-snowflake { --hex-color: #7dd3fc; }

/* Responsive Stacking */
@media (max-width: 1024px) {
    .hex-wrapper { width: 110px; height: 127px; margin: 0 4px; }
    .hex-row { margin-top: -26px; }
    .hex-icon { width: 44px; height: 44px; }
    .hex-label { font-size: 11px; padding: 4px 10px; }
}
@media (max-width: 768px) {
    /* Break honeycomb on mobile to simpler dense grid */
    .honeycomb-matrix { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .hex-row { margin-top: 0; display: contents; }
    .hex-wrapper { margin: 10px; width: 90px; height: 104px; }
    .hex-icon { width: 36px; height: 36px; }
}

/* ========== EXPERIENCE SECTION ========== */
.experience-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, transparent, rgba(10, 15, 30, 0.5));
}
.timeline {
    max-width: 1000px;
    margin: 60px auto;
    position: relative;
    padding-left: 40px;
    border-left: 2px solid rgba(0, 255, 255, 0.2);
}
.timeline-item {
    position: relative;
    margin-bottom: 60px;
}
.timeline-dot {
    position: absolute;
    left: -49px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.8);
}
.dot-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid #00f2fe;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}
.timeline-content {
    background: rgba(16, 24, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.2);
}
.exp-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.exp-company-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}
.exp-title-block { flex-grow: 1; }
.exp-role { font-size: 24px; color: #fff; margin-bottom: 4px; }
.exp-company { font-size: 16px; color: var(--text-secondary); }
.exp-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}
.exp-badge.current {
    background: rgba(0, 255, 255, 0.1);
    color: #00f2fe;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.exp-pipeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow-x: auto;
}
.epv-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.epv-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.epv-label { font-size: 12px; color: var(--text-secondary); text-align: center; }
.epv-arrow { color: rgba(0, 255, 255, 0.5); font-size: 20px; }

.exp-bullets { list-style: none; margin-bottom: 25px; }
.exp-bullets li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.bullet-icon { font-size: 14px; margin-top: 4px; }
.exp-bullets p { color: var(--text-primary); line-height: 1.6; font-size: 15px; }
.exp-bullets strong { color: #fff; }

.exp-tech-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.exp-tech-tags span {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.timeline-content:hover .exp-tech-tags span {
    border-color: rgba(0,255,255,0.3);
    color: #fff;
}

/* ========== PROJECTS SECTION ========== */
.projects-section { padding: 100px 20px; }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}
.project-card {
    background: rgba(16, 24, 40, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}
.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.project-glow {
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2), transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}
.project-card:hover .project-glow { transform: scale(1.5); }
.glow-purple { background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%); }
.glow-cyan { background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%); }

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.project-number { font-size: 32px; font-weight: 800; color: rgba(255,255,255,0.1); }
.project-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.project-status.active { color: #10b981; border-color: rgba(16, 185, 129, 0.3); }
.project-status.genai { color: #8b5cf6; border-color: rgba(139, 92, 246, 0.3); }

.project-icon-area {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.project-main-icon { font-size: 40px; }

.project-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.project-title span { color: var(--text-secondary); font-size: 18px; }
.project-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Mini Pipeline Visual in Project Card */
.mini-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}
.mp-node {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px;
}
.mp-bronze { background: #cd7f32; color: #fff; }
.mp-silver { background: #c0c0c0; color: #000; }
.mp-gold { background: #ffd700; color: #000; }
.mp-line {
    flex-grow: 1; height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}
.mp-dot-anim {
    position: absolute;
    left: -10px; top: -1px;
    width: 4px; height: 4px;
    background: #00f2fe;
    border-radius: 50%;
    animation: flowLine 2s linear infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes flowLine {
    0% { left: 0; }
    100% { left: 100%; }
}

/* NL2SQL Visual in Project Card */
.nl2sql-visual {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-family: monospace;
    font-size: 13px;
}
.nl-input { color: #fff; margin-bottom: 10px; }
.nl-cursor { color: #00f2fe; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.nl-arrow { color: #8b5cf6; margin-bottom: 10px; font-size: 11px; }
.nl-output { color: #a5b4fc; }
.sql-kw { color: #f472b6; }

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.project-tech-stack span {
    font-size: 12px;
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: #00f2fe;
}
.project-features {
    position: relative;
    z-index: 1;
}
.feat {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 8px;
}
.feat-check { color: #10b981; }

/* ========== CERTIFICATIONS SECTION ========== */
.certs-section { padding: 100px 20px; background: rgba(10, 15, 30, 0.3); }
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
}
.cert-card {
    background: rgba(16, 24, 40, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}
.cert-card:hover { transform: translateY(-5px); border-color: rgba(0, 242, 254, 0.3); }
.cert-icon { font-size: 48px; margin-bottom: 20px; }
.cert-title { color: #fff; font-size: 18px; margin-bottom: 10px; }
.cert-issuer { color: #00f2fe; font-size: 14px; }

/* ========== CONTACT & FOOTER ========== */
.contact-section { padding: 100px 20px; text-align: center; }
.section-subtitle { color: var(--text-secondary); max-width: 600px; margin: 20px auto 40px; font-size: 16px; }
.contact-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(16, 24, 40, 0.7);
    padding: 28px 32px;
    border-radius: 16px;
    min-width: 180px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.contact-card:hover {
    background: rgba(0, 137, 214, 0.12);
    border-color: rgba(0, 137, 214, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0,137,214,0.2), rgba(124,58,237,0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f2fe;
    border: 1px solid rgba(0,137,214,0.3);
}
.contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}
.contact-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    word-break: break-all;
    text-align: center;
}
.contact-value:hover { color: #00f2fe; }

/* Resume CTA */
.resume-cta {
    margin-top: 60px;
}
.resume-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(0,137,214,0.1), rgba(124,58,237,0.1));
    border: 1px solid rgba(0,137,214,0.2);
    border-radius: 20px;
    padding: 36px 40px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.resume-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0,137,214,0.25), rgba(124,58,237,0.25));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f2fe;
    flex-shrink: 0;
    border: 1px solid rgba(0,137,214,0.3);
}
.resume-text {
    flex: 1;
    text-align: left;
}
.resume-text h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}
.resume-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
footer, .footer {
    padding: 40px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    background: rgba(0,0,0,0.3);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 20px;
    font-weight: 800;
}
.footer-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}
.footer-text strong { color: #fff; }
.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-links a:hover { color: #00f2fe; }
.footer-links span { color: var(--text-muted); }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .hero-subtitle { font-size: 18px; }
    .about-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 20px; }
    .timeline-dot { left: -29px; }
    .exp-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .projects-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 32px; }
}

/* ========== HERO PIPELINE VISUAL ========== */
.az-pipeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(0,0,0,0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.az-flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.az-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(16, 24, 40, 0.8);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 120px;
    position: relative;
    transition: transform 0.3s;
}
.az-node:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.az-node__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.az-node__icon svg {
    width: 100%;
    height: 100%;
}
.az-db-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    margin-bottom: 10px;
}
.az-node__label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}
.az-node__sub {
    color: var(--text-secondary);
    font-size: 12px;
    text-align: center;
}
.az-flow-side {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
.az-side-tag {
    background: rgba(255,255,255,0.1);
    color: #00f2fe;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}
.az-hconnector {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
}
.az-hconnector::after {
    content: '?';
    position: absolute;
    top: -10px;
    left: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ========== RAG VISUAL (PROJECTS) ========== */
.rag-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}
.rag-node {
    background: rgba(16, 24, 40, 0.8);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.rag-flow {
    color: rgba(0, 242, 254, 0.5);
    font-size: 18px;
    font-weight: bold;
}
.rag-flow-down {
    transform: rotate(90deg);
}

/* ========== AZ PIPELINE HERO - MISSING STYLES ========== */
.az-pipeline__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.az-pipe-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}
.az-flow-row--h {
    flex-direction: row;
    justify-content: center;
}
.az-vconnector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
}
.az-vconn-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(0,137,214,0.4);
    position: relative;
    overflow: hidden;
}
.az-vconn-line::after {
    content: '';
    position: absolute;
    top: 0; left: -50%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,137,214,0.8), transparent);
    animation: flowMove 1.5s linear infinite;
}
.az-vconn-line--cyan { background: rgba(6,182,212,0.4); }
.az-vconn-line--cyan::after { background: linear-gradient(90deg, transparent, rgba(6,182,212,0.9), transparent); }
.az-vconn-line--orange { background: rgba(249,115,22,0.4); }
.az-vconn-line--orange::after { background: linear-gradient(90deg, transparent, rgba(249,115,22,0.9), transparent); }
.az-vconn-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.az-vconn-dot--blue { background: var(--azure-blue); box-shadow: 0 0 8px var(--azure-blue); }
.az-vconn-dot--cyan { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.az-vconn-dot--orange { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.az-vconn-arrow { color: rgba(255,255,255,0.5); font-size: 12px; flex-shrink: 0; }
.az-vconn-arrow--cyan { color: var(--cyan); }
.az-vconn-arrow--orange { color: var(--orange); }
.az-vconn-label {
    font-size: 10px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    white-space: nowrap;
}
.az-hconnector {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    max-width: 40px;
}
.az-hconn-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.az-hconn-line::after {
    content: '';
    position: absolute;
    top: 0; left: -50%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: flowMove 1.5s linear infinite;
}
.az-hconn-dot {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    flex-shrink: 0;
}
.az-hconn-arrow { color: rgba(255,255,255,0.5); font-size: 10px; flex-shrink: 0; }
.az-hconnector--purple .az-hconn-line { background: rgba(124,58,237,0.4); }
.az-hconnector--purple .az-hconn-line::after { background: linear-gradient(90deg, transparent, rgba(124,58,237,0.9), transparent); }
.az-hconn-dot--purple { background: var(--purple); }
.az-hconn-arrow--purple { color: var(--purple); }

/* Node status lights */
.az-node__status {
    width: 8px; height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 10px; right: 10px;
}
.status--green { background: #10b981; box-shadow: 0 0 6px #10b981; }
.status--blue { background: var(--azure-blue); box-shadow: 0 0 6px var(--azure-blue); }
.status--cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.status--orange { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.status--gold { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.status--purple { background: var(--purple); box-shadow: 0 0 6px var(--purple); }

/* DB Cylinder shapes */
.az-db-cylinder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32px;
}
.az-db-top {
    width: 100%;
    height: 8px;
    background: rgba(0,137,214,0.4);
    border-radius: 50%;
    border: 1px solid rgba(0,137,214,0.7);
}
.az-db-body {
    width: 100%;
    height: 18px;
    background: rgba(0,137,214,0.15);
    border-left: 1px solid rgba(0,137,214,0.4);
    border-right: 1px solid rgba(0,137,214,0.4);
}
.az-db-bottom {
    width: 100%;
    height: 8px;
    background: rgba(0,137,214,0.3);
    border-radius: 50%;
    border: 1px solid rgba(0,137,214,0.6);
}
.az-db-cylinder--gold .az-db-top,
.az-db-cylinder--gold .az-db-body,
.az-db-cylinder--gold .az-db-bottom {
    border-color: rgba(245,158,11,0.7);
    background: rgba(245,158,11,0.2);
}

/* Medallion zones */
.az-flow-side {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}
.az-side-tag {
    background: rgba(0,137,214,0.1);
    border: 1px solid rgba(0,137,214,0.25);
    color: var(--azure-blue);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.az-medal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}
.az-medal__icon { font-size: 10px; }
.az-medal__text { display: flex; flex-direction: column; gap: 1px; }
.az-medal__text strong { color: #fff; font-size: 11px; }
.az-medal__text span { color: var(--text-muted); font-size: 10px; }
.az-medal--bronze .az-medal__icon { color: #cd7f32; }
.az-medal--silver .az-medal__icon { color: #c0c0c0; }
.az-medal--gold .az-medal__icon { color: #f59e0b; }

/* Metrics bar at bottom of pipeline */
.az-metrics-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 15px;
    margin-top: 5px;
}
.az-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.az-metric__val {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--azure-blue);
}
.az-metric__val--green { color: #10b981; }
.az-metric__val--cyan { color: var(--cyan); }
.az-metric__key {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.az-metric-div {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.08);
}

/* Certifications extra styles */
.extra-cert { margin-top: 8px; }
.extra-date {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-family: var(--font-mono);
}

/* ========== PIPELINE CARD — CONNECTED NODES DESIGN ========== */
.pipeline-card {
    background: rgba(6, 8, 16, 0.85);
    border: 1px solid rgba(0, 137, 214, 0.2);
    border-radius: 20px;
    padding: 22px 20px 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(0,137,214,0.08), 0 30px 60px rgba(0,0,0,0.5);
    animation: float3d 6s ease-in-out infinite;
}

/* Header */
.pc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.pc-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
.pc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    flex: 1;
}
.pc-live {
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

/* Rows of nodes */
.pnodes-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

/* Individual node */
.pnode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(16, 24, 40, 0.9);
    border-radius: 14px;
    padding: 12px 10px 10px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    min-width: 76px;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.pnode:hover {
    transform: translateY(-4px);
    border-color: var(--pnode-color, rgba(0,137,214,0.4));
}
.pnode__icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
}
.pnode__icon svg { width: 100%; height: 100%; }
.pnode__name {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}
.pnode__sub {
    font-size: 9px;
    color: var(--text-muted);
    text-align: center;
    font-family: var(--font-mono);
}
.pnode__glow {
    position: absolute;
    bottom: -20px; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 40px;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--gc) 30%, transparent), transparent 70%);
    pointer-events: none;
    transition: opacity 0.3s;
}

/* Node color themes */
.pnode--green { border-color: rgba(16,185,129,0.2); }
.pnode--green:hover { border-color: rgba(16,185,129,0.5); box-shadow: 0 0 20px rgba(16,185,129,0.2); }
.pnode--blue { border-color: rgba(0,137,214,0.2); }
.pnode--blue:hover { border-color: rgba(0,137,214,0.5); box-shadow: 0 0 20px rgba(0,137,214,0.2); }
.pnode--cyan { border-color: rgba(6,182,212,0.2); }
.pnode--cyan:hover { border-color: rgba(6,182,212,0.5); box-shadow: 0 0 20px rgba(6,182,212,0.2); }
.pnode--orange { border-color: rgba(249,115,22,0.2); }
.pnode--orange:hover { border-color: rgba(249,115,22,0.5); box-shadow: 0 0 20px rgba(249,115,22,0.2); }
.pnode--gold { border-color: rgba(245,158,11,0.2); }
.pnode--gold:hover { border-color: rgba(245,158,11,0.5); box-shadow: 0 0 20px rgba(245,158,11,0.2); }
.pnode--purple { border-color: rgba(124,58,237,0.2); }
.pnode--purple:hover { border-color: rgba(124,58,237,0.5); box-shadow: 0 0 20px rgba(124,58,237,0.2); }

/* Connector between nodes */
.pconn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    min-width: 30px;
    max-width: 50px;
}
.pconn__track {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 1px;
    position: relative;
    overflow: visible;
}
.pconn__ball {
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background: var(--cc, #0089d6);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--cc, #0089d6);
    animation: ballSlide 1.8s var(--cd, 0s) ease-in-out infinite;
}
@keyframes ballSlide {
    0% { left: -6px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% + 6px); opacity: 0; }
}
.pconn__lbl {
    font-size: 8px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
.pconn__arr {
    font-size: 8px;
    line-height: 1;
}

/* Bridge between row 1 and row 2 */
.pbridge {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    height: 28px;
    margin: 4px 0;
    position: relative;
}
.pbridge__vert {
    width: 2px;
    background: rgba(249,115,22,0.3);
    border-radius: 1px;
    position: relative;
    overflow: visible;
}
.pbridge__vert--right {
    margin-left: auto;
    margin-right: 0;
}
.pbridge__line {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
}
.pbridge__ball {
    position: absolute;
    top: -4px; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px;
    background: var(--cc, #f97316);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--cc, #f97316);
    animation: bridgeSlide 1.5s var(--cd, 0s) ease-in-out infinite;
}
@keyframes bridgeSlide {
    0% { top: -4px; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: calc(100% + 4px); opacity: 0; }
}
.pbridge__label {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Metrics bar */
.pm-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 14px;
    margin-top: 14px;
}
.pm-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.pm-val {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--azure-blue);
}
.pm-key {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pm-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.07);
}

/* ========== EXTRACURRICULAR & COMMUNITY ========== */
.extra-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.extra-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}
.extra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .extra-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.extra-card {
    display: flex;
    gap: 16px;
    background: rgba(16, 24, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.extra-card:hover {
    background: rgba(0, 137, 214, 0.1);
    border-color: rgba(0, 137, 214, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.extra-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0,137,214,0.15), rgba(124,58,237,0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.extra-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.extra-date {
    display: block;
    font-size: 12px;
    color: var(--text-muted, #9ca3af);
    font-family: var(--font-mono, monospace);
    margin-bottom: 12px;
}
.extra-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary, #9ca3af);
}

/* ========== SPACE STATION ARCHITECTURE (SKILLS) ========== */
.station-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 800px;
    margin: 60px auto;
    font-family: 'Consolas', 'Courier New', monospace;
    overflow: hidden;
}

.station-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.s-path {
    fill: none;
    stroke: url(#lineGrad);
    stroke-width: 2;
    stroke-dasharray: 4 4;
    animation: dashAnim 20s linear infinite;
}
@keyframes dashAnim {
    to { stroke-dashoffset: 200; }
}

/* Center Core */
.st-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.st-core-globe {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.4), rgba(124, 58, 237, 0.8));
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6), inset 0 0 20px rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: corePulse 3s infinite alternate;
}
.st-core-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 10px #fff);
}
.st-core-label {
    margin-top: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.8);
    background: rgba(0,0,0,0.6);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.st-core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.3);
    z-index: 1;
}
.st-core-ring-1 { width: 110px; height: 110px; border-top-color: #06b6d4; animation: spin 8s linear infinite; }
.st-core-ring-2 { width: 130px; height: 130px; border-bottom-color: #7c3aed; animation: spin 12s linear infinite reverse; }
.st-core-ring-3 { width: 150px; height: 150px; border-left-color: #f43f5e; border-style: dashed; animation: spin 15s linear infinite; }

@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes corePulse {
    0% { box-shadow: 0 0 30px rgba(6, 182, 212, 0.4), inset 0 0 20px rgba(255,255,255,0.1); }
    100% { box-shadow: 0 0 50px rgba(124, 58, 237, 0.8), inset 0 0 30px rgba(255,255,255,0.4); }
}

/* Modules */
.st-mod {
    position: absolute;
    width: 280px;
    z-index: 10;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.st-mod:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.st-mod-tl { top: 12%; left: 10%; }
.st-mod-tr { top: 12%; right: 10%; }
.st-mod-bl { bottom: 12%; left: 10%; }
.st-mod-br { bottom: 12%; right: 10%; }

.st-mod-header {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.st-mod-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.st-pod-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.st-pod {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.2s ease;
    cursor: default;
}
.st-pod:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Specific glows */
.st-mod-tl:hover { box-shadow: 0 0 30px rgba(6, 182, 212, 0.2); border-color: #06b6d4; }
.st-mod-tr:hover { box-shadow: 0 0 30px rgba(16, 185, 129, 0.2); border-color: #10b981; }
.st-mod-bl:hover { box-shadow: 0 0 30px rgba(245, 158, 11, 0.2); border-color: #f59e0b; }
.st-mod-br:hover { box-shadow: 0 0 30px rgba(244, 63, 94, 0.2); border-color: #f43f5e; }

/* Responsive */
@media (max-width: 900px) {
    .station-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 0;
    }
    .station-svg { display: none; }
    .st-core { position: relative; top: 0; left: 0; transform: none; margin-bottom: 20px; }
    .st-mod { position: relative; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 90%; max-width: 400px; }
}
/* ========== SOLAR SYSTEM ARCHITECTURE (SKILLS) ========== */
.solar-system-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 950px;
    margin: 40px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Consolas', 'Courier New', monospace;
}

.solar-system {
    position: relative;
    width: 900px;
    height: 900px;
    transform-origin: center center;
}

/* Responsive scaling */
@media (max-width: 1024px) { .solar-system { transform: scale(0.85); } }
@media (max-width: 800px) { .solar-system { transform: scale(0.7); } }
@media (max-width: 600px) { .solar-system-container { height: 600px; } .solar-system { transform: scale(0.5); } }
@media (max-width: 450px) { .solar-system-container { height: 500px; margin-top: 0; } .solar-system { transform: scale(0.38); } }
@media (max-width: 350px) { .solar-system-container { height: 400px; } .solar-system { transform: scale(0.32); } }

/* Sun Core */
.sun-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sun-globe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #f59e0b, #ea580c);
    box-shadow: 0 0 50px #f59e0b, inset 0 0 20px #fff;
    z-index: 2;
}
.sun-pulse {
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.4);
    filter: blur(20px);
    z-index: 1;
    animation: sunPulse 3s infinite alternate;
}
.sun-label {
    position: relative;
    z-index: 3;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    text-align: center;
    letter-spacing: 1px;
}
@keyframes sunPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Planets */
.planet-wrapper {
    position: absolute;
    top: 50%; left: 50%;
    animation: orbitSpin var(--dur) linear infinite;
    z-index: 10;
}
@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--radius)); }
    to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateX(var(--radius)); }
}

.anti-spin {
    animation: antiOrbitSpin var(--dur) linear infinite;
}
@keyframes antiOrbitSpin {
    from { transform: rotate(calc(-1 * var(--angle))); }
    to { transform: rotate(calc(-1 * var(--angle) - 360deg)); }
}

.planet {
    background: rgba(10, 15, 30, 0.9);
    border: 1px solid var(--pcolor);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px color-mix(in srgb, var(--pcolor) 40%, transparent);
    white-space: nowrap;
    cursor: default;
    transition: transform 0.2s, box-shadow 0.2s;
    /* Translate so the planet is centered on the orbit point */
    transform: translate(-50%, -50%);
}
.planet:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 25px var(--pcolor);
    z-index: 100;
}


/* ========== REFINED MOBILE FIXES ========== */
@media (max-width: 768px) {
    /* Navbar Hamburger Menu */
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 15, 30, 0.98);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
    }
    .nav-links.active {
        display: flex;
    }

    /* Hero Section */
    .hero-section {
        flex-direction: column !important;
        padding-top: calc(var(--nav-h) + 40px) !important;
        gap: 30px !important;
    }
    .hero-content {
        max-width: 100% !important;
        text-align: center;
    }
    .hero-buttons, .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Pipeline Architecture Fix (Scale Down instead of stacking) */
    .hero-visual {
        width: 100% !important;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    .pipeline-card {
        transform: scale(0.55);
        transform-origin: center top;
        margin-bottom: -60px; /* Compensate for scaled empty space */
    }

    /* Solar System */
    .solar-system-container { height: 450px; }
    .solar-system { transform: scale(0.4) !important; }

    /* Experience Section Visual */
    .exp-pipeline-visual {
        transform: scale(0.7);
        transform-origin: left center;
        width: 140%; /* Prevent cut off before scaling */
    }
}
@media (max-width: 480px) {
    .solar-system { transform: scale(0.3) !important; }
    .solar-system-container { height: 350px; }
    .pipeline-card { transform: scale(0.45); margin-bottom: -150px; }
    .exp-pipeline-visual { transform: scale(0.6); }
}

/* ========== FONTAWESOME ICON COLORS ========== */
.role-icon .fa-solid { color: #f59e0b; }
.exp-location .fa-solid { color: #ef4444; margin-right: 5px; }
.bullet-icon .fa-solid { color: #00f2fe; }
.project-main-icon .fa-solid { color: #00f2fe; }
.feat-check .fa-solid { color: #10b981; }
.cert-badge-icon .fa-solid { color: #f59e0b; }
.extra-icon .fa-solid { color: #00f2fe; }

/* Experience Pipeline Specific Colors */
.epv-icon .fa-server { color: #10b981; }
.epv-icon .fa-cloud-arrow-up { color: #3b82f6; }
.epv-icon .fa-hard-drive { color: #06b6d4; }
.epv-icon .fa-bolt { color: #f59e0b; }
.epv-icon .fa-chart-column { color: #8b5cf6; }

/* RAG Workflow Specific Colors */
.rn-user .fa-solid { color: #f59e0b; margin-right: 5px; }
.rn-rag .fa-solid { color: #00f2fe; margin-right: 5px; }
.rn-ai .fa-solid { color: #8b5cf6; margin-right: 5px; }
.rn-docs .fa-solid { color: #10b981; margin-right: 5px; }
