/* --- HACKER THEME VARIABLES --- */
:root {
    --bg-color: #050505;       /* Deep Black Background */
    --card-bg: #0c0c0c;        /* Slightly Lighter Black for Cards */
    --text-color: #e0e0e0;     /* Light Grey Text */
    --neon-green: #00ff41;     /* The Matrix/Terminal Green */
    --font-main: 'Fira Code', monospace; /* Coding Font */
}

/* Base Styles */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
}

/* --- NAVBAR STYLING --- */
.navbar {
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid #1a1a1a;
    padding: 15px 0;
}

.navbar-brand {
    color: var(--neon-green) !important;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.nav-links a {
    color: #888;
    margin-left: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* --- SECTIONS & SPACING --- */
section {
    padding: 80px 0;
}

/* Ye class upar "GAP" dene ke liye hai */
.gap-section {
    padding-top: 180px; 
    min-height: 90vh;
}

/* --- TYPOGRAPHY & COMMANDS --- */
.cmd-heading {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
}

.prompt {
    color: var(--neon-green);
    margin-right: 15px;
    font-weight: bold;
}

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

/* Blinking Cursor Animation */
.cursor {
    display: inline-block;
    width: 12px;
    height: 24px;
    background-color: var(--neon-green);
    vertical-align: middle;
    margin-left: 5px;
    animation: blink 1s infinite;
}

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

.terminal-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
}

/* --- SKILL BADGES --- */
.skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-badge {
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 6px 18px;
    font-size: 0.9rem;
    border-radius: 4px;
    background: rgba(0, 255, 65, 0.05);
    transition: 0.3s;
    cursor: default;
}

.skill-badge:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green);
    font-weight: bold;
}

/* --- NINJA ICON (CODER VIBE) --- */
.ninja-icon {
    font-size: 12rem;
    color: var(--neon-green);
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.4);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- PROJECT CARDS --- */
.terminal-card {
    background: var(--card-bg);
    border: 1px solid #1f1f1f;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.terminal-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.15);
}

.card-header-bar {
    background: rgba(0, 255, 65, 0.1);
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.file-name {
    color: var(--neon-green);
    font-size: 0.85rem;
    font-weight: 600;
}

.card-body-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.icon-box {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tags {
    margin-bottom: 25px;
}

.tag {
    background: #111;
    border: 1px solid #333;
    color: #888;
    padding: 4px 10px;
    font-size: 0.75rem;
    margin-right: 5px;
    border-radius: 3px;
}

.btn-green {
    display: inline-block;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 8px 20px;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    text-align: center;
    width: fit-content;
}

.btn-green.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-green:hover {
    background: var(--neon-green);
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

/* --- CONTACT SECTION --- */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-green-outline {
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    background: transparent;
}

.btn-green-outline:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: scale(1.05);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .gap-section {
        padding-top: 120px; 
        text-align: center;
    }
    
    .ninja-icon {
        font-size: 8rem;
        margin-top: 40px;
    }
    
    .skills-wrapper {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
}
