:root {
    --bg: #050505;
    --accent: #38bdf8; /* Electric Cyan */
    --text: #f1f5f9;
    --card-bg: rgba(255, 255, 255, 0.02);
}

* { box-sizing: border-box; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

#gravityCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
}

/* Progress Bar */
#progress-container { position: fixed; top: 0; width: 100%; height: 4px; z-index: 1001; }
#progress-bar { height: 100%; width: 0%; background: var(--accent); box-shadow: 0 0 15px var(--accent); }

/* Navigation */
.glass-nav {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(10, 15, 25, 0.8); backdrop-filter: blur(12px);
    padding: 12px 35px; border-radius: 50px; z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.glass-nav ul { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; }
.glass-nav a { text-decoration: none; color: #fff; font-size: 0.8rem; letter-spacing: 1px; opacity: 0.5; transition: 0.3s; }
.glass-nav a:hover { opacity: 1; color: var(--accent); }

/* Hero Section */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; pointer-events: none; }
.bold-static-name {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin: 0;
}
.minimal-hint { margin-top: 20px; opacity: 0.4; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.minimal-hint .line { width: 1px; height: 40px; background: #fff; }

/* Global Section Styling */
.section { padding: 120px 10%; position: relative; }
.container { max-width: 1100px; margin: 0 auto; pointer-events: none; }
.glass-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}
.section-heading { font-size: 2.5rem; margin-bottom: 50px; text-transform: uppercase; letter-spacing: -1px; }
.company { color: var(--accent); }

/* Project Pills */
.project-pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.project-pill { background: rgba(56, 189, 248, 0.1); border-left: 3px solid var(--accent); padding: 8px 15px; font-size: 0.85rem; border-radius: 4px; }

/* Social Dock */
.social-dock { display: flex; gap: 20px; justify-content: center; pointer-events: auto; }
.dock-item { width: 55px; height: 55px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: 0.4s; }
.dock-item:hover { transform: translateY(-10px) scale(1.1); color: var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

/* Education */
.edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.edu-card { text-align: center; transition: 0.3s; }
.edu-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }

/* Project Archive Logic */
.archive-hidden { max-height: 0; overflow: hidden; transition: max-height 0.6s ease-out; opacity: 0; }
.archive-visible { max-height: 1000px; opacity: 1; margin-top: 30px; }
.archive-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important; margin-top: 20px; }
.small-card { padding: 25px !important; }

/* Terminal Contact UI */
.terminal-container { max-width: 600px; margin: 0 auto; padding: 0 !important; overflow: hidden; border: 1px solid rgba(56, 189, 248, 0.3); }
.terminal-header { background: rgba(255,255,255,0.1); padding: 10px; display: flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.terminal-title { font-size: 0.7rem; font-family: 'Space Mono', monospace; opacity: 0.7; margin-left: 10px; }
.terminal-body { padding: 25px; font-family: 'Space Mono', monospace; font-size: 0.9rem; color: #fff; line-height: 1.6; }
.prompt { color: var(--accent); }
.response { color: #818cf8; opacity: 0.8; }
.terminal-links { display: flex; gap: 20px; margin: 15px 0; }
.term-link { color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 4px; transition: 0.3s; }
.term-link:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* Buttons */
.btn-terminal {
    background: transparent; border: 1px solid var(--accent); color: var(--accent);
    padding: 12px 30px; font-family: 'Space Mono', monospace; cursor: pointer; transition: 0.3s;
}
.btn-terminal:hover { background: var(--accent); color: var(--bg); box-shadow: 0 0 20px var(--accent); }

/* Cursor Animation */
.cursor { animation: blink 1s infinite; font-weight: bold; color: var(--accent); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Container Fix to ensure buttons are clickable */
.project-container-fix {
    pointer-events: auto !important; /* Forces the container to listen for clicks */
}

.archive-trigger-wrap {
    margin-top: 50px;
    text-align: center;
    pointer-events: auto;
}

/* Project Grid Alignment */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch; /* Makes all cards in a row equal height */
}

.glass-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes tags to the bottom */
    height: 100%;
}

/* Restoring the Pulsing Light */
.status-pulse {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.status-pulse::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-glow 1.5s infinite;
}

.status-pulse.in-progress::before {
    background: #ffbd2e; /* Yellow for in-progress */
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

/* Archive Button Fix */
.btn-terminal {
    position: relative;
    z-index: 10; /* Ensures it sits above the background canvas */
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 15px 40px;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    transition: 0.4s;
    pointer-events: all;
}

/* Archive Specific Layout */
.archive-page-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 40px;
}

/* The Hyperlink Design */
.repo-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Space Mono', monospace;
    padding: 8px 15px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 4px;
    transition: 0.3s all ease;
    width: fit-content;
}

.repo-link:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--accent);
    transform: translateX(5px);
}

.repo-link-disabled {
    margin-top: 20px;
    color: #666;
    font-size: 0.8rem;
    font-family: 'Space Mono', monospace;
    font-style: italic;
}

/* Ensure the cards on the new page don't try to animate AOS if not loaded */
.archive-page-grid .glass-card {
    pointer-events: auto;
}

/* Ensure all links and buttons are clickable regardless of container settings */
a,
button,
.term-link,
.repo-link,
.dock-item {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 100; /* Keeps them above the canvas */
}

/* Specific fix for the Return link alignment */
.term-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

/* ///////////////////////////////// */
.dns-table { margin: 20px 0; border-left: 2px solid rgba(56, 189, 248, 0.2); padding-left: 15px; }
.dns-row { margin: 10px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.dns-key { color: var(--accent); font-weight: bold; min-width: 120px; }
.dns-val { color: #fff; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.2); transition: 0.3s; }
.dns-val:hover { border-bottom: 1px solid var(--accent); color: var(--accent); }


/* -------------------------------------------------------------------------------------------------------------------- */
.simple-contact-wrap {
    margin-top: 50px;
    pointer-events: auto; /* Vital for clickability */
}

.big-email-link {
    display: inline-block;
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    padding: 10px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.big-email-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    transform: translateY(-5px);
}

.big-email-link .arrow {
    font-size: 1.5rem;
    margin-left: 10px;
    opacity: 0.5;
    transition: 0.3s;
}

.big-email-link:hover .arrow {
    opacity: 1;
    transform: translate(5px, -5px);
}

.minimal-divider {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 40px auto;
}

.social-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: 0.3s;
}

.social-link:hover {
    opacity: 1;
    color: var(--accent);
}

.dot-sep {
    color: var(--accent);
    opacity: 0.5;
}

.location-tag {
    margin-top: 60px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.3;
}
/* -----------------------------------------------------------------------------------================================================== */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center; /* Vertical Center */
    justify-content: center; /* Horizontal Center */
    text-align: center;
}

.hero-content {
    /* This ensures the text occupies roughly 30% of the screen area */
    max-width: 60vw;
    padding: 20px;
    pointer-events: none; /* Mouse passes through to the stars */
}

.hero-name {
    /* Medium-large text that scales with screen size */
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: none; /* Keeps it natural, not all caps */
}

.hero-designation {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: var(--accent); /* That Electric Cyan we used */
    letter-spacing: 4px;
    opacity: 0.8;
    margin: 0;
}

/* ============================================== */
/* Container for the documentation bits */
.project-specs {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Individual spec lines */
.project-specs span {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.project-specs i {
    width: 14px; /* Keeps icons aligned vertically */
    text-align: center;
    font-size: 0.8rem;
}

/* Documentation Button Grid */
.doc-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

/* The "Designed Hyperlinks" */
.repo-link {
    text-align: center;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px;
    border-radius: 6px;
    transition: 0.3s all ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

/* Specific styling for the Runbook button to make it stand out */
.doc-btn {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(56, 189, 248, 0.05);
}

.repo-link:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.2);
}

/* Hovering on the Source button turns it white/grey */
.repo-link:not(.doc-btn):hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* The active link state */
.glass-nav a.active {
    color: var(--accent) !important; /* Electric Cyan (#38bdf8) */
    opacity: 1 !important;
    font-weight: 700;
    /* This creates the 'Constant Glow' effect */
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.8),
                 0 0 20px rgba(56, 189, 248, 0.4);
    transition: all 0.3s ease-in-out;
}

/* Optional: Adding a small glowing dot under the active link */
.glass-nav a.active::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    margin: 4px auto 0;
    box-shadow: 0 0 10px var(--accent);
}

.deep-dive-trigger {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    transition: 0.3s;
}

.deep-dive-trigger:hover {
    background: rgba(56, 189, 248, 0.03);
    border-style: solid;
    border-color: var(--accent);
}

.glitch-wrapper {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.deep-dive-sub {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 25px;
}

.clickbait-tags {
    margin-top: 15px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent);
    opacity: 0.5;
}

.neon-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 30px;
    font-family: 'Space Mono', monospace;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

.neon-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* About Page Specifics */
.about-page .container {
    pointer-events: none; /* Let stars shine through gaps */
}

.about-header {
    text-align: center;
    margin: 60px 0 100px;
}

/* Education Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 2px solid rgba(56, 189, 248, 0.2);
    padding-left: 30px;
    margin-left: 10px;
}

.timeline-item {
    position: relative;
    padding: 20px !important;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.date {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
}

.tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.7rem;
    padding: 2px 8px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--accent);
    border-radius: 4px;
}

/* Photography Grid - As we designed before */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.photo-frame {
    height: 350px;
    padding: 8px !important;
    overflow: hidden;
}

.photo-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 6px;
    filter: grayscale(100%);
    transition: 0.5s;
}

.photo-frame:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Hobbies */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hobby-card {
    text-align: center;
    padding: 30px !important;
}

.hobby-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Collage Grid - Masonry-style */
.photo-collage {
    display: grid;
    /* Defines 4 columns, adjusting automatically */
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: 220px; /* Base height for standard items */
    gap: 20px;
    grid-auto-flow: dense; /* Fills in gaps automatically */
}

.collage-item {
    position: relative;
    padding: 8px !important; /* Tight border for the photos */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

/* Photo Classes for Collage Effect */
.collage-item.featured { grid-column: span 2; grid-row: span 2; }
.collage-item.tall { grid-row: span 2; }
.collage-item.wide { grid-column: span 2; }

/* Image Styling - Vibrant by default */
.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.9) contrast(105%); /* Standard vibrant look */
    transition: transform 0.6s ease;
}

.collage-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(100%);
}

/* The Info Spore (The trigger icon) */
.info-spore {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent); /* Electric Cyan */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s ease;
    outline: none;
}

.info-spore:hover {
    background: var(--accent);
    color: #000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px var(--accent);
}

/* The Story Card Overlay (Hidden by default) */
.photo-story-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95); /* Deep Black */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--accent);
    border-radius: 8px;
    z-index: 5;
    transform: translateY(105%); /* Positioned off-card */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none; /* Mouse passes through when hidden */
}

/* The Active State (Triggered by JS) */
.collage-item.info-active .photo-story-card {
    transform: translateY(0);
    pointer-events: auto; /* Active when shown */
}

/* Responsive fixes */
@media (max-width: 768px) {
    .photo-collage { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); grid-auto-rows: 150px; }
    .collage-item.featured, .collage-item.tall, .collage-item.wide { grid-column: span 1; grid-row: span 1; }
}

/* Container and Header */
.status-header { margin-bottom: 40px; text-align: left; }
.status-sub {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: #818cf8; /* Deep Indigo */
    opacity: 0.7;
    margin-top: -10px;
}

/* The Ability Grid */
.ability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* The ability card (glowing module) */
.ability-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px !important;
    border: 1px solid rgba(255, 189, 46, 0.2) !important; /* Yellow border */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ability-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ffbd2e !important; /* Yellow glow */
    box-shadow: 0 10px 30px rgba(255, 189, 46, 0.15);
}

/* Ability Icon & Glitch */
.ability-icon {
    font-size: 2.5rem;
    color: #ffbd2e; /* Yellow */
    margin-bottom: 20px;
    position: relative;
}

.ability-card:hover .ability-icon {
    animation: icon-glitch 0.3s ease-out;
}

@keyframes icon-glitch {
    0% { transform: translate(0); color: #ffbd2e; }
    30% { transform: translate(-3px, 3px); color: #ff5f56; } /* Red */
    60% { transform: translate(3px, -3px); color: #27c93f; } /* Green */
    100% { transform: translate(0); color: #ffbd2e; }
}

/* Ability Content */
.ability-content h4 {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ability-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    min-height: 60px; /* Pre-allocates space for typing */
}

/* LVL Tag */
.ability-level {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #ffbd2e;
    opacity: 0.6;
    margin-top: 25px;
    letter-spacing: 2px;
}
.hero-bio {
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.6;
}
/* ----------------------------------------------00000000000000000000000000000000000000000000------------------------------------- */
/* Style for Planned/Future Projects */
.future-pipeline {
    border: 1px dashed rgba(255, 189, 46, 0.4) !important; /* Yellow Dashed Border */
    background: rgba(10, 10, 10, 0.4);
    filter: saturate(0.5);
    transition: 0.4s;
}

.future-pipeline:hover {
    filter: saturate(1);
    border-style: solid;
    border-color: #ffbd2e !important;
}

.future-overlay {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: #ffbd2e; /* Planning Yellow */
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    gap: 10px;
}

.future-overlay i {
    font-size: 2rem;
    opacity: 0.5;
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-yellow {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.3; }
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.specs-grid i {
    color: #ffbd2e;
    margin-right: 5px;
}

/* GLASS ORBIT  */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    gap: 40px;
}

/* Glass Frame for Photo */
.portrait-orbit {
    position: relative;
    width: 300px;
    height: 380px;
    perspective: 1000px;
}

.glass-frame {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    filter: grayscale(20%); /* Softens the look to match the dark theme */
    transition: filter 0.5s ease;
}

.portrait-orbit:hover .hero-img {
    filter: grayscale(0%);
}

/* Floating Chips */
.floating-chip {
    position: absolute;
    padding: 6px 12px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    backdrop-filter: blur(150px);
    z-index: 2;
}

.loc { top: 20%; left: -30px; animation: float 4s infinite ease-in-out; }
.role { bottom: 15%; right: -20px; animation: float 5s infinite ease-in-out reverse; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ----------------------------------------------------------------------project liquibase------------------------------------ */
.project-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(56, 189, 248, 0.2); /* Your Cyan color */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.req-item:hover {
    background: rgba(56, 189, 248, 0.05);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.req-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.req-text {
    display: flex;
    flex-direction: column;
}

.label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    opacity: 0.5;
    text-transform: uppercase;
}

.value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px currentColor; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.status-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.dot.blue { background: #38bdf8; box-shadow: 0 0 10px #38bdf8; }
.dot.green { background: #27c93f; box-shadow: 0 0 10px #27c93f; }
.dot.yellow { background: #ffbd2e; box-shadow: 0 0 10px #ffbd2e; }


/* Base Card Link Style */
.exp-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effects */
.exp-card-link:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05); /* Slight brighten */
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.exp-summary {
    margin: 15px 0;
    opacity: 0.8;
}

/* Footer & Arrow Animation */
.card-footer {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 1px;
    opacity: 0; /* Hidden by default */
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.exp-card-link:hover .card-footer {
    opacity: 1;
    transform: translateX(0);
}

.exp-card-link:hover .fa-arrow-right-long {
    animation: nudge 1s infinite alternate;
}

@keyframes nudge {
    from { transform: translateX(0); }
    to { transform: translateX(5px); }
}

/* Maintain Pill styling */
.project-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* deep dive bny  */
.deep-dive-nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
}

.vertical-timeline {
    border-left: 2px solid var(--accent);
    margin-left: 20px;
    padding-left: 30px;
}

.time-node {
    position: relative;
    margin-bottom: 50px;
}

.time-node::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.impact-tag {
    color: var(--accent);
    font-weight: bold;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.skills-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cat-title {
    display: block;
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 2px;
}
