* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0a0f;
    --dark-bg-secondary: #151520;
    --dark-bg-tertiary: #1a1a25;
    --cyan: #00d4ff;
    --cyan-glow: #00d4ff;
    --purple: #7b2fff;
    --gold: #ffd700;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: #333340;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scanline overlay effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 1;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

/* Particle background */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(123, 47, 255, 0.05) 0%, transparent 50%);
}

.particle {
    position: absolute;
    pointer-events: none;
}

/* Main container positioning */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============= HERO SECTION ============= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(21, 21, 32, 0.9) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 47, 255, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.system-alert {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 30px;
    animation: flicker 0.3s infinite, pulse-glow 2s ease-in-out;
    opacity: 0;
    animation-delay: 0s;
}

.system-alert.active {
    animation: flicker 0.3s 5 steps(2), pulse-glow 2s ease-in-out 0.3s 1 forwards;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
    }
    50% {
        opacity: 0.5;
        text-shadow: 0 0 5px var(--cyan);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin: 20px 0;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch-text 0.3s infinite, float-in 1s ease-out;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

@keyframes glitch-text {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 2px 2px 0px var(--cyan), -2px -2px 0px var(--purple);
        transform: translate(0);
    }
    25% {
        text-shadow: -2px 0 30px rgba(123, 47, 255, 0.5), 2px 2px 0px var(--cyan), -2px -2px 0px var(--purple);
        transform: translate(-2px, 2px);
    }
    50% {
        text-shadow: 2px 0 30px rgba(0, 212, 255, 0.5), -2px 2px 0px var(--cyan), 2px -2px 0px var(--purple);
        transform: translate(2px, -2px);
    }
    75% {
        text-shadow: 0 -2px 30px rgba(123, 47, 255, 0.5), -2px 2px 0px var(--cyan), 2px -2px 0px var(--purple);
        transform: translate(-2px, -2px);
    }
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-tagline {
    font-family: 'Rajdhani', monospace;
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: slide-in 0.8s ease-out 0.5s forwards;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-in 0.8s ease-out 1s forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn {
    padding: 15px 40px;
    border: 2px solid var(--cyan);
    background: rgba(0, 212, 255, 0.05);
    color: var(--cyan);
    font-family: 'Rajdhani', monospace;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px var(--cyan), inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.btn:hover::before {
    left: 100%;
}

.btn.secondary {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(123, 47, 255, 0.05);
}

.btn.secondary:hover {
    background: rgba(123, 47, 255, 0.15);
    box-shadow: 0 0 20px var(--purple), inset 0 0 20px rgba(123, 47, 255, 0.1);
}

/* ============= ABOUT SECTION ============= */
.about {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.status-window {
    font-family: 'Rajdhani', monospace;
    border: 2px solid var(--cyan);
    background: rgba(21, 21, 32, 0.8);
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 30px rgba(0, 212, 255, 0.05);
    position: relative;
    max-width: 500px;
}

.status-window::before {
    content: '⚔';
    position: absolute;
    top: 10px;
    left: 20px;
    color: var(--cyan);
    font-size: 1.2rem;
}

.status-window-title {
    text-align: center;
    color: var(--cyan);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--cyan);
    padding-bottom: 15px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    animation: type-out 0.5s ease-out forwards;
}

@keyframes type-out {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-row:nth-child(1) { animation-delay: 0.1s; }
.status-row:nth-child(2) { animation-delay: 0.2s; }
.status-row:nth-child(3) { animation-delay: 0.3s; }
.status-row:nth-child(4) { animation-delay: 0.4s; }
.status-row:nth-child(5) { animation-delay: 0.5s; }
.status-row:nth-child(6) { animation-delay: 0.6s; }

.status-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.status-value {
    color: var(--cyan);
    font-weight: 700;
}

.status-value.rank {
    color: var(--gold);
}

.status-value.guild {
    color: var(--purple);
}

.about-bio {
    padding: 20px;
    background: rgba(26, 26, 37, 0.5);
    border-left: 3px solid var(--purple);
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 1.05rem;
}

/* ============= SECTION HEADERS ============= */
.section {
    padding: 100px 0;
    position: relative;
    opacity: 0;
    animation: fade-up 0.8s ease-out forwards;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::before {
    display: inline-block;
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    content: '';
}

/* ============= SKILLS SECTION ============= */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.skill-card {
    padding: 25px;
    border: 2px solid var(--cyan);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 47, 255, 0.03));
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-origin: center;
    opacity: 0;
    animation: stagger-in 0.6s ease-out forwards;
}

.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }
.skill-card:nth-child(4) { animation-delay: 0.4s; }
.skill-card:nth-child(5) { animation-delay: 0.5s; }
.skill-card:nth-child(6) { animation-delay: 0.6s; }
.skill-card:nth-child(7) { animation-delay: 0.7s; }
.skill-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes stagger-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 0 30px rgba(0, 212, 255, 0.1);
    border-color: var(--cyan);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 255, 0.08));
}

.skill-card:hover::before {
    left: 100%;
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.skill-name {
    font-family: 'Rajdhani', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cyan);
}

.skill-rarity {
    font-family: 'Rajdhani', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    margin-top: 10px;
}

.rarity-common {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.rarity-uncommon {
    background: rgba(34, 177, 76, 0.2);
    color: #22b14c;
}

.rarity-rare {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyan);
}

.rarity-epic {
    background: rgba(123, 47, 255, 0.2);
    color: var(--purple);
}

.rarity-legendary {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

/* ============= PROJECTS SECTION ============= */
.quest-card {
    border: 2px solid var(--cyan);
    background: rgba(21, 21, 32, 0.6);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slide-up 0.6s ease-out forwards;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quest-card:nth-child(1) { animation-delay: 0.1s; }
.quest-card:nth-child(2) { animation-delay: 0.2s; }
.quest-card:nth-child(3) { animation-delay: 0.3s; }

.quest-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--cyan), var(--purple), var(--cyan));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background: linear-gradient(135deg, var(--cyan), var(--purple), var(--cyan));
    }
    50% {
        background: linear-gradient(135deg, var(--purple), var(--cyan), var(--purple));
    }
}

.quest-card:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.quest-card:hover::before {
    opacity: 0.2;
}

.quest-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.quest-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--cyan);
    text-transform: uppercase;
}

.quest-rank {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    padding: 8px 15px;
    border-radius: 3px;
    font-family: 'Rajdhani', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.quest-description {
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.quest-tech {
    font-family: 'Rajdhani', monospace;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.quest-tech strong {
    color: var(--purple);
}

.quest-role {
    font-family: 'Rajdhani', monospace;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.quest-role strong {
    color: var(--cyan);
}

.quest-status {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(34, 177, 76, 0.15);
    color: #22b14c;
    border-radius: 3px;
    font-family: 'Rajdhani', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 15px 0;
}

.quest-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid var(--cyan);
    background: transparent;
    color: var(--cyan);
    text-decoration: none;
    font-family: 'Rajdhani', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.quest-cta:hover {
    background: var(--cyan);
    color: var(--dark-bg);
}

.locked-quests {
    text-align: center;
    padding: 60px 40px;
    border: 2px dashed var(--border-color);
    background: rgba(26, 26, 37, 0.3);
    margin-top: 40px;
}

.locked-quests-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.locked-quests-title {
    font-family: 'Rajdhani', monospace;
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.locked-quests-text {
    color: var(--text-secondary);
    margin-top: 10px;
    font-style: italic;
}

/* ============= SHIV PROJECT SECTION ============= */
.shiv-section {
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid var(--purple);
    padding: 80px 40px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin: 100px 0;
    box-shadow: 0 0 50px rgba(123, 47, 255, 0.2), inset 0 0 50px rgba(123, 47, 255, 0.05);
}

.shiv-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 47, 255, 0.1) 0%, transparent 70%);
    animation: rotate-glow 20s linear infinite;
    z-index: 0;
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.shiv-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.shiv-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 20px;
}

.shiv-description {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--cyan);
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    width: 45%;
    animation: pulse-bar 2s ease-in-out infinite;
}

@keyframes pulse-bar {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.phase-card {
    border: 2px solid var(--cyan);
    background: rgba(21, 21, 32, 0.7);
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: phase-in 0.6s ease-out forwards;
}

@keyframes phase-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.phase-card:nth-child(1) { animation-delay: 0.1s; }
.phase-card:nth-child(2) { animation-delay: 0.2s; }
.phase-card:nth-child(3) { animation-delay: 0.3s; }
.phase-card:nth-child(4) { animation-delay: 0.4s; }
.phase-card:nth-child(5) { animation-delay: 0.5s; }
.phase-card:nth-child(6) { animation-delay: 0.6s; }

.phase-card.active {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 30px rgba(255, 215, 0, 0.05);
}

.phase-card.completed {
    border-color: #22b14c;
    background: rgba(34, 177, 76, 0.05);
}

.phase-number {
    font-family: 'Rajdhani', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
}

.phase-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    margin: 10px 0;
    text-transform: uppercase;
}

.phase-card.active .phase-title {
    color: var(--gold);
}

.phase-timeline {
    font-family: 'Rajdhani', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ============= EXPERIENCE SECTION ============= */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    padding: 30px;
    border-left: 3px solid var(--cyan);
    margin-left: 20px;
    margin-bottom: 30px;
    background: rgba(26, 26, 37, 0.5);
    position: relative;
    opacity: 0;
    animation: timeline-fade 0.6s ease-out forwards;
}

@keyframes timeline-fade {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 15px var(--cyan);
}

.timeline-role {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
}

.timeline-type {
    font-family: 'Rajdhani', monospace;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.timeline-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-family: 'Rajdhani', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 3px;
}

/* ============= CERTIFICATIONS SECTION ============= */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cert-card {
    border: 2px dashed var(--border-color);
    background: rgba(26, 26, 37, 0.3);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: cert-appear 0.6s ease-out forwards;
}

@keyframes cert-appear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.2s; }

.cert-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cert-title {
    font-family: 'Rajdhani', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cert-status {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

.cert-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--cyan);
    text-decoration: none;
    font-family: 'Rajdhani', monospace;
    border-bottom: 1px solid var(--cyan);
    transition: all 0.3s ease;
}

.cert-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ============= LEARNING SECTION ============= */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.learning-card {
    background: rgba(26, 26, 37, 0.6);
    border-left: 4px solid var(--purple);
    padding: 30px;
    position: relative;
    opacity: 0;
    animation: learning-slide 0.6s ease-out forwards;
}

@keyframes learning-slide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.learning-card:nth-child(1) { animation-delay: 0.1s; }
.learning-card:nth-child(2) { animation-delay: 0.2s; }
.learning-card:nth-child(3) { animation-delay: 0.3s; }
.learning-card:nth-child(4) { animation-delay: 0.4s; }

.learning-title {
    font-family: 'Rajdhani', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.learning-progress {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    overflow: hidden;
}

.learning-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    width: 65%;
}

.learning-status {
    display: flex;
    justify-content: space-between;
    font-family: 'Rajdhani', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============= CONTACT SECTION ============= */
.contact {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.contact-container {
    max-width: 700px;
    text-align: center;
}

.availability-banner {
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid var(--purple);
    padding: 25px 30px;
    margin-bottom: 50px;
    font-family: 'Rajdhani', monospace;
    font-weight: 700;
    line-height: 1.8;
}

.availability-text {
    color: var(--purple);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.availability-text.gold {
    color: var(--gold);
}

.contact-info {
    font-family: 'Rajdhani', monospace;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contact-item strong {
    color: var(--cyan);
    text-transform: uppercase;
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--cyan);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyan);
    z-index: -1;
    transition: left 0.3s ease;
}

.social-icon:hover {
    color: var(--dark-bg);
    box-shadow: 0 0 25px var(--cyan);
}

.social-icon:hover::before {
    left: 0;
}

/* ============= FOOTER ============= */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'Rajdhani', monospace;
}

footer-text {
    display: block;
    margin-bottom: 15px;
}

footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer-link:hover {
    color: var(--cyan);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

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

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .shiv-section {
        padding: 40px 20px;
    }

    .shiv-title {
        font-size: 1.8rem;
    }
}

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

    .hero-cta {
        gap: 10px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .status-window {
        max-width: 100%;
    }

    .quest-header {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        font-size: 0.95rem;
    }
}
