/* Footer Section */
/* Footer Section */
.footer {
    position: fixed;
    right: 32px;
    bottom: 24px;
    background: rgba(24, 28, 32, 0.98);
    color: #fff;
    border-radius: 16px 16px 0 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    padding: 18px 32px 14px 32px;
    z-index: 100;
    min-width: 220px;
    text-align: right;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-label {
    font-size: 1.05rem;
    color: #b0b8c1;
    margin-bottom: 2px;
}

.footer-icons-row {
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: center;
    justify-content: flex-end;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: transform 0.2s, color 0.2s;
    color: #fff;
    border-radius: 50%;
    padding: 2px;
}

.footer-icon svg {
    fill: none;
    stroke: #fff;
    width: 28px;
    height: 28px;
}

.footer-icon:hover svg {
    stroke: #00e6e6;
    transform: scale(1.15);
}

@media (max-width: 600px) {
    .footer {
        right: 8px;
        bottom: 8px;
        padding: 12px 16px 10px 16px;
        min-width: 140px;
    }

    .footer-label {
        font-size: 0.95rem;
    }

    .footer-icons-row {
        gap: 10px;
    }
}

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

:root {
    --cyber-green: #00ff41;
    --cyber-cyan: #00ffff;
    --cyber-purple: #8b5cf6;
    --cyber-dark: #0a0a0a;
    --cyber-gray: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #999999;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cyber-dark) 0%, #000000 50%, var(--cyber-gray) 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

::-webkit-scrollbar-track {
    background: var(--cyber-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--cyber-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-cyan);
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(45deg, var(--cyber-green), var(--cyber-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.white-text {
    color: var(--text-white);
}

.cyan-text {
    color: var(--cyber-cyan);
}

.glow {
    text-shadow: 0 0 10px currentColor;
    animation: glow 2s ease-in-out infinite;
}

/* Animations */
@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 5px var(--cyber-cyan), 0 0 10px var(--cyber-cyan), 0 0 15px var(--cyber-cyan);
    }

    50% {
        text-shadow: 0 0 10px var(--cyber-cyan), 0 0 20px var(--cyber-cyan), 0 0 30px var(--cyber-cyan);
    }
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scanline-scroll {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}

@keyframes grid-move {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

@keyframes digital-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Background Layers using Pseudos */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform-origin: center top;
    animation: grid-move 20s linear infinite;
    z-index: -2;
    pointer-events: none;
    left: -50%;
    /* Center the larger grid */
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 50%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.05));
    background-size: 100% 4px;
    animation: scanline-scroll 0.5s linear infinite;
    z-index: 9999;
    /* Overlay on top of everything */
    pointer-events: none;
    opacity: 0.15;
}

/* Ensure content stays readable and interactive */
#main-content,
.navbar {
    position: relative;
    z-index: 1;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {

    body::before,
    body::after {
        animation: none;
        background-attachment: fixed;
    }
}


/* Page Management */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 2rem;
    height: 2rem;
    color: var(--cyber-green);
}

.brand-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-white);
}

.brand-ethical {
    color: var(--cyber-green);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyber-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyber-green);
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cyber-green);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.matrix-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    z-index: 1;
}

.matrix-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--cyber-green);
    line-height: 1;
    white-space: nowrap;
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 1000px;
}

.terminal-window {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terminal-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cyber-green);
}

.terminal-prompt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    color: var(--cyber-green);
}

.terminal-body {
    font-family: 'JetBrains Mono', monospace;
    text-align: left;
}

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

.output {
    font-size: 1.5rem;
    /* Entire line slightly bigger */
}

#typing-text {
    font-size: 2rem;
    /* Name even bigger */
    font-weight: bold;
    color: var(--text-white);
}

.prompt-symbol {
    color: var(--cyber-cyan);
}

.cursor {
    color: var(--cyber-green);
    animation: blink 1s infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
}

.btn-primary {
    background: var(--cyber-green);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.btn-primary:hover {
    background: var(--cyber-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 65, 0.3);
}

.btn-secondary {
    border: 1px solid var(--cyber-green);
    color: var(--cyber-green);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--cyber-green);
    color: #000;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 2rem;
    height: 2rem;
    color: var(--cyber-green);
}

/* Section Styles */
section {
    padding: 5rem 0;
    animation: fadeIn 0.6s ease-out;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.terminal-about {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cyber-green);
    margin-bottom: 1.5rem;
}

.terminal-content {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.terminal-content p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.prompt {
    color: var(--cyber-cyan);
    margin-right: 0.5rem;
}

.competencies-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.competency-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.2);
}

.competency-item:hover {
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateX(5px);
}

.competency-icon {
    width: 2rem;
    height: 2rem;
    color: var(--cyber-green);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.competency-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.competency-item p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* Certificates Section */
.certificates-section {
    padding: 5rem 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.certificate-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.certificate-card.full-width {
    grid-column: 1 / -1;
}

.hobby-list,
.leadership-list {
    margin-top: 1rem;
}

.hobby-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.hobby-item:hover {
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateX(5px);
}

.hobby-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--cyber-cyan);
    flex-shrink: 0;
}

.hobby-item span {
    color: var(--text-gray);
    font-family: 'JetBrains Mono', monospace;
}

.leadership-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.leadership-item:hover {
    border-color: rgba(0, 255, 65, 0.5);
}

.leadership-item h4 {
    color: var(--cyber-green);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.leadership-item p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.date {
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.skills-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.skill-category h4 {
    color: var(--cyber-green);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(0, 255, 65, 0.1);
    color: var(--cyber-green);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--cyber-green);
}

/* Experience Section */
.experience-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.experience-card.full-width {
    grid-column: 1 / -1;
}

.timeline {
    margin-top: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-date {
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: bold;
    min-width: 120px;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: var(--cyber-green);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.company {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.timeline-content ul {
    color: var(--text-gray);
    padding-left: 1.5rem;
}

.timeline-content li {
    margin-bottom: 0.25rem;
}

.education-list {
    margin-top: 1rem;
}

.education-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.edu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.edu-header h4 {
    color: var(--cyber-green);
    font-size: 1.125rem;
}

.institution {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.details {
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.coursework h5 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.coursework ul {
    color: var(--text-gray);
    padding-left: 1.5rem;
}

.coursework li {
    margin-bottom: 0.25rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.cert-item:hover {
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

.cert-badge {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--cyber-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--cyber-green);
}

.cert-details h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cert-details p {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: 'JetBrains Mono', monospace;
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.project-card:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateY(-5px);
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-icon {
    width: 2rem;
    height: 2rem;
    color: var(--cyber-green);
    flex-shrink: 0;
}

.project-type {
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    display: block;
}

.project-title {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

.project-card:hover .project-title {
    color: var(--cyber-green);
}

.project-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech h4 {
    color: var(--cyber-green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 65, 0.1);
    color: var(--cyber-green);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    padding-top: 1rem;
}

.project-impact h4 {
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.project-impact p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.project-link {
    padding: 0.5rem;
    border: 1px solid rgba(0, 255, 65, 0.3);
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-link:hover {
    border-color: var(--cyber-green);
    background: rgba(0, 255, 65, 0.1);
}

.project-link svg {
    width: 1rem;
    height: 1rem;
    color: var(--cyber-green);
}

.projects-note {
    text-align: center;
    margin-top: 3rem;
}

.projects-note p {
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.note-highlight {
    color: var(--cyber-green);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-terminal {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.contact-details {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--cyber-cyan);
    flex-shrink: 0;
}

.label {
    color: var(--cyber-green);
}

.services-list {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.services-list h3 {
    color: var(--cyber-green);
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.services-list ul {
    list-style: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.services-list li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.services-list li span {
    color: var(--cyber-cyan);
    margin-right: 0.5rem;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--cyber-cyan);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-icon {
    width: 1rem;
    height: 1rem;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: var(--text-white);
    font-family: 'JetBrains Mono', monospace;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyber-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--cyber-green);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.submit-btn:hover {
    background: var(--cyber-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 65, 0.3);
}

.submit-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-footer {
    text-align: center;
    margin-top: 3rem;
}

.contact-footer p {
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lock-icon {
    width: 1rem;
    height: 1rem;
    color: var(--cyber-green);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--cyber-green);
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0, 255, 65, 0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .project-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .contact-footer p {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-date {
        min-width: auto;
    }

    .edu-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .skills-categories {
        grid-template-columns: 1fr;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        transform: translateY(-200px);
    }

    .toast.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 0 0.5rem;
    }

    .terminal-window {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .certificate-card {
        padding: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        padding: 1rem;
    }

    .contact-terminal,
    .services-list,
    .contact-form-container {
        padding: 1rem;
    }
}

.bug-bounty {
    margin-top: 3rem;
}