/* ============================================
   TERMINAL PORTFOLIO - CSS STYLES
   Theme: Dark Modern with Cyan/Magenta
   ============================================ */

/* CSS Variables for easy theming */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(0, 255, 255, 0.05);
    
    --color-cyan: #00ffff;
    --color-magenta: #ff00ff;
    --color-green: #00ff88;
    --color-yellow: #ffff00;
    --color-red: #ff5f56;
    --color-orange: #ffbd2e;
    
    --text-primary: #e0e0e0;
    --text-secondary: #888888;
    --text-muted: #555555;
    
    --border-color: rgba(0, 255, 255, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5);
    
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: var(--font-mono);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    padding: 5px 0;
}

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

.nav-links a::before {
    content: './';
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta));
    transition: width var(--transition-normal);
}

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

/* ============================================
   TERMINAL CONTAINER
   ============================================ */

.terminal-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
}

.terminal {
    width: 100%;
    max-width: 1000px;
    height: calc(100vh - 120px);
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.2),
        0 0 80px rgba(255, 0, 255, 0.1),
        inset 0 0 40px rgba(0, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
}

/* Scan line effect */
.terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    animation: scan 4s linear infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Terminal Header */
.terminal-header {
    background: var(--bg-tertiary);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.terminal-button.close { background: var(--color-red); }
.terminal-button.minimize { background: var(--color-orange); }
.terminal-button.maximize { background: var(--color-green); }

.terminal-button:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.terminal-title {
    color: var(--color-cyan);
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Terminal Body */
.terminal-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--color-cyan);
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: var(--color-magenta);
}

/* ============================================
   WELCOME SECTION
   ============================================ */

.welcome-section {
    margin-bottom: 30px;
}

.ascii-art {
    color: var(--color-cyan);
    font-size: 0.55rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(255, 0, 255, 0.3); }
}

.welcome-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.welcome-text p {
    margin-bottom: 8px;
}

.highlight-cyan {
    color: var(--color-cyan);
    font-weight: 500;
}

.highlight-magenta {
    color: var(--color-magenta);
    font-weight: 500;
}

.highlight-green {
    color: var(--color-green);
    font-weight: 500;
}

.command-hint {
    background: var(--bg-card);
    color: var(--color-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* ============================================
   OUTPUT AREA
   ============================================ */

#output-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.output-section {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Command Echo */
.command-echo {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.command-echo .prompt {
    color: var(--color-cyan);
}

.command-echo .cmd {
    color: var(--color-green);
}

/* Output Block */
.output-block {
    padding-left: 15px;
    border-left: 2px solid var(--border-color);
    animation: slideIn 0.4s ease-out;
}

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

/* ============================================
   CONTENT CARDS
   ============================================ */

/* About Section */
.about-output h2 {
    color: var(--color-cyan);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-sans);
}

.about-output p {
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Skills Section */
.skills-output {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.5s ease-out both;
}

.skill-category:nth-child(1) { animation-delay: 0.1s; }
.skill-category:nth-child(2) { animation-delay: 0.2s; }
.skill-category:nth-child(3) { animation-delay: 0.3s; }
.skill-category:nth-child(4) { animation-delay: 0.4s; }
.skill-category:nth-child(5) { animation-delay: 0.5s; }

.skill-category:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

.skill-category h3 {
    color: var(--color-cyan);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.skill-category h3::before {
    content: '>';
    color: var(--color-magenta);
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    color: var(--text-secondary);
    padding: 3px 0;
    font-size: 0.9rem;
}

.skill-category li::before {
    content: '• ';
    color: var(--color-cyan);
}

/* Experience Section */
.experience-output {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--color-cyan);
    border-radius: 8px;
    padding: 20px;
    transition: all var(--transition-normal);
    animation: fadeInUp 0.5s ease-out both;
}

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

.job-card:hover {
    border-left-color: var(--color-magenta);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
}

.job-card h3 {
    color: var(--color-cyan);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-sans);
}

.job-card .company {
    color: var(--color-magenta);
    font-weight: 600;
    margin-bottom: 5px;
}

.job-card .duration {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.job-card .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.job-card .highlights {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-card .highlight-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--color-cyan);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

/* Projects Section */
.projects-output {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out both;
}

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

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

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

.project-card:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.project-card h3 {
    color: var(--color-cyan);
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.project-card h3::before {
    content: '> ';
    color: var(--color-magenta);
    font-family: var(--font-mono);
}

.project-card .description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.project-card .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-card .tech-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--color-cyan);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.project-card .tech-tag:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: var(--color-magenta);
    color: var(--color-magenta);
}

/* Contact Section */
.contact-output {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all var(--transition-normal);
    text-decoration: none;
    animation: fadeInUp 0.4s ease-out both;
}

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

.contact-item:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-item .icon {
    color: var(--color-cyan);
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-item .label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-item .value {
    color: var(--color-cyan);
    font-size: 0.95rem;
}

/* Education Section */
.education-output {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.education-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    animation: fadeInUp 0.4s ease-out both;
}

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

.education-card h3 {
    color: var(--color-cyan);
    font-size: 1rem;
    margin-bottom: 5px;
}

.education-card .institution {
    color: var(--color-magenta);
    font-size: 0.9rem;
}

.education-card .year {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Help Output */
.help-output {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-command {
    display: flex;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.3s ease-out both;
}

.help-command:nth-child(1) { animation-delay: 0.05s; }
.help-command:nth-child(2) { animation-delay: 0.1s; }
.help-command:nth-child(3) { animation-delay: 0.15s; }
.help-command:nth-child(4) { animation-delay: 0.2s; }
.help-command:nth-child(5) { animation-delay: 0.25s; }
.help-command:nth-child(6) { animation-delay: 0.3s; }
.help-command:nth-child(7) { animation-delay: 0.35s; }
.help-command:nth-child(8) { animation-delay: 0.4s; }
.help-command:nth-child(9) { animation-delay: 0.45s; }
.help-command:nth-child(10) { animation-delay: 0.5s; }

.help-command .cmd {
    color: var(--color-green);
    min-width: 120px;
    font-weight: 500;
}

.help-command .desc {
    color: var(--text-secondary);
}

/* Error Output */
.error-output {
    color: var(--color-red);
    padding: 10px;
    background: rgba(255, 95, 86, 0.1);
    border-left: 2px solid var(--color-red);
    border-radius: 4px;
}

/* Success Output */
.success-output {
    color: var(--color-green);
}

/* ============================================
   INPUT LINE
   ============================================ */

.input-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    flex-shrink: 0;
}

.input-line .prompt {
    color: var(--color-cyan);
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    min-width: 0;
}

.input-mirror {
    color: var(--color-green);
    font-family: var(--font-mono);
    font-size: 1rem;
    white-space: pre;
    pointer-events: none;
}

#command-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: transparent;
    font-family: var(--font-mono);
    font-size: 1rem;
    caret-color: transparent;
}

.cursor {
    width: 10px;
    height: 20px;
    background: var(--color-cyan);
    animation: blink 1s infinite;
    box-shadow: 0 0 10px var(--color-cyan);
    flex-shrink: 0;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-links {
        gap: 12px;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a::before {
        display: none;
    }
    
    .terminal-container {
        padding: 70px 10px 10px;
    }
    
    .terminal {
        border-radius: 8px;
        height: calc(100vh - 90px);
    }
    
    .terminal-body {
        padding: 15px;
    }
    
    .terminal-header {
        padding: 10px 15px;
    }
    
    .terminal-title {
        font-size: 0.75rem;
    }
    
    .ascii-art {
        font-size: 0.35rem;
        overflow-x: auto;
    }
    
    .skills-output,
    .projects-output {
        grid-template-columns: 1fr;
    }
    
    .help-command {
        flex-direction: column;
        gap: 5px;
    }
    
    .help-command .cmd {
        min-width: auto;
    }
    
    .job-card,
    .project-card,
    .skill-category {
        padding: 15px;
    }
    
    .contact-item:hover {
        transform: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 480px) {
    html, body {
        overflow: auto;
    }
    
    header {
        position: sticky;
        padding: 8px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 8px;
        font-size: 0.7rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-links li {
        flex: 0 1 auto;
    }
    
    .nav-links a {
        padding: 4px 2px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .terminal-container {
        padding: 60px 5px 5px;
        height: auto;
        min-height: 100vh;
    }
    
    .terminal {
        height: calc(100vh - 70px);
        min-height: 500px;
        border-radius: 6px;
        border-width: 1px;
    }
    
    .terminal-header {
        padding: 8px 12px;
    }
    
    .terminal-buttons {
        gap: 6px;
    }
    
    .terminal-button {
        width: 10px;
        height: 10px;
    }
    
    .terminal-title {
        font-size: 0.65rem;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .terminal-body {
        padding: 12px;
    }
    
    /* Show simplified ASCII art on mobile */
    .ascii-art {
        font-size: 0.65rem;
        line-height: 1.2;
        overflow-x: auto;
        white-space: pre;
    }
    
    .welcome-text {
        font-size: 0.85rem;
    }
    
    .welcome-text p {
        margin-bottom: 6px;
    }
    
    /* Input Line Mobile */
    .input-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 15px;
    }
    
    .input-line .prompt {
        font-size: 0.75rem;
        white-space: normal;
        word-break: break-all;
    }
    
    .input-wrapper {
        width: 100%;
    }
    
    #command-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .input-mirror {
        font-size: 16px;
    }
    
    .cursor {
        width: 8px;
        height: 18px;
    }
    
    /* Content Cards Mobile */
    .about-output h2 {
        font-size: 1.1rem;
    }
    
    .about-output p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .skill-category {
        padding: 12px;
    }
    
    .skill-category h3 {
        font-size: 0.85rem;
    }
    
    .skill-category li {
        font-size: 0.8rem;
    }
    
    .job-card {
        padding: 15px;
    }
    
    .job-card h3 {
        font-size: 1rem;
    }
    
    .job-card .company {
        font-size: 0.9rem;
    }
    
    .job-card .duration {
        font-size: 0.75rem;
    }
    
    .job-card .description {
        font-size: 0.8rem;
    }
    
    .job-card .highlight-tag {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    
    .project-card {
        padding: 15px;
    }
    
    .project-card h3 {
        font-size: 0.9rem;
    }
    
    .project-card .description {
        font-size: 0.8rem;
    }
    
    .project-card .tech-tag {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    
    .contact-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .contact-item .icon {
        font-size: 1rem;
        width: 25px;
    }
    
    .contact-item .label {
        font-size: 0.75rem;
    }
    
    .contact-item .value {
        font-size: 0.85rem;
        word-break: break-all;
    }
    
    .education-card {
        padding: 12px 15px;
    }
    
    .education-card h3 {
        font-size: 0.9rem;
    }
    
    .education-card .institution,
    .education-card .year {
        font-size: 0.8rem;
    }
    
    /* Help Output Mobile */
    .help-command {
        flex-direction: column;
        gap: 3px;
        padding: 6px 0;
    }
    
    .help-command .cmd {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .help-command .desc {
        font-size: 0.8rem;
        padding-left: 15px;
    }
    
    /* Disable hover effects on touch */
    .skill-category:hover,
    .job-card:hover,
    .project-card:hover,
    .contact-item:hover {
        transform: none;
    }
    
    /* Command echo */
    .command-echo {
        font-size: 0.8rem;
        word-break: break-all;
    }
    
    .output-block {
        padding-left: 10px;
    }
}

/* ============================================
   RESPONSIVE - VERY SMALL SCREENS
   ============================================ */

@media (max-width: 360px) {
    .logo {
        font-size: 18px;
    }
    
    .nav-links {
        font-size: 0.65rem;
        gap: 6px;
    }
    
    .terminal-title {
        display: none;
    }
    
    .input-line .prompt {
        font-size: 0.7rem;
    }
    
    .welcome-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets */
    .nav-links a {
        padding: 8px 4px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .contact-item {
        min-height: 48px;
    }
    
    /* Disable hover-dependent animations */
    .skill-category:hover,
    .job-card:hover,
    .project-card:hover,
    .contact-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    .project-card::before {
        display: none;
    }
}
